[Error] C:\Simba\Includes\SRL\SRL\Misc\PaintSmart.simba(56 0:12): Unknown identifier 'TPAFromEllipse' at line 559
Compiling failed.
Anyone know how to help me?
[Error] C:\Simba\Includes\SRL\SRL\Misc\PaintSmart.simba(56 0:12): Unknown identifier 'TPAFromEllipse' at line 559
Compiling failed.
Anyone know how to help me?
Unknown identifier '' at line xx
There are various reasons why this are caused.
Firstly, it may be because you have an undeclared variable. By this I mean you want a word to represent a value and you use it, such as:
Simba Code:procedure Logs;
begin
Logs := 2;
end;
You need to tell the script what 'Logs' represnt, to do this you have to decalre it as a variables, so:
Simba Code:procedure Logs;
var
Logs: Integer; // declared here as an integer, which a whole number
begin
Logs := 2;
end;
http://villavu.com/forum/showthread.php?t=82793
Bored of playing rs, and bored of botting it, why am i here?
stuart is correct but in this particular case - you need to update your Simba.
Simply a GOD beast...
My Tutorials
There are currently 1 users browsing this thread. (0 members and 1 guests)