Hey guys, this is going to be some incredibly simple, stupid mistake. I can just feel it.
When I run someone else's script, they work fine. When I run this incredibly simple script made just to test these features, they will not work.
Testing these out so I can continue with practising DTM walking.
I know it's something incredibly stupid I'm doing, but any help please?
My code:
Simba Code:
program TestWalk;
{$i SRL/SRL.Simba}
{$i P07Include.Simba}
Procedure P07_DeclarePlayer;
Begin
P07_PlayerName:='';
P07_PlayerPass:='';
end;
begin
P07_DeclarePlayer;
SetupP07Include;
ActivateClient;
Wait(2000);
If (Not P07_LoggedIn) Then
begin
P07_LogInPlayer;
end;
P07_MakeCameraAngleHigh;
P07_MakeCompassNorth;
end.
Cheers.
EDIT: I've tried making a function containing them as well, they still do not work when the function is called.
EDIT2: And yes, I set my browser as the target client.