11.10.2011, 23:55
What's wrong with this?
Thanks.
pawn Код:
new RandomWeapons[][] =
{
{38},
{36},
{16},
{39},
{44},
{28},
{26},
{24},
{8}
};
pawn Код:
CMD:randomweapon(playerid, params[])
{
new Weapons = random(sizeof(RandomWeapons));
GivePlayerWeapon(playerid, RandomWeapons[Weapons], 5000);
return 1;
}