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.

Variable questions

Old posts that have not been replied to for several years.
d
daltonc
Voice
Posts: 29
Joined: Wed Apr 27, 2005 8:50 pm

Post by daltonc »

Alright , fixed it! But another problem : /

Code: Select all

proc command:main {nick uhost hand chan arg} {
 global chan_trigger
 set command "[string range $arg 1 end]"
 global command($chan)

 putlog "${command}($chan)"

 if {[info exist command($chan)]} {
    putnotc $nick "$command($chan)"
  }
}
its giving me

Its not giving me an error or anything its just not outputing any data.. anyone know why?

I type @commands, so it should search for a variable called $commands($chan) and output the data the that variable has. Its not doing that.
User avatar
De Kus
Revered One
Posts: 1361
Joined: Sun Dec 15, 2002 11:41 am
Location: Germany

Post by De Kus »

you should make the whole array global, not just 1 element.

global command

should be fine (remember my example "global chan_trigger global chan_greeting ")?!

btw. you can assemble array elemets together like:

command($chan:trigger)
command($chan:greeting)
...

this way you would only need 1 array for everything in the script ^-^.
De Kus
StarZ|De_Kus, De_Kus or DeKus on IRC
Copyright © 2005-2009 by De Kus - published under The MIT License
Love hurts, love strengthens...
Locked