SA-MP Forums Archive
Whay this doesnt create light? - Printable Version

+- SA-MP Forums Archive (https://sampforum.blast.hk)
+-- Forum: SA-MP Scripting and Plugins (https://sampforum.blast.hk/forumdisplay.php?fid=8)
+--- Forum: Scripting Help (https://sampforum.blast.hk/forumdisplay.php?fid=12)
+--- Thread: Whay this doesnt create light? (/showthread.php?tid=450044)



Whay this doesnt create light? - Micius - 11.07.2013

Whay this doesnt create light? (Im getting message"Object created")

pawn Код:
CMD:test(playerid,params[])
{
    new Float:PosX,Float:PosY,Float:PosZ;
    GetPlayerPos(playerid,PosX,PosY,PosZ);
    CreateDynamicObject(19294,PosX,PosY,PosZ+1,0.0,0.0,0.0);
    SendClientMessage(playerid,0xFFFFFFFF,"Object created");
   
    return 1;
}