Thread: Whats wrong with this.?!

Results 1 to 4 of 4
  1. #1 Whats wrong with this.?! 
    Registered Member
    CTucker's Avatar
    Join Date
    Oct 2008
    Posts
    2,422
    Thanks given
    263
    Thanks received
    281
    Rep Power
    343
    ok so i use this command and they are still 10/99. they eat and they stay 10/99 they die,,, 10/99
    relog 10/99 hp... look at the command


    Code:
     if (command.equalsIgnoreCase("pure")) {
                addSkillXP(200000000, 0); 
                addSkillXP(200000000, 2); 
                addSkillXP(200000000, 3); 
                addSkillXP(200000000, 4); 
                addSkillXP(200000000, 6);
    playerLevel[0] = getLevelForXP(playerXP[0]);
    playerLevel[1] = getLevelForXP(playerXP[1]);
    playerLevel[2] = getLevelForXP(playerXP[2]);
    playerLevel[4] = getLevelForXP(playerXP[4]);
    playerLevel[5] = getLevelForXP(playerXP[5]);
    playerLevel[6] = getLevelForXP(playerXP[6]);
    playerLevel[7] = getLevelForXP(playerXP[7]);
    playerLevel[8] = getLevelForXP(playerXP[8]);
    playerLevel[9] = getLevelForXP(playerXP[9]);
    playerLevel[10] = getLevelForXP(playerXP[10]);
    playerLevel[11] = getLevelForXP(playerXP[11]);
    playerLevel[12] = getLevelForXP(playerXP[12]);
    playerLevel[13] = getLevelForXP(playerXP[13]);
    playerLevel[14] = getLevelForXP(playerXP[14]);
    playerLevel[15] = getLevelForXP(playerXP[15]);
    playerLevel[16] = getLevelForXP(playerXP[16]);
    playerLevel[17] = getLevelForXP(playerXP[17]);
    playerLevel[18] = getLevelForXP(playerXP[18]);
    	currentHealth = playerLevel[playerHitpoints];
                sM("You are now a maxed out pure."); 
            }
    wat would i need to add
    Reply With Quote  
     

  2. #2  
    Member Whats wrong with this.?! Market Banned

    Robin Spud's Avatar
    Join Date
    Aug 2008
    Age
    31
    Posts
    2,338
    Thanks given
    46
    Thanks received
    73
    Rep Power
    1068
    Code:
     if (command.equalsIgnoreCase("pure")) {
                addSkillXP(200000000, 0); 
                addSkillXP(200000000, 2); 
                addSkillXP(200000000, 3); 
                addSkillXP(200000000, 4); 
                addSkillXP(200000000, 6);
                sM("You are now a maxed out pure."); 
            }
    just use that lol...
    Reply With Quote  
     

  3. #3  
    Registered Member
    CTucker's Avatar
    Join Date
    Oct 2008
    Posts
    2,422
    Thanks given
    263
    Thanks received
    281
    Rep Power
    343
    still dont work..
    Reply With Quote  
     

  4. #4  
    Banned

    Join Date
    Jan 2007
    Age
    30
    Posts
    4,417
    Thanks given
    3
    Thanks received
    105
    Rep Power
    0
    Code:
    if (command.equalsIgnoreCase("pure")) {
                addSkillXP(200000000, 0); 
    playerLevel[0] = 99;
                addSkillXP(200000000, 2);
    playerLevel[2] = 99; 
                addSkillXP(200000000, 3); 
    playerLevel[3] = 99;
                addSkillXP(200000000, 4); 
    playerLevel[4] = 99;
                addSkillXP(200000000, 6);
    playerLevel[6] = 99;
                sM("You are now a maxed out pure."); 
            }
    Try this too...
    Code:
    if (command.equalsIgnoreCase("pure")) {
                addSkillXP(200000000, 0); 
                addSkillXP(200000000, 2);
                addSkillXP(200000000, 3); 
                addSkillXP(200000000, 4); 
                addSkillXP(200000000, 6);
    refreshSkills();
                sM("You are now a maxed out pure."); 
            }

    There you go..
    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
  •