OnClientScriptData: Difference between revisions

From Vice City Multiplayer
Jump to navigation Jump to search
Caution icon
This wiki is using an old backup from 2020
Some information may be old/missing
(Created page with "function onClientScriptData(player) Example: ::Python <- GUIButton(VectorScreen(400,200), VectorScreen(200, 22), Colour(75,75,75), "Python (6) Cost(6)", GUI_FLAG_BORDER |...")
 
(Replaced content with "function onClientScriptData(player) { }")
Line 1: Line 1:
function onClientScriptData(player)
function onClientScriptData(player)
Example: 
::Python <- GUIButton(VectorScreen(400,200), VectorScreen(200, 22), Colour(75,75,75), "Python (6) Cost(6)", GUI_FLAG_BORDER | GUI_FLAG_VISIBLE);
function GUI::ElementClick(element, mouseX, mouseY)
{
{
if (element == Python)
{
local Datos = Stream();
Datos.WriteString("python");
Server.SendData(Datos);
}
function onClientScriptData(player)
{
local string = Stream.ReadString();
if(string=="python")
{
player.GiveWeapon(18,1000);
MessagePlayer("You Have Now Python",player)
}
}
}

Revision as of 13:42, 14 March 2017

function onClientScriptData(player) { }