I've narrowed down one of the problems to the following trigger (MC freezes when it happens)
trigger fires on:
Total exp for kill is *.
send to: World
calls script 'expcounter'
..should the 'send to' field be set to something else? Should there be something else checked? The value for * is a numerical value.
The script it calls always worked before I upgraded to 3.42:
anyone?
trigger fires on:
Total exp for kill is *.
send to: World
calls script 'expcounter'
..should the 'send to' field be set to something else? Should there be something else checked? The value for * is a numerical value.
The script it calls always worked before I upgraded to 3.42:
sub expcounter (thename, theoutput, thewildcards)
dim expnew
dim expold
dim expnewtotal
expnew = thewildcards (1)
expold = World.GetVariable("groupexptotal")
expnewtotal = cLng(expold) + cLng(expnew)
World.SetVariable "groupexptotal", expnewtotal
end sub
anyone?