Right now i'm trying to solve the anti-leech from the 2007 powerminer made by rij95. it has alot more anti-leech than the other scripts, but that's why I want to solve it
after fixing some anti-leech I came across this error:
The line is:Simba Code:[Error] C:\Simba\Scripts\MinerV3.00[].simba(449:17): Semicolon (';') expected at line 448
Compiling failed.
and procedure is:Simba Code:case GemCombo.ITEMINDEX of
Simba Code:Procedure SetGem;
var
GemCombo: Integer;
begin
case GemCombo.ITEMINDEX of
0:
Begin
GemKeep := 'Sapphire'
End;
1:
Begin
GemKeep := 'Emerald'
End;
2:
Begin
GemKeep := 'Ruby'
End;
3:
Begin
GemKeep := 'Diamond'
End;
4:
Begin
GemKeep := 'None'
End;
End;
End;
I placed the var line by myself, because it said 'Unknown Identifier' for GemCombo.
I really don't know what to fix here. it says that I need to put a ;, but where? I don't see a place where I can put that so I think there is something wrong with the condition.
Can someone give me some hints?
And I already read the http://villavu.com/forum/showthread.php?t=58935 guide
But with the information I get there about cases, isn't enough.
Thanks



Reply With Quote





