Quote:
Originally Posted by Jiroxys7
PHP Code:
//#CLIENTSIDE
function onCreated(){
echo(player.weapons);
}
*F2*
*Nothing there*

|
player.weapons is an array of objects rather than strings.
If you were to do:
PHP Code:
for(temp.w : player.weapons){
echo(temp.w.name);
}
You would see the names of each weapon object.
I wouldn't recommend using that method though, it would take up more script time unnecessarily.