Results 1 to 7 of 7

Thread: multiplayer!!!!cant find a tut or anything

  1. #1
    Join Date
    Apr 2007
    Location
    The Netherlands
    Posts
    5,553
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default multiplayer!!!!cant find a tut or anything

    multiplayer!!!!cant find a tut or anything about it i just want a login procedure a working one because i only got this


    SCAR Code:
    Procedure DeclarePlayers;
      Begin
         StartPlayer := 1
         NumberOfPlayers( NumberOfUsers );
         CurrentPlayer := StartPlayer;

         Players[0].Name :='magic4fun6';
         Players[0].Pass :='';
         Players[0].Nick :='fun';
         Players[0].Loc :='chaosaltar';
         Players[0].Active:=True;

         Writeln( IntToStr ( NumberOfUsers ) + ' Players' );
      End;

    i need help plszz i searching hours to find somthing about it pls this is all i need help with a login procedure look at my msn and srry for repeat;ing()


    my account already has been hacked so dont care about the info
    ~Hermen

  2. #2
    Join Date
    Jun 2006
    Posts
    3,861
    Mentioned
    3 Post(s)
    Quoted
    1 Post(s)

    Default

    There's a tutorial in the How To Auto subforum...

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

    Default

    If you know how to script a bit already, or even if you don't you still may be helped in making one, you can check out my tut (links in sig) Learning the things to become a SRL member. Check out the multi player section. Then, in your script, just have

    SCAR Code:
    program Whatever;
    {.include SRL/SRL.scar}

    //Put declare players procedure here

    begin
      SetupSRL;
      DeclarePlayers;
      LoginPlayer;
    end.

    So yeah, just read it through the multi player section and you should be able to just copy and paste the DeclarePlayers procedure there and it should work if you did it correctly =)

  4. #4
    Join Date
    Nov 2006
    Location
    In an Amish Paradise
    Posts
    729
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    You didn't look very hard... http://www.villavu.com/forum/showthr...12858?p=149961

    ~Stupedspam

  5. #5
    Join Date
    Jun 2007
    Location
    NSW, Australia.
    Posts
    541
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Check out the playerform too, it makes life alot easier... just search around
    Quote Originally Posted by RAM View Post
    I sam sofa king wee todd did ! ~RAM
    My SRL Army Blog.


  6. #6
    Join Date
    Apr 2007
    Location
    The Netherlands
    Posts
    5,553
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    dudes thanks i fixed it i dont need multiplayer because its not recommend for this script but mys cript doesnt compiles can some1 say why

    ill post it here

    pls say why it doesnt compiles my friends say tehre is missing a ; but i cant find the bug its a small tiny bug its so small i cant find it :P
    ~Hermen

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

    Default

    You need an until in there right before the "end.". Like this:

    until(False);
    end.

    Or until whatever you want it to repeat until. until False will repeat until the user manually stops it.

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. Multiplayer help
    By Raskolnikov in forum OSR Help
    Replies: 3
    Last Post: 09-11-2008, 06:44 PM
  2. multiplayer help :(
    By takeout in forum OSR Help
    Replies: 3
    Last Post: 10-04-2007, 04:34 PM
  3. multiplayer
    By havoc928 in forum OSR Help
    Replies: 4
    Last Post: 09-13-2007, 01:57 AM

Posting Permissions

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