The following warnings occurred:
Warning [2] Use of undefined constant SAPI_NAME - assumed 'SAPI_NAME' (this will throw an Error in a future version of PHP) - Line: 3388 - File: inc/functions.php PHP 7.4.33-nmm7 (Linux)
File Line Function
/inc/functions.php 3388 errorHandler->error
/showthread.php 116 build_archive_link
Warning [2] Use of undefined constant IN_ARCHIVE - assumed 'IN_ARCHIVE' (this will throw an Error in a future version of PHP) - Line: 3331 - File: inc/functions.php PHP 7.4.33-nmm7 (Linux)
File Line Function
/inc/functions.php 3331 errorHandler->error
/inc/functions.php 3324 build_forum_breadcrumb
/showthread.php 195 build_forum_breadcrumb
Warning [2] Use of undefined constant IN_ARCHIVE - assumed 'IN_ARCHIVE' (this will throw an Error in a future version of PHP) - Line: 3331 - File: inc/functions.php PHP 7.4.33-nmm7 (Linux)
File Line Function
/inc/functions.php 3331 errorHandler->error
/showthread.php 195 build_forum_breadcrumb






Post Reply 
 
Thread Rating:
  • 0 Votes - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Gargish gumps and animations
Author Message
RanXerox
Master
**

Posts: 550
Likes Given: 1
Likes Received: 12 in 9 posts
Joined: Dec 2010
Reputation: 19



Post: #2
RE: Gargish gumps and animations
The animations you are looking for don't exist... You could create them and patch them in, or, prevent gargoyles from wearing things that have no animation. You do this by the use of various triggers. For example:

...set TAG.GargoyleOnly=1 on an item that you want only gargoyles to wear, or a TAG.NotGargoyle=1 for items Gargoyles can't wear...

...then add these sorts of trigger to it (I have a single massive EVENT that all equipable items have on them)...

Code:
ON=@ClientToolTip
IF (<TAG0.GargoyleOnly>)
   SRC.ADDCLILOC 1111709//"Gargoyles Only"
ENDIF

ON=@EquipTest
IF (<SRC.ISPLAYER>) && (<TAG0.GargoyleOnly>)
   IF !(<SRC.f_isgarg>)
      SRC.SYSMESSAGELOC color_text,1111707//"Only gargoyles can wear this."
      RETURN 1
   ENDIF
ENDIF
IF (<SRC.ISPLAYER>) && (<TAG0.NotGargoyle>)
   IF (<SRC.f_isgarg>)
      SRC.SYSMESSAGELOC color_text,1111708//"Gargoyles can't wear this."
      RETURN 1
   ENDIF
ENDIF

Handle the missing male/female animations the same way with isFemale and isMale functions.
03-03-2013 05:42 PM
Find all posts by this user Like Post Quote this message in a reply
Post Reply 


Messages In This Thread
Gargish gumps and animations - Auriga - 03-03-2013, 04:29 PM
RE: Gargish gumps and animations - RanXerox - 03-03-2013 05:42 PM

Forum Jump:


User(s) browsing this thread: 1 Guest(s)