View Single Post
  #8  
Old 09-30-2005, 08:46 AM
Skyld Skyld is offline
Script-fu
Skyld's Avatar
Join Date: Jan 2002
Location: United Kingdom
Posts: 3,914
Skyld has much to be proud ofSkyld has much to be proud ofSkyld has much to be proud ofSkyld has much to be proud ofSkyld has much to be proud ofSkyld has much to be proud of
Send a message via AIM to Skyld
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!";
}

__________________
Skyld
Reply With Quote