Results 1 to 2 of 2

Thread: 1st script troubles

  1. #1
    Join Date
    Mar 2007
    Posts
    2
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default 1st script troubles

    SCAR Code:
    program BronzeBarMaker;
    begin;

    procedure FindBronzeMine;
    begin;
    function RadialWalk(803937: Integer; 525, 580: Integer; 59: Integer; Xmod, Ymod: integer):

    end.


    It is wanting an identifier before procedure.......I know that this is probably some simple thing but I really need help

  2. #2
    Join Date
    Feb 2007
    Posts
    3,616
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by cheaterbeater View Post
    SCAR Code:
    program BronzeBarMaker;
    begin;

    procedure FindBronzeMine;
    begin;
    function RadialWalk(803937: Integer; 525, 580: Integer; 59: Integer; Xmod, Ymod: integer):

    end.


    It is wanting an identifier before procedure.......I know that this is probably some simple thing but I really need help
    Well congrats to you on starting scripting after the program name you do not need a begin though, and you do not put ;'s after begins. so it would look like this:
    SCAR Code:
    program BronzeBarMaker;

    procedure FindBronzeMine;
    begin
    RadialWalk(803937: Integer; 525, 580: Integer; 59: Integer; Xmod, Ymod:nteger):
    end;//needed to end this procedure.
    begin//main loop.
    FindBronzeMine;
    end.//end main loop.
    radial walking is very advanced for just starting scripting, so I wouldn't suggest doing that for a while. You don't need to put all the : Integer things in there, as you probably just coppied it out of the manual. and in scripting, a procedure/function does nothing unless it is in the main loop. if you need any help with scripting, add me on MSN: runescapemacro@hotmail.com you could also join me and a friends forums links in sig.

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. Dev C++ and troubles?
    By insanomano in forum C/C++ Help and Tutorials
    Replies: 12
    Last Post: 11-01-2008, 09:28 AM
  2. Troubles with script help please
    By aamimi in forum OSR Help
    Replies: 3
    Last Post: 08-26-2008, 06:14 PM

Posting Permissions

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