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.
Old posts that have not been replied to for several years.
CoMMy
Halfop
Posts: 99 Joined: Thu Jul 24, 2003 1:03 am
Location: Cyprus
Post
by CoMMy » Sat Nov 20, 2004 9:31 am
Hi guys,
I have a script i wrote and i have a variable for example.
and in the prog i call that
Code: Select all
proc someprog {nick host handle chan text} {
global var1
putquick "KICK $chan TheGuy $var1" -next
return 1 }
This is an example i made from the real code. The outcome is that the person kicked is kicked with reason "won" ie. only the last word. Is there a way to fix this?
Thanks
(c) CoMMy (c)
Resistance is Futile!!
We Are The Borg!!
demond
Revered One
Posts: 3073 Joined: Sat Jun 12, 2004 9:58 am
Location: San Francisco, CA
Contact:
Post
by demond » Sat Nov 20, 2004 10:20 am
Code: Select all
putquick "KICK $chan TheGuy :$var1" -next