Quote:
Originally Posted by Stowen
How would I go about getting a list of all the players weapons?
|
PHP Code:
for ( i: player.weapons ) {
if ( !i.name.starts( "-" ) ) {
temp.itemList.add( i.name );
}
}
Remove the "-" part if you want system NPCs to be included