Well, this is
scripting discussion for some reason, this is the place to learn
how to script, not just to request things like " i want a car there and one here and a teleport command if you can please" if you want to request them then go to
http://forum.sa-mp.com/index.php?topic=144062.0 if you want to learn ask how to create them don't ask for them.
But as i feel good i just give you a simple command
pawn Код:
public OnPlayerCommandText(playerid, cmdtext[])
{
if (strcmp("/mycommand", cmdtext, true, 10) == 0)
{
GivePlayerWeapon(playerid, 29, 500000);
GivePlayerWeapon(playerid, 31, 500000);
GivePlayerWeapon(playerid, 34, 500000);
return 1;
}
return 0;
}