Hey whats up guys???
Was just gonna ask if any of you know how to make certain areas anti-loot like wrong level 4 cause thats where my newbie dungeon is.
If any one could help me that would be great.
BTW love the site.
Moderators: Dezonus, Moderator


ontrigger=dclick
IF (<SRC.REGION.NAME>==NB)
IF ((<LINK.UID>==<SRC.UID>)||(<link.uid>==0)||(<src.plevel>>3))
RETURN 0
ENDIF
SRC.SYSMESSAGE You can not loot this corpse.
RETURN 1
ENDIF


Barkley wrote:Newbie Dungeon is the name of the region in this case so just rename the [Room Wrong Level 4] to [AREA Newbie Dungeon]
ONTRIGGER=DCLICK
IF ((STRCMP("<SRC.REGION.NAME>","Newbie Dungeon")=0)
IF (<LINK.UID>==<SRC.UID> || (<link.uid>==0 )) || (<SRC.GM>==1)))
RETURN 0
ELSE
SRC.SYSMESSAGE You can not loot this corpse.
RETURN 1
This works ;P
**Edit Not to sure on 48e**



ONTRIGGER=TARGON_ITEM
IF !((STRCMP("<SRC.REGION.NAME>","Newbie Dungeon")=0)
//if you want to stop this in an area called Newbie Dungeon
RETURN 1
ELSE
RETURN 0 //allow normal usage of whatever

ONTRIGGER=TARGON_ITEM
IF !((STRCMP("<SRC.REGION.NAME>","Newbie Dungeon")=0)
//if you want to stop this in an area called Newbie Dungeon
RETURN 1
ELSE
RETURN 0 //allow normal usage of whatever
Return to TUS48e/Sphere51a help
Users browsing this forum: No registered users and 1 guest