I want to use the characters that are in SRL called, CharsNPC. I am using FindText to find this font, but when i call it, it says, CharsNPC is an unknown identifier... how can I use this font for my script?
btw, what does allow API calls do?
PHP Code:function FindNpcChatText(txt: String): Boolean;
By: Kernel Klink or Stupid3000, font by Masquerader
Description: Get last chat message.
function ClickNpcChatText(txt: String): Boolean;
By: Kernel Klink or Stupid3000, font by Masquerader
Description:
Get last chat message.
The best way to contact me is by email, which you can find on my website: http://wizzup.org
I also get email notifications of private messages, though.
Simba (on Twitter | Group on Villavu | Website | Stable/Unstable releases
Documentation | Source | Simba Bug Tracker on Github and Villavu )
My (Blog | Website)
This?PHP Code:function FindNpcChatText2(var Tx,Ty:Integer; xt: String): Boolean;
var
s:integer;
begin
s := CreateBitmapMaskFromText(txt, npcchars);
result:=FindBitmapMaskTolerance(s, Fx, Fy, 9, 348, 523, 471, 50, 10);
FreeBitmap(s);
end;
function ClickNpcChatText2(var Tx,Ty:Integer; txt: String): Boolean;
var
s:integer;
begin
s := CreateBitmapMaskFromText(txt, npcchars);
if FindBitmapMaskTolerance(s, tx, ty, 9, 348, 523, 471, 50, 10) then
begin
Mouse(tx + 5, ty + 8, 0, 0, True);
Result:=True;
end;
FreeBitmap(s);
end;
The best way to contact me is by email, which you can find on my website: http://wizzup.org
I also get email notifications of private messages, though.
Simba (on Twitter | Group on Villavu | Website | Stable/Unstable releases
Documentation | Source | Simba Bug Tracker on Github and Villavu )
My (Blog | Website)
Allow API calls lets SCAR call windows functions. (I think)
There are currently 1 users browsing this thread. (0 members and 1 guests)