Thread: [delta] Removing wildy sign

Results 1 to 8 of 8
  1. #1 [delta] Removing wildy sign 
    Registered Member
    Join Date
    Apr 2009
    Posts
    123
    Thanks given
    0
    Thanks received
    0
    Rep Power
    3
    Hii i got dueling on my server but i cannot figure out how to remove the wildy sign when you go in the duel fight i got feeling sumin to do wit headicon but not sure or theres a code u need put in process i dont no please tell me how

    Reply With Quote  
     

  2. #2  
    angelsammie
    Guest
    can u show a pick plz
    Reply With Quote  
     

  3. #3  
    Registered Member
    Join Date
    Apr 2009
    Posts
    123
    Thanks given
    0
    Thanks received
    0
    Rep Power
    3
    Quote Originally Posted by angelsammie View Post
    can u show a pick plz
    there
    Reply With Quote  
     

  4. #4  
    Registered Member
    Join Date
    Apr 2009
    Posts
    123
    Thanks given
    0
    Thanks received
    0
    Rep Power
    3
    no1 will help me then:O
    Reply With Quote  
     

  5. #5  
    Banned

    Join Date
    Sep 2008
    Posts
    258
    Thanks given
    0
    Thanks received
    2
    Rep Power
    0
    search for
    Code:
    public boolean nonwild
    replace with:
    Code:
    public boolean nonWild() {
    if((absX <= 2943) || (absX >= 3365) || (absY <= 3519) || (absY >= 4000) ||
    
    heightLevel > 0)
    return true;
    else
    return false;
    }
    Reply With Quote  
     

  6. #6  
    Banned

    Join Date
    Sep 2008
    Posts
    258
    Thanks given
    0
    Thanks received
    2
    Rep Power
    0
    Wait, wait. now I got it.
    Try this:

    search for:


    Code:
    case 73:
    scroll down until you see


    Code:
    if(!CheckWildRange(plz.combat)){
    IsAttacking = false;
    teleportToX = absX;
    teleportToY = absY;
    sendMessage("Your level differance is too great!");
    sendMessage("You need to move further into the Wilderness.");
    ResetAttack();
    }else{
    }
    or something similar to that.
    replace it with


    Code:
    if(!CheckWildRange(plz.combat) && !nonWild()){
    IsAttacking = false;
    teleportToX = absX;
    teleportToY = absY;
    sendMessage("Your level differance is too great!");
    sendMessage("You need to move further into the Wilderness.");
    ResetAttack();
    }else{
    }
    next, search for
    Code:
    case 249:
    scroll down until you see

    Code:
    if(!CheckWildRange(pl2.combat)){
    sendMessage("Your level differance is too great!");
    sendMessage("You need to move further into the Wilderness.");
    ResetAttack();
    }else
    or something similar

    replace that with
    Code:
    if(!CheckWildRange(pl2.combat) && !nonWild()){
    sendMessage("Your level differance is too great!");
    sendMessage("You need to move further into the Wilderness.");
    ResetAttack();
    }else
    Reply With Quote  
     

  7. #7  
    Registered Member
    Join Date
    Apr 2009
    Posts
    123
    Thanks given
    0
    Thanks received
    0
    Rep Power
    3
    Thank mate not delta there simpilar way jus need find thanks for trying tho
    Reply With Quote  
     

  8. #8  
    Banned

    Join Date
    Sep 2008
    Posts
    258
    Thanks given
    0
    Thanks received
    2
    Rep Power
    0
    Quote Originally Posted by leitchy18 View Post
    Thank mate not delta there simpilar way jus need find thanks for trying tho
    No Problem, Rep is appreciated. If you have any other problems, PM me.
    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

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