Help me [Rep++]
#1

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
Reply
#2

Every RP have its .. download any rp press CTRL + F and search for "/wi"
Reply
#3

just using scm, format
Reply
#4

Just copy /me command, and modify it, just simple modif
Reply
#5

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!
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)