View Single Post
  #3  
Old 07-04-2009, 08:03 AM
cbk1994 cbk1994 is offline
the fake one
cbk1994's Avatar
Join Date: Mar 2003
Location: San Francisco
Posts: 10,718
cbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond repute
Send a message via AIM to cbk1994
An easier way to do what Jazz said about finding if they have the weapon would be

PHP Code:
if (("Weapon Name") != null) {
  
// code here

or even

PHP Code:
if (findWeapon("Weapon Name") != null) {
  
// code here

though the findWeapon is technically unneeded.
__________________
Reply With Quote