SA-MP Forums Archive
how to do that the player had more than 3 weapons? - 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)
+---- Forum: Help Archive (https://sampforum.blast.hk/forumdisplay.php?fid=89)
+---- Thread: how to do that the player had more than 3 weapons? (/showthread.php?tid=130631)



how to do that the player had more than 3 weapons? - Make_UP - 27.02.2010

to spawn when there were more than three weapons?!


AddPlayerClass(165,-3108.2939,2769.8088,93.9624,184.3173,24,70,25,50,3 4,7,31,120,16,1);

warning 202: number of arguments does not match definition



Re: how to do that the player had more than 3 weapons? - Misiur - 27.02.2010

You can add after spawn by GivePlayerWeapon.


Re: how to do that the player had more than 3 weapons? - Make_UP - 27.02.2010

Quote:
Originally Posted by Misiur
You can add after spawn by GivePlayerWeapon.
writing code xd



Re: how to do that the player had more than 3 weapons? - [NL]Bank - 27.02.2010

Код:
public OnPlayerSpawn(playerid)
{
  GivePlayerWeapon(playerid, WEAPON_ID, AMMO);
  return 1;
}



Re: how to do that the player had more than 3 weapons? - Make_UP - 27.02.2010

Thanks