Results 1 to 2 of 2

Thread: randoms and nextplayer

  1. #1
    Join Date
    Jan 2007
    Posts
    268
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    randoms and nextplayer

    hi in my script i did for all procedures at the begining :

    if(not(LoggedIn))then
    begin
    Logout;
    Exit;
    NextPlayer(false);
    end else
    begin
    FindNormalRandoms;
    etc.

    but i dont know if i should just do

    if(not(LoggedIn))then
    begin
    nextplayer(false);

    and for the randoms in my wcing procedure i did;

    procedure chopyewsdown;
    begin
    if(not(LoggedIn))then
    begin
    logout;
    exit;
    NextPlayer(false);
    end else
    begin
    Chopyews;
    repeat
    cuttingrandoms;
    until(InvFull);

    for the cuttingrandoms i did at the top of the script:

    cuttingrandoms;
    if(not(LoggedIn))then
    begin
    logout;
    exit;
    nextplayer(false);
    end else
    begin
    FindNormalRandoms;
    EntChecker;
    FindHead;
    end;

    but i was watching it run and a old man gave a box but it just lagged. it didnt do anything just lagged and logged out after a certain time...can u help me for this two things?thx

  2. #2
    Join Date
    Oct 2006
    Location
    New Zealand
    Posts
    423
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    i just use
    SCAR Code:
    if(not(LoggedIn))then
    begin
    loginplayer;
    end;

    then put find randoms into the start of the next bit.

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. NextPlayer
    By Viral in forum OSR Help
    Replies: 9
    Last Post: 11-12-2008, 07:47 AM
  2. NextPlayer help
    By king vash in forum OSR Help
    Replies: 4
    Last Post: 03-28-2007, 12:54 AM
  3. false and nextplayer
    By macromacro123 in forum OSR Help
    Replies: 1
    Last Post: 03-05-2007, 04:21 PM
  4. Why won't NextPlayer work?
    By Bobarkinator in forum OSR Help
    Replies: 5
    Last Post: 03-04-2007, 04:16 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
  •