View Single Post
  #15  
Old 10-25-2001, 02:42 AM
Admins Admins is offline
Graal Administration
Join Date: Jan 2000
Location: Admins
Posts: 11,693
Admins has much to be proud ofAdmins has much to be proud ofAdmins has much to be proud ofAdmins has much to be proud ofAdmins has much to be proud ofAdmins has much to be proud of
Quote:
Originally posted by ownerofbabylon
they actually did that? it would be like:

if(weaponfired){
toweapon haha;
}
if(weaponfired){
toweapon hahah;
}
A more common 'error' is

NPC Code:

if (playerenters) toweapons Blabla;



That needs to be changed to

NPC Code:

if (playerenters && !isweapon) toweapons Blabla;

Reply With Quote