View Poll Results: How is this Script

Voters
61. This poll is closed
  • Awesome Script!! doesnt need any work

    7 11.48%
  • Good Script, needs some work though

    26 42.62%
  • OK Script, needs lots of work

    16 26.23%
  • Horrible Script, needs a ton of work!

    12 19.67%
Page 63 of 68 FirstFirst ... 13536162636465 ... LastLast
Results 1,551 to 1,575 of 1683

Thread: Xcan's Smelter

  1. #1551
    Join Date
    Oct 2006
    Location
    Ontario,Canada
    Posts
    1,718
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    im getting the same problem...i cant explain it...im actually awe struck. i dont know what is causing it.

    edit: and im using my private version(atm) with the open dev srl

    edit: i think they (jagex) changed the flag.

  2. #1552
    Join Date
    Mar 2008
    Location
    In a cave
    Posts
    345
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Yeap, the flag has changed :P
    A Chinese wiseman once said: "Shu ciu!", it was considered very smart, but now people know it means: "Something stinks here!"
    FalBuggySmelter v.1.31
    [Updated on the 1st of March 2010]
    RimmBugger BETA V1.8

  3. #1553
    Join Date
    Oct 2006
    Location
    Ontario,Canada
    Posts
    1,718
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    ya i posted before i looked around...or checked myself

  4. #1554
    Join Date
    May 2008
    Location
    Canada
    Posts
    665
    Mentioned
    0 Post(s)
    Quoted
    7 Post(s)

    Default

    RS is updated. The movement feature has issues because FFlag colors were changed. look around this forum for a fix =D.

  5. #1555
    Join Date
    Nov 2008
    Posts
    102
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    hey theres a new update, does this script need to get updated cause i can work it for some reason


    oh nvm
    Last edited by naryasha; 05-28-2009 at 08:56 AM.

  6. #1556
    Join Date
    Oct 2006
    Location
    Ontario,Canada
    Posts
    1,718
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    use the new open-dev SVN and it should work as before.

  7. #1557
    Join Date
    Aug 2007
    Posts
    328
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    OR you cold just replace what in the file =P look here http://www.villavu.com/forum/showthr...775#post575775

  8. #1558
    Join Date
    Nov 2008
    Posts
    102
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    ok i know this is nooob question but how do the open-dev SVN? I read the above link but people were saying it doesn't work?

    Is the dev SVN thing like SRL checkout or w.e ?

  9. #1559
    Join Date
    Oct 2006
    Location
    Ontario,Canada
    Posts
    1,718
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

  10. #1560
    Join Date
    Apr 2008
    Posts
    147
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Using it now: Good to see a nice, easy to use script once in a while I'm going to smelt 1k ores xP

    Code:
    Procedure SendReport(user,pass:string);
    var Client: Integer;
    var s, URL: String;
    var i:integer;
    begin
      if ( XcansReportUser <> '' ) and ( XcansReportPass <> '' ) then
      begin
        Client:= InitializeHTTPClient(false, false);
        clearPOSTData(client);
        URL:= 'http://www.xcanadamanx.phpnet.us/stats/Stats.php';
        AddPostVariable(client,'username',user);
        AddPostVariable(client,'password',pass);
    
        for I := 0 to 6 do
          begin
            OnlineVars[i] := ( OnlineVars[i] - OldVars[i] );
          end;
          try
          for I := 0 to 6 do
            begin
              if OnlineVars[I] > 0 then
              begin
                S := 'var' + IntToStr ( I + 1 );
                AddPostVariable ( Client, S, IntToStr ( OnlineVars[I] ));
              end;
            end;
          except
          end;
        s:= PostHTTPPageEx(Client, URL);
        writeln(GetRawHeaders(client));
        xdebug(s);
        FreeHttpClient(client);
        SetOldVars;
        Onlinevars[6]:=1;
      end;
    end;
    Suspicious, much?

    And it don't even pull out the ores...
    Last edited by iJake; 05-29-2009 at 06:01 PM.

  11. #1561
    Join Date
    Feb 2009
    Location
    Philipines
    Posts
    600
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by iJake View Post

    Suspicious, much?

    And it don't even pull out the ores...
    I don't think you should worry about that.

  12. #1562
    Join Date
    Apr 2008
    Posts
    147
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    It withdraws 14 of each, goes to furnace and walks right back to bank without doing anything..

    But in Bank screen, it stops altogether.
    Last edited by iJake; 05-29-2009 at 09:14 PM.

  13. #1563
    Join Date
    Oct 2006
    Location
    Ontario,Canada
    Posts
    1,718
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by iJake View Post
    Using it now: Good to see a nice, easy to use script once in a while I'm going to smelt 1k ores xP

    Code:
    Procedure SendReport(user,pass:string);
    var Client: Integer;
    var s, URL: String;
    var i:integer;
    begin
      if ( XcansReportUser <> '' ) and ( XcansReportPass <> '' ) then
      begin
        Client:= InitializeHTTPClient(false, false);
        clearPOSTData(client);
        URL:= 'http://www.xcanadamanx.phpnet.us/stats/Stats.php';
        AddPostVariable(client,'username',user);
        AddPostVariable(client,'password',pass);
    
        for I := 0 to 6 do
          begin
            OnlineVars[i] := ( OnlineVars[i] - OldVars[i] );
          end;
          try
          for I := 0 to 6 do
            begin
              if OnlineVars[I] > 0 then
              begin
                S := 'var' + IntToStr ( I + 1 );
                AddPostVariable ( Client, S, IntToStr ( OnlineVars[I] ));
              end;
            end;
          except
          end;
        s:= PostHTTPPageEx(Client, URL);
        writeln(GetRawHeaders(client));
        xdebug(s);
        FreeHttpClient(client);
        SetOldVars;
        Onlinevars[6]:=1;
      end;
    end;
    Suspicious, much?

    And it don't even pull out the ores...
    I used to have stats sigs but they dont work anymore. that does nothing now. you should be able to take that procedure out and it wont cause any errors at all.
    edit: i already took this out in my upcoming version

    Quote Originally Posted by iJake View Post
    It withdraws 14 of each, goes to furnace and walks right back to bank without doing anything..

    But in Bank screen, it stops altogether.
    never had the problem...ill look at it later.
    edit: works fine for me.
    Last edited by XcanadamanX; 05-30-2009 at 12:49 AM.

  14. #1564
    Join Date
    Apr 2008
    Posts
    147
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

  15. #1565
    Join Date
    Dec 2006
    Location
    Minnesota
    Posts
    227
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    / Xcan's Smelter/CannonballMaker \
    | V2.4 |
    |---------------------------------------------------------|
    |Ran For: 3 Hours, 4 Minutes and 58 Seconds.
    |Finished: 91 load(s). |
    |Made: 855 bars. |
    |Gained: 14138 exp. |
    |Gained: 4 level(s). |
    |Bars/Hr: 277 , Xp/Hr: 4586 , CBalls/Hr: 0|
    |_________________________________________________ ________|
    |0:x = N.M.O, 27 Bank[s], Smelted 222 Bars |
    |1: x = N.M.O, 27 Bank[s], Smelted 219 Bars |
    |2: x = True, 31 Bank[s], Smelted 249 Bars |
    |3: x = N.M.O, 14 Bank[s], Smelted 165 Bars |
    \_________________________________________________ ________/

    Nice little prog. Working good as usual

  16. #1566
    Join Date
    Oct 2006
    Location
    Ontario,Canada
    Posts
    1,718
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by iJake View Post
    When will the new one be out?
    when it is stable. i pretty much have one thing to fix and then ill release it. the thing is...i dont know why the one thing is failing...

  17. #1567
    Join Date
    May 2008
    Posts
    122
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    it doesnt find the bank or furnace symbols i think. it will run into wierd places.... is this because of update? i have rev33 now, but how do i fix?
    [TUT]Good money and free smithing levels! http://www.villavu.com/forum/showthread.php?t=31209[/TUT]

  18. #1568
    Join Date
    Oct 2006
    Location
    Ontario,Canada
    Posts
    1,718
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    i dont use symbols at all...ill check it out later

  19. #1569
    Join Date
    May 2008
    Location
    Canada
    Posts
    665
    Mentioned
    0 Post(s)
    Quoted
    7 Post(s)

    Default

    symbols are becomming increasingly inaccurate. too much random symbol movements.

    If all else fails, you can still navigate without a minimap =D.

  20. #1570
    Join Date
    Oct 2006
    Location
    Ontario,Canada
    Posts
    1,718
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    as i say again...i dont use symbols. i use radialwalk, Trig walking with TPAs and Dtms. the only thing i use a symbol for is for a backup if the bank dtm fails.

  21. #1571
    Join Date
    May 2008
    Posts
    122
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    well whatever it is, for me, it seems to be failing...

    it walks right past the furnace room as if it never noticed it
    [TUT]Good money and free smithing levels! http://www.villavu.com/forum/showthread.php?t=31209[/TUT]

  22. #1572
    Join Date
    Oct 2006
    Location
    Ontario,Canada
    Posts
    1,718
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    works for me...what rev do you have?

    edit: im using open-dev, scar 3.20d and only changed the script to compile and it works perfect.

  23. #1573
    Join Date
    May 2008
    Posts
    122
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    im using 3.20d and rev33, im not sure what's going wrong with it, it just walks right past the furnace
    [TUT]Good money and free smithing levels! http://www.villavu.com/forum/showthread.php?t=31209[/TUT]

  24. #1574
    Join Date
    Oct 2006
    Location
    Ontario,Canada
    Posts
    1,718
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    try using the open-dev...even though they should be the same.

  25. #1575
    Join Date
    May 2008
    Posts
    122
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    ok, i got open-dev, but when i ran the script it says i had a duplcate identifier "CHANGEWORLD" i don't know where that came from because i didnt change the script, but anyway, i just changed the procedure name in the procedure and the part wherer the script uses the procedure

    now it works again
    [TUT]Good money and free smithing levels! http://www.villavu.com/forum/showthread.php?t=31209[/TUT]

Page 63 of 68 FirstFirst ... 13536162636465 ... LastLast

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. Smelters: Munk's vs Xcan's Faster Bar per hour
    By nobody u kno in forum News and General
    Replies: 18
    Last Post: 05-10-2008, 08:31 PM
  2. XCAN'S Smelting script
    By donderwolkq in forum First Scripts
    Replies: 1
    Last Post: 01-03-2008, 08:34 PM
  3. Smelter
    By Bobzilla69 in forum RS3 Outdated / Broken Scripts
    Replies: 15
    Last Post: 04-14-2007, 02:11 AM
  4. Help with my smelter
    By Pinqvin in forum OSR Help
    Replies: 1
    Last Post: 03-29-2007, 11:33 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
  •