SA-MP Forums Archive
Snow System - 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: Snow System (/showthread.php?tid=481821)



Snow System - PrinceOfPersia - 17.12.2013

Hello Guys
can any one make for me snow system please :3
I'm using ZCMD

I want snow fall when i use /startsnow
Thanks.


Re: Snow System - Wizza - 17.12.2013

pawn Код:
CMD:startsnow(playerid, params[])
{
    new Float:x, Float:y, Float:z;
    if(!IsPlayerConnected(playerid)) return SendClientMessage(playerid, -1, "You are not logged in!");
    GetPlayerPos(playerid, x, y, z);
    CreateObject(18864, x, y, z, 0.0, 0.0, 96.0);
    SendClientMessage(playerid, -1, "It's snowing now!");
    return 1;
}