Eowyn Apprentice
Joined: 19 Jan 2001 Posts: 117 Location: Norway
|
Posted: Sat Jun 07, 2003 10:10 pm
Words ending with = and %1!=null |
I've got a bit of an odd problem.
I have the following two aliases:
#alias makeportal {#if (@currentplayer=MyCharacter AND %1!=null) {emote gets ready to gate.};#if (@currentplayer=MyCharacter AND %1=null) {emote makes a record of this spot for future portals.};channel 'portal' %1}
#alias porthome {makeportal VmdodSA2IDAyYjI3MzI3NWExYzczNGQgMjY=}
#alias portsomewhereelse {makeportal U2VncnUgOCBmNDkyNTM1ZGRkZTc4NWM1IDYx}
In other words, the makeportal can be used to memorize the spot you're standing in - or teleport to a previously memorized spot.
Thing is - the emotes don't trigger if the memorized teleportcode ends with a =.
Porthome will just send
channel 'portal' VmdodSA2IDAyYjI3MzI3NWExYzczNGQgMjY=
whereas portsomewhereelse will send:
emote gets ready to gate.
channel 'portal' U2VncnUgOCBmNDkyNTM1ZGRkZTc4NWM1IDYx
Why is words ending with = not counted as null? What can I do to correct this? (Putting the emotecode in all the port-aliases is not an option.)
Thx :)
-E |
|