I have found a curious problem with Gscript2 on Rudora.
Gscript2 works clientside and serverside in weapons, and it works on the serverside in DB NPCs (I have not tried to use it on the clientside with DB NPCs yet).
But my main concern is level NPCs. If a Gscript2 NPC is in a level, then the serverside part of the script will run but the clientside part will not. Simple things like this will not run:
NPC Code:
//#CLIENTSIDE
function onPlayerChats() {
player.chat="Hello";
}
Any ideas?