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.

Need Help With Var Display.

Old posts that have not been replied to for several years.
Locked
User avatar
CoMMy
Halfop
Posts: 99
Joined: Thu Jul 24, 2003 1:03 am
Location: Cyprus

Need Help With Var Display.

Post by CoMMy »

Hi guys,

I have a script i wrote and i have a variable for example.

Code: Select all

set var1 "Congrats you won"
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!!
User avatar
demond
Revered One
Posts: 3073
Joined: Sat Jun 12, 2004 9:58 am
Location: San Francisco, CA
Contact:

Post by demond »

Code: Select all

putquick "KICK $chan TheGuy :$var1" -next 
Locked