ok so everytime i try to run a script aerolib always changes the world to a f2p world and i dont want it to do that. anyone know how to make it stop? thanks!![]()
ok so everytime i try to run a script aerolib always changes the world to a f2p world and i dont want it to do that. anyone know how to make it stop? thanks!![]()
Pause the script, switch worlds, play the script?
Or is there a setup constant you can change (Members := true; or something)?
GitLab projects | Simba 1.4 | Find me on IRC or Discord | ScapeRune scripts | Come play bot ScapeRune!
<BenLand100> we're just in the transitional phase where society reclassifies guns as Badâ„¢ before everyone gets laser pistols
You need to declare your player (including the member status) before calling "initAL()". Here's an example of how to do it correctly:
Simba Code:program new;
{$i AeroLib/AeroLib.Simba}
procedure declarePlayer();
begin
Me.Name := 'someguy@anemail.com';
Me.Pass := 'hardtoguesspassword';
Me.Pin := '9999';
Me.Nick := 'Gower';
Me.LampSkill := SKILL_FARMING;
Me.Member := True; // Set to true if the account is a member, False if the account is F2P
Me.Active := True;
end;
begin
declarePlayer(); // Called first
initAL(); // Setup AeroLib
loginPlayer(false);
end.
Current projects:
[ AeroGuardians (GotR minigame), Motherlode Miner, Blast furnace ]
"I won't fall in your gravity. Open your eyes,
you're the Earth and I'm the sky..."
Current projects:
[ AeroGuardians (GotR minigame), Motherlode Miner, Blast furnace ]
"I won't fall in your gravity. Open your eyes,
you're the Earth and I'm the sky..."
There are currently 1 users browsing this thread. (0 members and 1 guests)