Chaos Project

RPG Maker => RPG Maker Scripts => Script Troubleshooting => Topic started by: lpjz2 on May 17, 2012, 03:58:26 pm

Title: Blizz-ABS Respawn + RMX-OS = Imcompattable?
Post by: lpjz2 on May 17, 2012, 03:58:26 pm
Hey guys, i ran across a problem! so iv got my events set up like this, Event 1 is just named \e[1] and spawns a ghost when the game is started,
the second event (event 2) is named \respawn[1] \time[1] - this is so my ghost respawns when it is killed (after 1 second). Everything works fine HOWEVER lets say 2 players are in the game...

(http://oi48.tinypic.com/2ugow8g.jpg)

Player 1 kills the ghost, the ghost respawns in the event 2 spot after 1 second, he can see the ghost and attack it again, however player 2 who did not kill the ghost could see the ghost before however now it has respawned he cannot see it! He can still hit the invisible ghost and even take damage from it. Player 2 can see the ghost is he disconnects and reconnects.

Any help? Need more Screenshots, info or a video?
Title: Re: Blizz-ABS Respawn + RMX-OS = Imcompattable?
Post by: Blizzard on May 17, 2012, 05:24:32 pm
People kept reporting invisible enemies attacking, but nobody ever mentioned that those were respawned enemies. -_- You probably just pinpointed the cause of one of the nastiest bugs to track down in RMX-OS. I'll see if I can find some time over the next few days to fix that.
Title: Re: Blizz-ABS Respawn + RMX-OS = Imcompattable?
Post by: lpjz2 on May 17, 2012, 05:54:19 pm
Quote from: Blizzard on May 17, 2012, 05:24:32 pm
People kept reporting invisible enemies attacking, but nobody ever mentioned that those were respawned enemies. -_- You probably just pinpointed the cause of one of the nastiest bugs to track down in RMX-OS. I'll see if I can find some time over the next few days to fix that.


Yay, Glad to help :)

Also i know this sounds f*ucking stupid but how do you even use the chatbox system? I cant seem to write in it. (sorry if im being stupid -.-)

++

I may have found another bug :

$game_temp.chat_active = false

doesn't seem to work? (again sorry if its just me being a complete noob to RMX-OS and Blizz-ABS)

ps. i think your support and dedication to your scripts is amazing, you are amazing! Keep up the good work and ill keep reporting bugs :)
Title: Re: Blizz-ABS Respawn + RMX-OS = Imcompattable?
Post by: Blizzard on May 18, 2012, 02:08:12 am
That's a bug in RMXP's default scripts. Either get the Script Interpreter fix or use this:

$game_temp.chat_active =
false


As for the chatbox, press F5/F6.
Title: Re: Blizz-ABS Respawn + RMX-OS = Imcompattable?
Post by: lpjz2 on May 18, 2012, 12:34:46 pm
Quote from: Blizzard on May 18, 2012, 02:08:12 am
That's a bug in RMXP's default scripts. Either get the Script Interpreter fix or use this:

$game_temp.chat_active =
false


As for the chatbox, press F5/F6.


$game_temp.chat_active =
false


does nothing, even with the interface fix script...

(http://i47.tinypic.com/2uh61if.jpg)

(http://i46.tinypic.com/300xsth.jpg)

Title: Re: Blizz-ABS Respawn + RMX-OS = Imcompattable?
Post by: Blizzard on May 18, 2012, 01:00:48 pm
It seems there is a mistake in the documentation. It should be $game_temp.chat_enabled.

I have already prepared the code for the next RMX-OS where I changed it to chat_visible since "active" and "enabled" is kind of the same thing and hence confusing.
Title: Re: Blizz-ABS Respawn + RMX-OS = Imcompattable?
Post by: lpjz2 on May 19, 2012, 12:50:06 pm
(http://i48.tinypic.com/t6xroo.jpg) - Works AFTER the "test" Text has been skipped

(http://i50.tinypic.com/1b3a8.jpg) - Doesn't work at all  :???:

+  sorry if im being a pain  :facepalm:
Title: Re: Blizz-ABS Respawn + RMX-OS = Imcompattable?
Post by: G_G on May 19, 2012, 12:52:05 pm
Maybe put a "Wait: 1 frames" and see. Otherwise, you might need the Interpreter Fix.

http://forum.chaos-project.com/index.php?topic=938.0

EDIT: Nevermind, just noticed you already had it. >_>
Title: Re: Blizz-ABS Respawn + RMX-OS = Imcompattable?
Post by: lpjz2 on May 19, 2012, 01:11:50 pm
Quote from: game_guy on May 19, 2012, 12:52:05 pm
Maybe put a "Wait: 1 frames" and see. Otherwise, you might need the Interpreter Fix.

http://forum.chaos-project.com/index.php?topic=938.0

EDIT: Nevermind, just noticed you already had it. >_>


iv had to make a separate event and all that after the chat box is disabled. must be a bug where the script runs after the event has finished.

(i even have the Interpreter Fix)
Title: Re: Blizz-ABS Respawn + RMX-OS = Imcompattable?
Post by: Blizzard on May 19, 2012, 01:37:33 pm
Yeah, try "Wait: 1 frames". When you change that value, the map scene has to update at least once for it to be applied. IDK if winkio is going to change that or not.