I need this native but im not sure how it works, could some1 explain it a bit better to me
Functionwiki - get_user_weapons
Example:
PHP Code:
new Weapons[32]
new numWeapons, i, weapon
get_user_weapons(id, Weapons, numWeapons)
for (i=0; i<numWeapons; i++)
{
weapon = Weapons[i]
}
What will this return? A number of how many weapons that player has? or the names of all the weapons that this player has in the form of CSW_ ?
Do i need the make an enum list of all the CSW_ weapons it could return?