I have a script i wrote and i have a variable for example.
Code: Select all
set var1 "Congrats you won"Code: Select all
proc someprog {nick host handle chan text} {
global var1
putquick "KICK $chan TheGuy $var1" -next
return 1 }Thanks
Code: Select all
set var1 "Congrats you won"Code: Select all
proc someprog {nick host handle chan text} {
global var1
putquick "KICK $chan TheGuy $var1" -next
return 1 }Code: Select all
putquick "KICK $chan TheGuy :$var1" -next