Thread: I need Duel Anywhere Snippet please!

Results 1 to 5 of 5
  1. #1 I need Duel Anywhere Snippet please! 
    Banned
    Join Date
    Jul 2013
    Posts
    27
    Thanks given
    4
    Thanks received
    1
    Rep Power
    0
    If anyone have the snippet for duel anywhere previously released here:

    ---http://www.rune-server.org/runescape-development/rs-503-client-server/snippets/459509-718-duel-anywhere.html---

    but sadly taken down before I could get to it. If anyone has it please let me have the code. Thanks so much
    Reply With Quote  
     

  2. #2  
    Boy Wonder


    Join Date
    Mar 2012
    Posts
    849
    Thanks given
    139
    Thanks received
    80
    Rep Power
    99
    Quote Originally Posted by Nickhagro View Post
    If anyone have the snippet for duel anywhere previously released here:

    ---http://www.rune-server.org/runescape-development/rs-503-client-server/snippets/459509-718-duel-anywhere.html---

    but sadly taken down before I could get to it. If anyone has it please let me have the code. Thanks so much
    just make it yourself. very easy, find the method that determines if your in the duel area and expand the coordinates to wherever you want or make it return true.

    Reply With Quote  
     

  3. #3  
    Banned
    Join Date
    Jul 2013
    Posts
    27
    Thanks given
    4
    Thanks received
    1
    Rep Power
    0
    bump
    Reply With Quote  
     

  4. #4  
    Banned
    Join Date
    Jul 2013
    Posts
    27
    Thanks given
    4
    Thanks received
    1
    Rep Power
    0
    bump please guys really need help with this :/
    Reply With Quote  
     

  5. #5  
    Registered Member
    Join Date
    May 2012
    Posts
    445
    Thanks given
    31
    Thanks received
    19
    Rep Power
    48
    Combatassistant --> checkreqs method --> replace this
    Code:
    if(Server.playerHandler.players[c.playerIndex].inDuelArena() && c.duelStatus != 5 && !c.usingMagic) {
    			if(c.arenas() || c.duelStatus == 5) {
    				c.sendMessage("You can't challenge inside the arena!");
    				return false;
    			}
    			c.getTradeAndDuel().requestDuel(c.playerIndex);
    			return false;
    		}
    with this
    Code:
    if(c.duelStatus != 5 && !c.usingMagic) {
    			if(c.arenas() || c.duelStatus == 5) {
    				c.sendMessage("You can't challenge inside the arena!");
    				return false;
    			}
    			c.getTradeAndDuel().requestDuel(c.playerIndex);
    			return false;
    		}
    My services at No1killme's services
    Reply With Quote  
     


Thread Information
Users Browsing this Thread

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


User Tag List

Similar Threads

  1. Replies: 3
    Last Post: 05-27-2013, 04:49 AM
  2. Need a free hoster please.
    By nathan0507 in forum Hosting
    Replies: 4
    Last Post: 11-27-2008, 05:52 PM
  3. Need Proper NPC tutorial---please help!
    By Enjoi in forum Requests
    Replies: 1
    Last Post: 10-25-2008, 08:50 PM
  4. need good run client please!
    By snower owns in forum Requests
    Replies: 2
    Last Post: 02-03-2008, 06:30 PM
  5. I need the perfect client please
    By b 0 0 m in forum Requests
    Replies: 7
    Last Post: 11-10-2007, 06:28 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
  •