[Source] | v83 | HeliosMS

I believe these are the levels of GM
if (c.getPlayer().gmLevel() >= 1) {
if (DonorCommand.execute(c, sp, '!')) {
return true;
}
}
if (c.getPlayer().gmLevel() >= 5) {
if (GMCommand.execute(c, sp, '!')) {
return true;
}
}
if (c.getPlayer().gmLevel() >= 50) {
if (HGMCommand.execute(c, sp, '!')) {
return true;
}
}
if (c.getPlayer().gmLevel() >= 60) {
if (DeveloperCommand.execute(c, sp, '!')) {
return true;
}
}
if (c.getPlayer().gmLevel() >= 100) {
if (AdminCommand.execute(c, sp, '!')) {
return true;
 
I believe these are the levels of GM
if (c.getPlayer().gmLevel() >= 1) {
if (DonorCommand.execute(c, sp, '!')) {
return true;
}
}
if (c.getPlayer().gmLevel() >= 5) {
if (GMCommand.execute(c, sp, '!')) {
return true;
}
}
if (c.getPlayer().gmLevel() >= 50) {
if (HGMCommand.execute(c, sp, '!')) {
return true;
}
}
if (c.getPlayer().gmLevel() >= 60) {
if (DeveloperCommand.execute(c, sp, '!')) {
return true;
}
}
if (c.getPlayer().gmLevel() >= 100) {
if (AdminCommand.execute(c, sp, '!')) {
return true;
Yes, those are them.

Fixed D/Cing skills, such as?
I don't remember since I made this like half a year ago, but there were some skills which were d/c'ing people and now they don't anymore.

ermm is there a command to find the NPC's ID?
I don't think so, but you can always check the command files I guess.
 
Alright, I'm having a few problems.
1. Heaven's Hammer is instant killing monsters
2. Skills only kill 1 mob sometimes
3. If you sit on a bench and someone try to enter, they'll disconnect.
4. Speed Infusion doesn't go in effect.
 
Ermm, just a small remind that if you've installed jre7 in your computer, you will need to have JCE Policy Files 7 to make your .bat running. :)
 
The Npc Stat Reset Good Working But When i Click Reset Stat
That Do Reset Stat Back not Back My Str/int/luk/dex just reset and delete ?
var status = 0;

function start() {
status = -1;
action(1, 0, 0);
}

function action(mode, type, selection) {
if (mode == -1)
cm.dispose();
else {
if (mode == 0 && status == 0) {
cm.dispose();
return;
} else if (mode == 1) {
status++;
} else {
status--;
}
if (status == 0) {
cm.sendNext("Welcome to the Stat Reset NPC/Negative Stat fixer NPC!");
} else if (status == 1) {
cm.sendSimple("Pick one: \r\n #L0#Fix Negative stats#l\r\n#L1#Reset Stats#l\r\n#L2#No thanks#l");
} else if (status == 2) {
if (selection == 0) {
cm.sendOk("Please look for a GM to help you fix your stats.");
} else if (selection == 1) {
cm.resetStats();
cm.sendOk("Your stats have been reset!");
cm.dispose();
}
} else if (selection == 2) {
cm.dispose();
}
}
}
 
How come when i used skills i can only damage and kill one monster at a time? And sometime it can kill multiple monster at once. Any hint on how to fixed this?

Thank you.
 
Back