Isn't there a script called Bandit's Aid or something like that in the first scripts section? Does it support praying?
Here is a sample prayer potting procedure. Prayer pots at slots 1-27 and one click tele in slot 28. I didn't really test it, but should work.
Simba Code:
procedure PotPray;
var i: integer;
s: string;
begin
while LoggedIn do
begin
if getMMLevels('pray', s) < 200 then
begin
//Assume prayer pots in slots 1-27
for i:=1 to 27 do
begin
if ExistsItem(i) then
begin
MouseItem(i, mouse_left);
wait(200);
end;
end;
//Assume one click tele on last slot
if (InvCount = 1) then
begin
MouseItem(28, mouse_left);
break;
end;
end;
end;
end;