Show posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.

Messages - Aegisrox

41
Wizered I already uploaded the file in sendspace, and sent you in a PM, Pm if you have problems

Thanks

Chevalsky
42
Thanks Wizered! I sent you a PM with the server folder

Thanks again for your help  :haha:

Regards

Chevalsky
43
Hi again Wizered! I just tried that you told me.

I tried to change the "r" to "w" but it was no error, and it was no text file creation.  :???:

Maybe the extension is no being loaded, very strange because the rest of all extension work perfectly.

This is my server picture if you want to see it.



Any other idea where it can be the problem?

Thanks to be helpful with me :D

Again sorry to bother you, you are awesome!  :^_^':

Thanks in advance

Regards
44
Hello Wizered! Thanks again for your answer :D

I tried that you told me, but still doesnt work.

I check and the name of the file and is MOTD, and i tried to change the FILE_NAME a place into the extension folder but the result is the same.

Also a friend of mine tried with another game and server version, and dont work for him too.  :???:

Could you please post your personal configuration of the extension, the script, and the txt files to check and match is we missing something?

For this, sorry to bother you  :shy:

Thank you in advance

Regards

Chevalsky
45
Thanks Blizzard! Sorry for that :D

Regards
46
Hey Wizered! Thanks again for your answer!

I tried to check all, but still doesnt work :(

I will post my configuration

This is the script
Spoiler: ShowHide
#------------------------------------------------------------------------------#
#                  RMX-OS Daily Messages                                       #
#                     by Wizered67                                             #
#                          V 1.00                                              #
# All errors should be reported at www.chaos-project.com.                      #
#------------------------------------------------------------------------------#
class Scene_Loading < Scene_Network
 alias load_game_motd load_game
 def load_game
   $network.send('GDM')
  load_game_motd
   end
end




This is the extension
Spoiler: ShowHide
#------------------------------------------------------------------------------
#                  RMX-OS Daily Messages                                            
#                     by Wizered67                                                          
#                          V 1.00                                                              
# All errors should be reported at www.chaos-project.com.                  
#------------------------------------------------------------------------------
module RMXOS
 
 def self.load_current_extension
   return MOTD
 end
 
end

#======================================================================
# module MOTD
#======================================================================

module MOTD
 
 VERSION = 1.00
 RMXOS_VERSION = 1.15
 SERVER_THREAD = false
 FILE_NAME = './MOTD.txt'
 
 
 def self.initialize
 end
 
 
 def self.main
   while RMXOS.server.running
     self.server_update
     sleep(0.1)
   end
 end
 
 def self.server_update
 end
 
 def self.client_update(client)
   case client.message
 when /\AGDM\Z/
  #set the message to empty
  message = []
   #get message from file
   file = File.open(FILE_NAME , 'r')
   #add each line to the message array.  
   file.each_line {|line| message.push(line)
   }
     #close file
     file.close
  # prepare final message
   final_message = ''
  for i in 0...message.size
  final_message = final_message  + message[i]  
    end
    client.send("CHT#{RMXOS::Data::ColorInfo}\t0\tMOTD: #{final_message}")
    return true
    end
    return false
end
 
end


And this is the text file place in the root folder
Spoiler: ShowHide
'Bienvenido a Pokémon Argentina. Pulse F7 y Escriba /help para ver los comandos disponibles.'


The three have the same name. Any idea witch it can be the problem?


Thanks in advance

Regards

PS: Thanks for the logging in script, it works perfectly!
47
RMXP Script Database / Re: [XP] RMX-OS Login Messages
February 14, 2013, 11:43:37 am
Thanks Wizered! It works perfectly! You are awesome :D

Thanks again!

Regards

Aegis
48
Thanks again Wizered! :D

I tried the global message extension, but i have a problem, i think it doesnt detect the text file

1) Where i place the text file, in the extension folder, or in the root folder of server? I tried in both :(

2) The text file need a special format like "" or another format?

Thanks again for your help! :D

I hope the logged in tutorial! Thanks in advance!

My best regards

Chevalsky
49
Thanks for your help Wizered! Glat to meet you!

I tried your solution and works perfectly! Thank so much! :D

I would like to ask you another question

I was looking your game creations that looks very interesting, and i would like to ask

1) How do you do the global welcome message from server?

2) How do you do the message "X has logged in"

Again thanks for your help!

PS: If you need help with beta testing count with me ;)
50
Hello! My name is Ezequiel! I am a new member of the forum! Glat to meet you all!

Sorry to bother you, but i have a problem with the Online list script of RMX-OS.

I am writing because in the post http://forum.chaos-project.com/index.php/topic,7962.0.html
I have the same problem that have all users of the EC0NNABORTED when i type the /online.

I am using the original version of the script, and i have the last version of RMX-os too.

In the server, the extension is fully loaded, so there is no problem there.

I Checked out all, but everything seens fine.
*the script
*the database wipet out
*the rb extension

The connections seens to work too.

This is the error i am getting in the server side:



I hope you can help me, i really want this extension :(

Anyways thanks in advance to all members of the forum :D

My best regards ;)

Ezequiel