Help me [Rep++] - 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: Help me [Rep++] (
/showthread.php?tid=371961)
Help me [Rep++] -
paulll0len - 25.08.2012
Hey, i need zcmd script /car window
If player puts /car window
then says % s rolls the window down
and if player writes again /car window
then says % s rolls the windows up
Re: Help me [Rep++] -
Stereotype - 25.08.2012
Every RP have its .. download any rp press CTRL + F and search for "/wi"
Re: Help me [Rep++] -
Devilxz97 - 25.08.2012
just using scm, format
Re: Help me [Rep++] -
IceMeteor - 25.08.2012
Just copy /me command, and modify it, just simple modif
Re: Help me [Rep++] -
ddnbb - 25.08.2012
pawn Код:
new windows[MAX_VEHICLES];
pawn Код:
CMD:windows(playerid, params[])
{
new vehicleID = GetPlayerVehicleID(playerid);
if(windows[vehicleID] == 0)
{
//rolls windows down
windows[vehicleID] = 1;
}
else
{
//rolls windows up
windows[vehicleID] = 0;
}
return 1;
}
Hope this helps!