not sure what I'm doing wrong here..
sub expcounter (thename, theoutput, thewildcards)
dim expnew
dim expold
dim expnewtotal
expnew = thewildcards (1)
expold = World.GetVariable("groupexptotal")
expnewtotal = cint (expold) + cint (expnew)
World.SetVariable "groupexptotal", expnewtotal
end sub
I keep getting an error about ( Overflow. 'cint' ) ..can anyone set me right here please?
sub expcounter (thename, theoutput, thewildcards)
dim expnew
dim expold
dim expnewtotal
expnew = thewildcards (1)
expold = World.GetVariable("groupexptotal")
expnewtotal = cint (expold) + cint (expnew)
World.SetVariable "groupexptotal", expnewtotal
end sub
I keep getting an error about ( Overflow. 'cint' ) ..can anyone set me right here please?