View Single Post
  #6  
Old 06-30-2001, 03:18 PM
grim_squeaker_x grim_squeaker_x is offline
Retired Oldbie
grim_squeaker_x's Avatar
Join Date: Mar 2001
Posts: 3,084
grim_squeaker_x will become famous soon enough
Quote:
Originally posted by entravial
*AlphaFlame*

Err... kinda...

// NPC made by Captain USA
if (playerchats && strequals(#a,Captain-USA) && strequals(#c,HideNPC)) {hide;}
if (playerchats && strequals(#a,Captain-USA) && strequals(#c,UnhideNPC)) {show;}


Didn't need the first line or the last two :P
I prefer:
NPC Code:
if (playerchats&&strequals(#a,Captain-USA)) {
if (strequals(#c,HideNPC)) hide;
if (strequals(#c,UnHideNPC)) show;
}

__________________

Reply With Quote