Thread: Buying Bug Fixes And Content For 317

Page 1 of 3 123 LastLast
Results 1 to 10 of 26
  1. #1 Buying Bug Fixes And Content For 317 
    Owner of Dawntained

    Mgt Madness's Avatar
    Join Date
    Oct 2011
    Age
    25
    Posts
    3,377
    Thanks given
    1,410
    Thanks received
    943
    Rep Power
    2027
    Using Galkon's refactored and PI.

    Will be paying via Paypal and you may view my 35+ vouches on here [Only registered and activated users can see links. ]

    My Skype: Mohamed.G25

    Bugs to be fixed:

    Code:

    New content:

    Code:
    Reply With Quote  
     

  2. #2  
    Owner of Dawntained

    Mgt Madness's Avatar
    Join Date
    Oct 2011
    Age
    25
    Posts
    3,377
    Thanks given
    1,410
    Thanks received
    943
    Rep Power
    2027
    Bump ye
    Reply With Quote  
     

  3. #3  
    Owner of Dawntained

    Mgt Madness's Avatar
    Join Date
    Oct 2011
    Age
    25
    Posts
    3,377
    Thanks given
    1,410
    Thanks received
    943
    Rep Power
    2027
    Bump
    Reply With Quote  
     

  4. #4  
    Donator
    Mr Extremez's Avatar
    Join Date
    Jun 2012
    Posts
    2,245
    Thanks given
    97
    Thanks received
    297
    Rep Power
    61
    - When i am unskulled and or using protect item prayer and my inventory has 4 coins (anything stackable), then when i die, i will only keep 1
    I'm pretty sure it is like that on runescape also? What is wrong with that?

    - Ignore list does not save on client restart
    This is very easy, here's a fix.

    Replace what you originally had in playersave with these things:

    Code:
    characterfile.write("[IGNORES]", 0, 9);
    			characterfile.newLine();
    			for (int i = 0; i < player.ignores.length; i++) {
    				if (player.ignores[i] > 0) {
    					characterfile.write("character-ignore = ", 0, 19);
    					characterfile.write(Integer.toString(i), 0, Integer.toString(i).length());
    					characterfile.write("	", 0, 1);
    					characterfile.write(Long.toString(player.ignores[i]), 0, Long.toString(player.ignores[i]).length());
    					characterfile.newLine();
    				}
    			}
    			characterfile.newLine();
    Add this under case 8:

    Code:
    case 9:
    					 if (token.equals("character-ignore")) {
    							player.ignores[Integer.parseInt(token3[0])] = Long.parseLong(token3[1]);
    					 }
    					break;
    Also you may need to add this to your player class:

    Code:
     ignores[] = new long[200];
    I can help with more if I get time, but I'm not asking for any payment.
    Reply With Quote  
     

  5. #5  
    Owner of Dawntained

    Mgt Madness's Avatar
    Join Date
    Oct 2011
    Age
    25
    Posts
    3,377
    Thanks given
    1,410
    Thanks received
    943
    Rep Power
    2027
    Quote Originally Posted by I'm A Boss View Post
    - When i am unskulled and or using protect item prayer and my inventory has 4 coins (anything stackable), then when i die, i will only keep 1
    I'm pretty sure it is like that on runescape also? What is wrong with that?

    - Ignore list does not save on client restart
    This is very easy, here's a fix.

    Replace what you originally had in playersave with these things:

    Code:
    characterfile.write("[IGNORES]", 0, 9);
    			characterfile.newLine();
    			for (int i = 0; i < player.ignores.length; i++) {
    				if (player.ignores[i] > 0) {
    					characterfile.write("character-ignore = ", 0, 19);
    					characterfile.write(Integer.toString(i), 0, Integer.toString(i).length());
    					characterfile.write("	", 0, 1);
    					characterfile.write(Long.toString(player.ignores[i]), 0, Long.toString(player.ignores[i]).length());
    					characterfile.newLine();
    				}
    			}
    			characterfile.newLine();
    Add this under case 8:

    Code:
    case 9:
    					 if (token.equals("character-ignore")) {
    							player.ignores[Integer.parseInt(token3[0])] = Long.parseLong(token3[1]);
    					 }
    					break;
    Also you may need to add this to your player class:

    Code:
     ignores[] = new long[200];
    I can help with more if I get time, but I'm not asking for any payment.
    Thanks mate, but my ignore list does save in the char file and the saved data is also read correctly, only problem is putting those data to use.

    EDIT: as for the unskulled one, it does not make sense, if you die with 3 noted partyhats and keep 1
    Reply With Quote  
     

  6. #6  
    Community Veteran


    arch337's Avatar
    Join Date
    Sep 2008
    Posts
    2,833
    Thanks given
    187
    Thanks received
    306
    Discord
    View profile
    Rep Power
    770
    Quote Originally Posted by Mgt Madness View Post
    Thanks mate, but my ignore list does save in the char file and the saved data is also read correctly, only problem is putting those data to use.

    EDIT: as for the unskulled one, it does not make sense, if you die with 3 noted partyhats and keep 1
    That's because it not don reconise stackable items.


    "A fail act is something you do regular, but a dumb act is something you can learn from"
    Spoiler for Problem?:
    Reply With Quote  
     

  7. #7  
    Owner of Dawntained

    Mgt Madness's Avatar
    Join Date
    Oct 2011
    Age
    25
    Posts
    3,377
    Thanks given
    1,410
    Thanks received
    943
    Rep Power
    2027
    Quote Originally Posted by arch337 View Post
    That's because it not don reconise stackable items.
    Yeah..
    Reply With Quote  
     

  8. #8  
    Owner of Dawntained

    Mgt Madness's Avatar
    Join Date
    Oct 2011
    Age
    25
    Posts
    3,377
    Thanks given
    1,410
    Thanks received
    943
    Rep Power
    2027
    Bump
    Reply With Quote  
     

  9. #9  
    Donator

    Nintendo's Avatar
    Join Date
    Oct 2008
    Posts
    1,681
    Thanks given
    195
    Thanks received
    184
    Rep Power
    231
    Don't go first with this kid, ignore his vouches he'll try to find a reason why he shouldnt pay you everytime. Example: "I don't know how to perform that dupe so I don't know if this fixes it 100% so I'm not going to pay you" after he got told step by step how to perform it.
    Reply With Quote  
     

  10. Thankful user:


  11. #10  
    true

    DerekH's Avatar
    Join Date
    Dec 2011
    Age
    16
    Posts
    1,186
    Thanks given
    554
    Thanks received
    259
    Rep Power
    125
    Ive worked with him tons of times, I coukd vouch 10 times.
    Reply With Quote  
     

  12. Thankful user:


Page 1 of 3 123 LastLast

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: 10
    Last Post: 11-15-2013, 08:53 PM
  2. Replies: 1
    Last Post: 07-26-2013, 12:59 PM
  3. Replies: 66
    Last Post: 06-03-2013, 05:06 PM
  4. Buying 667 animations and GFXs for RSGP
    By Zakawer2 in forum Buying
    Replies: 2
    Last Post: 05-28-2012, 03:45 PM
  5. [562]Black Screen Bug fix and Pk Points Shop[562]
    By «I 1 H1t K0²» in forum Show-off
    Replies: 20
    Last Post: 04-14-2010, 10:17 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
  •