Thread: [317] ::prestige command help! [317]

Results 1 to 5 of 5
  1. #1 [317] ::prestige command help! [317] 
    Registered Member
    Join Date
    Dec 2012
    Posts
    32
    Thanks given
    0
    Thanks received
    2
    Rep Power
    11
    Code:
    if (playerCommand.equalsIgnoreCase("prestige")) {
    if(c.combatLevel != 138)
    return;
    
    for(int i = 0; i < 7;i++) {
    c.playerLevel[i] = 1;
    c.playerXP[i] = 0;
    c.getPA().refreshSkill(i);
    c.playerTitle = +1;
    }
    c.sendMessage("You Have Prestiged Your Combat!");
    } else if(c.playerTitle == 11){ 
       c.sendMessage("You can only prestige 11 times");
    				}
    It doesn't do the +1 so it doesn't count when you prestige your levels.. and the first time you prestige it gives you the "Sir" title but other times; nothing.
    all it does it reset them.

    (also it doesn't reset summoning)

    Please help, and thankyou

    EDIT: I have already tried making "c.playerTitle = +1;" to "c.playerTitle += 1;". So please do not suggest that.
    Reply With Quote  
     

  2. #2  
    Registered Member
    Join Date
    Dec 2012
    Posts
    32
    Thanks given
    0
    Thanks received
    2
    Rep Power
    11
    It doesn't change the playertitle after the 1st prestige.
    Reply With Quote  
     

  3. #3  
    Registered Member
    Join Date
    Dec 2012
    Posts
    32
    Thanks given
    0
    Thanks received
    2
    Rep Power
    11
    bump :l
    Reply With Quote  
     

  4. #4  
    Registered Member

    Join Date
    May 2012
    Age
    28
    Posts
    1,548
    Thanks given
    415
    Thanks received
    231
    Rep Power
    81
    c.playerTitle ++;
    Inactive.


    Spoiler for FirstDesign:
    Reply With Quote  
     

  5. #5  
    Donator
    Mr Extremez's Avatar
    Join Date
    Jun 2012
    Posts
    2,243
    Thanks given
    97
    Thanks received
    298
    Rep Power
    61
    Code:
    if (playerCommand.equalsIgnoreCase("prestige") && c.combatLevel != 138) {
    for(int i = 0; i < 7;i++) {
    	c.playerLevel[i] = 1;
    	c.playerXP[i] = 0;
    	c.getPA().refreshSkill(i);
    	c.sendMessage("You Have Prestiged Your Combat!");
    	c.playerTitle ++;
    } else if(c.playerTitle > 10){ 
    	c.sendMessage("You can only prestige 11 times!");
    	}
    }
    Conventions please. Something like that wrote it in the reply box.
    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. Help wiith prestige
    By Lost-Rune in forum Help
    Replies: 0
    Last Post: 01-10-2013, 11:13 PM
  2. [PS3][MW2]Prestige Hack
    By Adam™ in forum Console
    Replies: 2
    Last Post: 06-14-2010, 09:08 PM
  3. 9th prestige with EVERYTHING
    By DrDiablo in forum Price Check
    Replies: 9
    Last Post: 04-21-2010, 02:30 AM
  4. (DELTA) Prestige Command Help (DELTA)
    By zachverbeek in forum Help
    Replies: 25
    Last Post: 12-05-2009, 02:48 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
  •