This is the new home of the egghelp.org community forum.
All data has been migrated (including user logins/passwords) to a new phpBB version.


For more information, see this announcement post. Click the X in the top right-corner of this box to dismiss this message.

Problem with [ , ( - how to remove

Old posts that have not been replied to for several years.
Locked
p
phreako
Voice
Posts: 8
Joined: Wed Jul 20, 2005 7:16 pm

Problem with [ , ( - how to remove

Post by phreako »

thanks a lot
Last edited by phreako on Mon Aug 22, 2005 9:38 am, edited 1 time in total.
User avatar
Sir_Fz
Revered One
Posts: 3794
Joined: Sun Apr 27, 2003 3:10 pm
Location: Lebanon
Contact:

Post by Sir_Fz »

You're probably facing that problem with using timers, use
  • instead of "". Example:

    Code: Select all

    utimer 2 [list do:this $nick]
    this way if nick has characters such as [ or ], it won't cause problems, while using "do:this $nick" will.

    PS: Read this post from the FAQ forum.
p
phreako
Voice
Posts: 8
Joined: Wed Jul 20, 2005 7:16 pm

Post by phreako »

yeap ok thanks
Last edited by phreako on Mon Aug 22, 2005 9:38 am, edited 1 time in total.
User avatar
Sir_Fz
Revered One
Posts: 3794
Joined: Sun Apr 27, 2003 3:10 pm
Location: Lebanon
Contact:

Post by Sir_Fz »

Code: Select all

set string [string map {[ "" ] "" ( "" ) ""} $string]
Locked