Ugh, I don't know how else to do this.
I want the weapon icon to be displayed dependant on the type of weapon equipped, so..
PHP Code:
if (clientr.weapon = 0001;){
clientr.weapon_img = weaponicon.png;
}
showimg index, clientr.weapon_img,,,;
I would assume this would basically do the same as:
PHP Code:
showimg index, weaponicon.png,,,;
but it's not doing that at all, I'm confused...