Results 1 to 7 of 7

Thread: 07 RS SImba

  1. #1
    Join Date
    Mar 2013
    Posts
    9
    Mentioned
    0 Post(s)
    Quoted
    1 Post(s)

    Default 07 RS SImba

    Hey guys, I'm new to the community and i've been trying to download install simba, so far i've got simba and smart working however it loads up EOC runescape. I folowed a guide on YouTube and he told me to come here.

    My issue is the script is all in red. I have no idea about scripting and no expierence with it. Mite be a easy fix , thanks guys.


    This is the script.

    Program testP07;

    {$I SRL/SRL.Simba}
    {$I P07Include.Simba)

    //LOGIN INFO STUFF
    Procedure P07_DeclarePlayer;
    Begin
    P07_PlayerName:-'username';
    P07_PlayerPass:-'password';
    End;

    Begin

    P07_DeclarePlayer;
    SetupP07Include;
    ActivateClient;
    Wait(2000);
    If (Not P07_LoggedIn) Then
    P07_LogInPlayer;
    P07_MakeCameraAngleHigh;
    P07_MakeCompassNorth;

    Writeln(P07_GetUpText);

    If P07_BankScreen Then
    WriteLn('Bank is Open');
    If P07_InvFull Then
    WriteLn('Inventory is Full');

    End.

  2. #2
    Join Date
    Mar 2007
    Posts
    5,125
    Mentioned
    275 Post(s)
    Quoted
    901 Post(s)

    Default

    Simba Code:
    {$I P07Include.Simba)

    You have a ) when it should be }

    Forum account issues? Please send me a PM

  3. #3
    Join Date
    Mar 2013
    Posts
    9
    Mentioned
    0 Post(s)
    Quoted
    1 Post(s)

    Default

    Thanks Justin, didn't notice the obvious.
    Although now I get this error.

    [Error] (10:16): Assignment expected at line 9
    Compiling failed.

    Any ideas? Thanks

  4. #4
    Join Date
    Nov 2012
    Posts
    141
    Mentioned
    0 Post(s)
    Quoted
    43 Post(s)

    Default

    Code:
    :-
    doesn't assign a value to a variable, however,
    Code:
    :=
    does.

  5. #5
    Join Date
    Mar 2013
    Posts
    9
    Mentioned
    0 Post(s)
    Quoted
    1 Post(s)

    Default

    Thanks Neo, i'm not recieving a error message anymore however it doesn't seem to be doing what its supposed too. (not typing in username, password) which I believe its supposed too. This is what I get..

    Successfully executed.
    Compiled successfully in 952 ms.
    Checking P07Include VersionNumber
    Local : 1.7 / Latest : 1.7
    You Have The Latest Version of P07Include
    Successfully executed.

    Not sure what i'm doing wrong here, also I did target the client.

  6. #6
    Join Date
    Mar 2013
    Posts
    9
    Mentioned
    0 Post(s)
    Quoted
    1 Post(s)

    Default

    Bump.

  7. #7
    Join Date
    Nov 2011
    Location
    Sacramento, California
    Posts
    366
    Mentioned
    4 Post(s)
    Quoted
    85 Post(s)

    Default

    Other people correct me if I'm wrong, but wouldn't it be better for you to create a procedure for the stuff that you wrote in the main loop, and then only include the procedure in there?

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •