23.08.2014, 11:01
Hello im scripting a new dm system "never made"
I have to know how to make when a player types the cmd /gundm the player spawns with a gun .
I have me how to replace that weapon with another weapon .
I have added new maps too with teleport .
*------------------------------------------------*
THANKS VERY MUCH .
I have to know how to make when a player types the cmd /gundm the player spawns with a gun .
I have me how to replace that weapon with another weapon .
I have added new maps too with teleport .
*------------------------------------------------*
Quote:
pawn Код:
|
Quote:
i dont really understand what you mean but anyway, i made a cmd when you type /gundm it will give you m4 with 500 bullets.
Код:
CMD:gundm(playerid, params[]) { GivePlayerWeapon(playerid, 31, 500); // this will give you m4 with 500 bullets return 1; } |
Quote:
pawn Код:
|
Quote:
i dont really understand what you mean but anyway, i made a cmd when you type /gundm it will give you m4 with 500 bullets.
Код:
CMD:gundm(playerid, params[]) { GivePlayerWeapon(playerid, 31, 500); // this will give you m4 with 500 bullets return 1; } |
Quote:
You want the player to get a gun at the next spawn? Do something like this
pawn Код:
|