Thread: devo 2,7 bugs!

Results 1 to 6 of 6
  1. #1 devo 2,7 bugs! 
    Registered Member
    Join Date
    Jul 2008
    Posts
    3,163
    Thanks given
    235
    Thanks received
    74
    Rep Power
    209
    i will add here my bugs,because idk how i can fix this,someone tell "its easy" yea sure but idk
    -skull save
    if u are skuled and log out ur skull dissapear
    -hp bug
    for example if u have 49/99 hp and log out and in u will have 99/99 hp
    -special save
    if i use all my special and log out and in ,i will have full special
    tyvm for help!
    i will rep++
    Reply With Quote  
     

  2. #2  
    Donator


    Join Date
    Mar 2007
    Posts
    959
    Thanks given
    64
    Thanks received
    40
    Rep Power
    704
    SaveGame.java

    search for

    Code:
    			characterfile.write("character-energy = ", 0, 19);
    			characterfile.write(Integer.toString(c.playerEnergy), 0, Integer.toString(c.playerEnergy).length());
    			characterfile.newLine();
    Under it add:
    Code:
    			characterfile.write("character-special = ", 0, 20);
    			characterfile.write(Integer.toString(c.specialAmount), 0, Integer.toString(c.specialAmount).length());
    			characterfile.newLine();
    Code:
    characterfile.write("character-skull = ", 0, 19);
    			characterfile.write(Integer.toString(c.isSkulled), 0, Integer.toString(c.isSkulled).length());
    			characterfile.newLine();
    then search for

    Code:
    				} else if (token.equals("character-energy")) {
    						c.playerEnergy = Integer.parseInt(token2);;
    and under it add

    Code:
    } else if (token.equals("character-special")) {
    						c.specialAmount = Integer.parseInt(token2);
    Code:
    } else if (token.equals("character-skull")) {
    						c.isSkulled = Integer.parseInt(token2);
    Reply With Quote  
     

  3. #3  
    Registered Member
    Join Date
    Jul 2008
    Posts
    3,163
    Thanks given
    235
    Thanks received
    74
    Rep Power
    209
    fixed speical !
    still need help at hp and skull
    Reply With Quote  
     

  4. #4  
    Registered Member
    Rock_Gyo's Avatar
    Join Date
    Oct 2009
    Posts
    505
    Thanks given
    27
    Thanks received
    35
    Rep Power
    104
    Good Job man
    Reply With Quote  
     

  5. #5  
    Donator

    F1NN's Avatar
    Join Date
    May 2008
    Posts
    504
    Thanks given
    28
    Thanks received
    16
    Rep Power
    156
    Quote Originally Posted by dani_gonzales View Post
    fixed speical !
    still need help at hp and skull
    ...You going to make it yourself? He just fixed special attack for you, HP is setup the same way, and I am pretty sure so is the skull. Stop PMing me for a bunch of fixes I am not going to spoon feed shit to you.
    Reply With Quote  
     

  6. #6  
    Registered Member
    Join Date
    Jul 2008
    Posts
    3,163
    Thanks given
    235
    Thanks received
    74
    Rep Power
    209
    pls i need help to fix prayer,hp and skull save!
    i will rep++
    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
  •