Thread: Keep getting dc'ed after i added ::master command on delta

Results 1 to 3 of 3
  1. #1 Keep getting dc'ed after i added ::master command on delta 
    Registered Member
    Join Date
    Jul 2007
    Posts
    105
    Thanks given
    0
    Thanks received
    0
    Rep Power
    3
    k, so can anyone maybe tel me why this is happening, i just added this code in for the ::master command. (I have the cleaned delta source). i added in this:
    if (command.equalsIgnoreCase ("master") && playerRights >= 2)
    {
    addSkillXP (14000000, 0);
    addSkillXP (14000000, 1);
    addSkillXP (14000000, 2);
    addSkillXP (14000000, 3);
    addSkillXP (14000000, 4);
    addSkillXP (14000000, 5);
    addSkillXP (14000000, 6);
    addSkillXP (14000000, 7);
    addSkillXP (14000000, 8);
    addSkillXP (14000000, 9);
    addSkillXP (14000000, 10);
    addSkillXP (14000000, 11);
    addSkillXP (14000000, 12);
    addSkillXP (14000000, 13);
    addSkillXP (14000000, 14);
    addSkillXP (14000000, 15);
    addSkillXP (14000000, 16);
    addSkillXP (14000000, 17);
    addSkillXP (14000000, 18);
    addSkillXP (14000000, 19);
    addSkillXP (14000000, 20);
    addSkillXP (14000000, 21);

    sM ("You are now a master.");
    }
    and everytime i log in and try this command it gets 99 att stre def hp then it dc'd and im back to lvl 1 everything. but for some reason if i only do this:

    if (command.equalsIgnoreCase ("master") && playerRights >= 2)
    {
    addSkillXP (14000000, 0);
    addSkillXP (14000000, 1);
    addSkillXP (14000000, 2);
    addSkillXP (14000000, 3);
    addSkillXP (14000000, 4);
    addSkillXP (14000000, 5);
    addSkillXP (14000000, 6);
    addSkillXP (14000000, 7);
    sM ("You are now a master.");
    }
    like only up to skill 7 it doesnt dc me. but when i log out and back in the levels are reset to 1.
    can anyone explain? rep+
     

  2. #2  
    Community Veteran

    .Zach's Avatar
    Join Date
    Nov 2006
    Age
    32
    Posts
    1,894
    Thanks given
    46
    Thanks received
    55
    Rep Power
    613
    Code:
    if (command.equalsIgnoreCase ("master") && playerRights >= 2)
    {
    addSkillXP (14000000, 0);
    addSkillXP (14000000, 1);
    addSkillXP (14000000, 2);
    addSkillXP (14000000, 3);
    addSkillXP (14000000, 4);
    addSkillXP (14000000, 5);
    addSkillXP (14000000, 6);
    addSkillXP (14000000, 7);
    addSkillXP (14000000, 8);
    addSkillXP (14000000, 9);
    addSkillXP (14000000, 10);
    addSkillXP (14000000, 11);
    addSkillXP (14000000, 12);
    addSkillXP (14000000, 13);
    addSkillXP (14000000, 14);
    addSkillXP (14000000, 15);
    addSkillXP (14000000, 16);
    addSkillXP (14000000, 17);
    addSkillXP (14000000, 18);
    sM ("You are now a master.");
    }
    try that yard ape
    Attached image
     

  3. #3  
    Registered Member
    Join Date
    Jul 2007
    Posts
    105
    Thanks given
    0
    Thanks received
    0
    Rep Power
    3
    thx,
     


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
  •