[RPE Scripting] HexToInt function ?

06/05/2009 09:46 Vince93#1
Hi,
I'm working in a RPE script to leveling my homunculus.
My script do two things:
- Autofeed when hunger == 24.
- AutoHeal when HP < MaxHP/2.

The problem is that i don't find anywhere if there is a HexToInt function in RPE scripting.

Is there a similar command ?
Thanks.

[Edit]
I find a function:
Code:
Function HexToInt (Value:string) : Integer;
begin
	result := StrToInt('$'+Value);
end;
Problem solved.