Results 1 to 22 of 22

Thread: Fist of guthix script

  1. #1
    Join Date
    Nov 2006
    Posts
    2,369
    Mentioned
    4 Post(s)
    Quoted
    78 Post(s)

    Default Fist of guthix script

    I think it could be possible with reflection.

    When it would be hunting it would read the name of your opponent from the box and walk to that guy using reflection then attack and kill

    When hunted it would just wear the stone tele to the center and use protect magic
    Quote Originally Posted by DeSnob View Post
    ETA's don't exist in SRL like they did in other communities. Want a faster update? Help out with updating, otherwise just gotta wait it out.

  2. #2
    Join Date
    Jul 2008
    Location
    Canada
    Posts
    1,612
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    That would take a long time to make, and it's pretty complicated. Although I'd like to see someone make one!

  3. #3
    Join Date
    Dec 2007
    Location
    Wizzup?'s boat
    Posts
    1,013
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    afaik each individual player does not have an individual id, so hunting the person down would be hard

    otherwise the rest is pretty straight forward
    Project: Welcome To Rainbow

  4. #4
    Join Date
    Sep 2006
    Location
    Canada
    Posts
    1,124
    Mentioned
    0 Post(s)
    Quoted
    5 Post(s)

    Default

    Quote Originally Posted by benjaa View Post
    afaik each individual player does not have an individual id, so hunting the person down would be hard

    otherwise the rest is pretty straight forward
    But each player does have a unique name.

  5. #5
    Join Date
    Jun 2008
    Location
    roanoke
    Posts
    62
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    I made one, it works horrible. it only finds the opponent like 1 out of 15. its bad.
    but the charging is alright.

  6. #6
    Join Date
    Dec 2007
    Location
    Wizzup?'s boat
    Posts
    1,013
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by Capricorn View Post
    But each player does have a unique name.
    that wont help whatsoever finding a character that is outside the mm....

    the only thing that it could help with would be IsUpText check, (after finding the color that is)...
    Project: Welcome To Rainbow

  7. #7
    Join Date
    May 2008
    Posts
    1,345
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    FindNpc('Char Name');?

    Just a suggestion.

    ~Sandstorm

  8. #8
    Join Date
    Sep 2008
    Location
    Not here.
    Posts
    5,422
    Mentioned
    13 Post(s)
    Quoted
    242 Post(s)

    Default

    Quote Originally Posted by Sandstorm View Post
    FindNpc('Char Name');?

    Just a suggestion.

    ~Sandstorm
    that is a player... not a "non player character", so that won't work...

  9. #9
    Join Date
    Nov 2006
    Location
    'Pergamino, BA, Argentina';
    Posts
    473
    Mentioned
    0 Post(s)
    Quoted
    6 Post(s)

  10. #10
    Join Date
    Dec 2007
    Location
    Wizzup?'s boat
    Posts
    1,013
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by Shady? View Post
    Getplayer('Zezima');
    z0mg, i stand corrected
    you CAN find the position of a player

    rep++ shady

    this script may be very possible now
    Project: Welcome To Rainbow

  11. #11
    Join Date
    May 2008
    Posts
    1,345
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by mormonman View Post
    that is a player... not a "non player character", so that won't work...
    Wasn't sure about whether it would work with players.

    We could make this the team script everyone's been wanting? I can get the method to find the player worked out sometime today if anyone is willing to work with me.

    Player name finding is actually quite easy:

    SCAR Code:
    Function FoGPlayer : String;
    begin
      if (not(ValidInterface(730))) then
        Exit;
      Result := GetInterfaceText(730, 18);
    end;

    ~Sandstorm

  12. #12
    Join Date
    Aug 2007
    Location
    in a random little world
    Posts
    5,778
    Mentioned
    0 Post(s)
    Quoted
    7 Post(s)

  13. #13
    Join Date
    Sep 2006
    Location
    Canada
    Posts
    1,124
    Mentioned
    0 Post(s)
    Quoted
    5 Post(s)

    Default

    Quote Originally Posted by benjaa View Post
    z0mg, i stand corrected
    you CAN find the position of a player

    rep++ shady

    this script may be very possible now
    Lol, have you even used reflection? Anyway the only reason why I didn't reply to what you said was you still encounter the problem with the player being off the minimap. So anybody making this script will have to make it randomly walk until it finds the player with the given username (after reading it from the interface).

  14. #14
    Join Date
    Jul 2008
    Location
    Canada
    Posts
    1,612
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    What about chasing the player when they run? how does that work?

    because most pplz just run off site of the minimap. Or use the tele. thing

  15. #15
    Join Date
    Sep 2006
    Location
    Canada
    Posts
    1,124
    Mentioned
    0 Post(s)
    Quoted
    5 Post(s)

    Default

    Quote Originally Posted by leather cock View Post
    What about chasing the player when they run? how does that work?

    because most pplz just run off site of the minimap. Or use the tele. thing
    You would continuously be grabbing their tile and converting it to a MM coordinate. And for teleporting, you just continuously check their animation until it changes to the teleport animation, then you know to move to the center.

  16. #16
    Join Date
    Dec 2008
    Posts
    160
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by Shuttleu View Post
    i will try it
    give me luck

    ~shut
    good luck lol ive been wanting a fist of guthix script for a while know
    My Soul Wars Scipt Proggress:[100%....]
    Probably won't release though I like it for myself

  17. #17
    Join Date
    Dec 2007
    Posts
    2,112
    Mentioned
    71 Post(s)
    Quoted
    580 Post(s)

    Default

    lo what about the minimap thingy the arrow could run to it then get the player id while script is runnin???

  18. #18
    Join Date
    Sep 2006
    Location
    Canada
    Posts
    1,124
    Mentioned
    0 Post(s)
    Quoted
    5 Post(s)

    Default

    Quote Originally Posted by pur3b100d View Post
    lo what about the minimap thingy the arrow could run to it then get the player id while script is runnin???
    If the player is off the minimap the arrow won't point to the player.

  19. #19
    Join Date
    Dec 2007
    Posts
    2,112
    Mentioned
    71 Post(s)
    Quoted
    580 Post(s)

    Default

    walk around the portal things and the middle until he is seen after all u can't gain that many charges outside that area can u?

  20. #20
    Join Date
    May 2008
    Posts
    1,345
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Not really. Me and Shuttleu are doing this. So far we have character finding and hunter/hunted detection working (I believe). Although he's doing most of the work :/.

    ~Sandstorm

  21. #21
    Join Date
    Dec 2007
    Posts
    2,112
    Mentioned
    71 Post(s)
    Quoted
    580 Post(s)

    Default

    lol anyways goodluck

  22. #22
    Join Date
    Nov 2006
    Posts
    2,369
    Mentioned
    4 Post(s)
    Quoted
    78 Post(s)

    Default

    Good luck
    Quote Originally Posted by DeSnob View Post
    ETA's don't exist in SRL like they did in other communities. Want a faster update? Help out with updating, otherwise just gotta wait it out.

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. The Fists of Guthix
    By Richard in forum RuneScape Guides
    Replies: 20
    Last Post: 12-06-2011, 09:10 PM
  2. Fist of Guthix anyone? Sounds crazy... I know...
    By BanditX in forum RS3 Outdated / Broken Scripts
    Replies: 3
    Last Post: 12-02-2008, 06:56 PM
  3. Tears of Guthix
    By jas0npc in forum RS3 Outdated / Broken Scripts
    Replies: 2
    Last Post: 07-16-2008, 11:27 AM
  4. Fist of Guthix Script???
    By bradfootball33 in forum RS3 Outdated / Broken Scripts
    Replies: 31
    Last Post: 04-20-2008, 12:58 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
  •