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 - firelad97

1
RMXP Script Database / Re: [XP] RMX-OS
November 17, 2012, 11:15:12 am
Oh man, thank you.... I should read the manual. Oh so you like role-playing? :3 *opens the manual and reading*

EDIT: More problems when I add more addition scripts... When I login, RMX-OX is giving me errors:

Spoiler: ShowHide
wrong number of arguments(1 for 0)
Blizz-ABS PT2:3864:in `refresh'
Blizz-ABS PT2:3864:in `refresh'
Blizz-ABS PT2:3862:in `each'
Blizz-ABS PT2:3862:in `refresh'
Blizz-ABS PT3:2759:in `refresh_caterpillar'
tons pt1:2834:in `refresh'
Blizz-ABS PT2:2219:in `init_caterpillar'
Blizz-ABS PT2:876:in `setup_starting_members'
(RMX-OS) Script:6106:in `load_game'
(RMX-OS) Script:6090:in `update'
(RMX-OS) Script:5336:in `main'
(RMX-OS) Script:5333:in `loop'
(RMX-OS) Script:5338:in `main'
-<:::RMX-OS Main:::>-:46


This time, it's Blizz-ABS Part 2 script error...
2
RMXP Script Database / Re: [XP] RMX-OS
November 16, 2012, 03:20:41 pm
i have another problem... Again. I can't chat!!! I pressed F5, then nothing happens. Chat window got closed, that's all.
3
RMXP Script Database / Re: [XP] RMX-OS
November 16, 2012, 12:32:02 pm
Quote from: Blizzard on November 16, 2012, 12:02:51 pm
Hm... Try this instead.

buffer[0] != nil ? buffer[0] = @previous_chunk + buffer[0] : buffer[0] = [@previous_chunk]



This works. Thanks, but...

I have server running, and I cannot get in login screen. It said "Server did not respond" and I have putted IP and Port in right place (in server config and script).

EDIT:
Nevermind, I replaced IP "localhost" to "127.0.0.1" and this works.

Also, while in login screen, I putted ID and then I tried to click password field box, and it won't let me. No errors.

ANOTHER EDIT:
Horraaaaay!! I did everything! This rocks!
4
RMXP Script Database / Re: [XP] RMX-OS
November 16, 2012, 10:46:11 am
Quote from: Blizzard on November 16, 2012, 10:19:31 am
Change the affected line:

buffer[0] = @previous_chunk + buffer[0]


to this:

buffer != nil ? buffer[0] = @previous_chunk + buffer[0] : buffer[0] = [@previous_chunk]


This is just a quick fix. Generally that bug shouldn't be possible because it would mean that the client has received an empty message. The client can't receive an empty message because an empty message would mean that no message was received at all and then this code would never be executed in the first place.


Fixed. An another error occurred.

Spoiler: ShowHide
Script '(RMX-OS) Script' line 835: TypeError occurred.

cannot convert nil into String
(RMX-OS) Script:835:in `+'
(RMX-OS) Script:835:in `listen'
(RMX-OS) Script:5633:in `waiting_for_server'
(RMX-OS) Script:5458:in `waiting?'
(RMX-OS) Script:5585:in `update'
(RMX-OS) Script:5336:in `main'
(RMX-OS) Script:5333:in `loop'
(RMX-OS) Script:5338:in `main'
-<:::RMX-OS Main:::>-:46


:facepalm:
5
RMXP Script Database / Re: [XP] RMX-OS
November 16, 2012, 08:53:49 am
Quote from: Blizzard on November 16, 2012, 05:36:44 am
Quote from: firelad97 on November 15, 2012, 09:09:04 pm
Hello! I installed RMX-OS last night, and I installed everything (MySQL, MySQL Database, and Server config) correct. I use IP "localhost" for testing, not ready to release. I didn't run the server. I want to test the client first, if I find the errors in the script. However, there is no errors. It look like fine. I used Blizz-ABS to use for my server, it's working perfectly. Then I am ready to run the server. I got the errors while try to run the server. But the window closed quickly after I got errors, but I thought I saw it said "RMX-OS_ Platform (NameError)"? The rest of errors I can't read because it got closed quickly. I tried to run the server too many times, still getting the same errors. Is there a way to fix this?


Are you using the RMX-OS GUI application? I don't think it's up to date. I have added some more stuff to cfg.ini recently and Ryex hasn't updated the GUI app as far as I remember.

You are simply missing the RMXOS_Platform variable in your cfg.ini file I think. Download the most recent RMX-OS and simply copy it from its cfg.ini into yours.

Quote from: firelad97 on November 15, 2012, 09:28:05 pm
Quote from: gameus on November 15, 2012, 09:20:49 pm
Haha, cool. Also I forgot to mention something. Make sure logs are enabled, if you run into errors, try and post those logs here. It'll help us understand your problem more.


Installed Blizz-ABS controller script, still working perfectly. Server is still giving me errors in ruby file. No error logs. However, when I'm testing Blizz-ABS script in Title Menu only, it's working, but I saw "Online" which it is supposed to not. It's strange... I tried to login then I ended up getting errors because it's supposed to not be online, lol.... Well, still no logs. I already enabled them all.


Make sure that you have:

1. added the plugin script into the client (it goes below Blizz-ABS).
2. created a Ruby file in the extensions folder and put the server extension code there.
3. added the filename into the list of extensions in cfg.ini.

Here's an example how my file looks like when I test Blizz-ABS on RMX-OS:

NAME = 'RMX-OS Server'
HOST = '127.0.0.1'
PORT = 54269
RMXOS_VERSION = 1.21
RMXOS_PLATFORM = 'Win32'

LOG_MESSAGES = true
LOG_ERRORS = true
LOG_ACTIONS = true

DEBUG_MODE = true

MAXIMUM_CONNECTIONS = 50
LOGIN_TIMEOUT = 30
AUTO_RESTART = true
RESTART_TIME = 5
USE_IP_BANNING = true
PREVENT_ZOMBIE_CLIENTS = true
RUBY_PROMPT = true
OPTIMIZE_DATABASE_ON_STARTUP = true
DATABASE_CONNECTION_TIMEOUT = 60

SQL_HOSTNAME = '127.0.0.1'
SQL_USERNAME = 'root'
SQL_PASSWORD = 'root'
SQL_DATABASE = 'rmxosdb'

INBOX_SIZE = 10

EXTENSIONS = [
'Blizz-ABS'
]



EDIT:
Nevermind, I've figured out the errors. Also I deleted RMX-OS GUI to not messed up again. Thank you for your help!

ANOTHER EDIT:
Server is up. Client is fine. Going into the login screen gives me the errors. Here they are:
Spoiler: ShowHide

Fri Nov 16 09:17:49 Eastern Standard Time 2012:
cannot convert nil into String
(RMX-OS) Script:835:in `+'
(RMX-OS) Script:835:in `listen'
(RMX-OS) Script:5633:in `waiting_for_server'
(RMX-OS) Script:5458:in `waiting?'
(RMX-OS) Script:5585:in `update'
(RMX-OS) Script:5336:in `main'
(RMX-OS) Script:5333:in `loop'
(RMX-OS) Script:5338:in `main'
-<:::RMX-OS Main:::>-:46


How to fix this...?
6
RMXP Script Database / Re: [XP] RMX-OS
November 15, 2012, 09:43:27 pm
Quote from: gameus on November 15, 2012, 09:36:48 pm
Alright then, I'm at a loss. We'll just have to wait for Blizzard to come on and hopefully help.

Also, your signature breaks the forum rules.
QuoteKeep images in your signatures within 800x200 px and 200 kB. The pictures in your signature may altogether be no more than 200 kB. Every signature not matching this criteria is a subject of the moderator team to remove and leave this rule as message in your signature. For reference, maximum avatar size is 140x200 px.


You can keep the picture, just put it into [spoiler][/spoiler] tags and you'll be good to go.


Okay, I will wait for him to come.

And I've fixed signature. Thanks for telling me that. I'm pretty new to Chaos Project forums, and I didn't read forums rules. I will do it.
7
RMXP Script Database / Re: [XP] RMX-OS
November 15, 2012, 09:28:05 pm
Quote from: gameus on November 15, 2012, 09:20:49 pm
Haha, cool. Also I forgot to mention something. Make sure logs are enabled, if you run into errors, try and post those logs here. It'll help us understand your problem more.


Installed Blizz-ABS controller script, still working perfectly. Server is still giving me errors in ruby file. No error logs. However, when I'm testing Blizz-ABS script in Title Menu only, it's working, but I saw "Online" which it is supposed to not. It's strange... I tried to login then I ended up getting errors because it's supposed to not be online, lol.... Well, still no logs. I already enabled them all.
8
RMXP Script Database / Re: [XP] RMX-OS
November 15, 2012, 09:19:28 pm
Quote from: gameus on November 15, 2012, 09:17:26 pm
A) Make sure logs are enabled in your server config.
B) On top of using Blizz-ABS in your game, you have to make sure you have the Blizz-ABS Controller installed as well. You also need to make sure you have the server extension for that script installed into your server.

If you still run into problems, remove Blizz-ABS and try running the server and client without any additional scripts.


Okay! I will do that! BTW, I like Final Fantasy XIII too! :3
9
RMXP Script Database / Re: [XP] RMX-OS
November 15, 2012, 09:09:04 pm
Hello! I installed RMX-OS last night, and I installed everything (MySQL, MySQL Database, and Server config) correct. I use IP "localhost" for testing, not ready to release. I didn't run the server. I want to test the client first, if I find the errors in the script. However, there is no errors. It look like fine. I used Blizz-ABS to use for my server, it's working perfectly. Then I am ready to run the server. I got the errors while try to run the server. But the window closed quickly after I got errors, but I thought I saw it said "RMX-OS_ Platform (NameError)"? The rest of errors I can't read because it got closed quickly. I tried to run the server too many times, still getting the same errors. Is there a way to fix this?