Quote:
|
Originally Posted by Googi
So how do I send a message from the serverside to the clientside for the clientside to execute some clientside commands?
|
NPC Code:
function onCreated()
{
triggeraction(0, 0, "clientside", "weaponname", "lol");
}
//#CLIENTSIDE
function onActionclientside()
{
player.chat = "THIS IS CLIENTSIDE!";
}