[HELP]Guild Alliance Expand bug
The Alliance Max for MapleSEA is 5 but in the PS can only add 2 max. Will this script help cure the problem? ::
importPackage(net.sf.odinms.net.world.guild);
var status;
var choice;
var guildName;
var partymembers;
function start() {
status = -1;
action(1,0,0);
}
function action(mode, type, selection) {
if (mode == 1)
status++;
else {
cm.dispose();
return;
}
if (status == 0)
partymembers = cm.getPlayer().getParty().getMembers();
cm.sendSimple("Hello there! I'm #bLenario #k\r\n#b#l 0#Can you please tell me what Guild Union is all about?#l \r\n#l 1#How do I make a Guild Union?#l \r\n#l 2#I want to make a Guild Union.#l \r\n#l 3#I want to add more guilds for the Guild Union.#l \r\n#l 4#I want to break up the Guild Union.#l ");
else if (status == 1) {
choice = selection;
if (selection == 0) {
cm.sendNext("Guild Union is just as it says, a union of a number of guilds to form a super group. I am in charge of managing these Guild Unions.");
cm.dispose();
} else if (selection == 1) {
cm.sendNext("To make a Guild Union, 2 Guild Masters need to be in a party. The leader of this party will be assigned as the Guild Union Master.");
cm.dispose();
} else if(selection == 2) {
if (cm.getPlayer().getParty() == null) {
cm.sendNext("You may not create an alliance until you get into a party of 2 people"); //Not real text
cm.dispose();
} else if (partymembers.get(0).getGuild() == null) {
cm.sendNext("You cannot form a Guild Union until own have a guild");
cm.dispose();
} else if (partymembers.get(1).getGuild() == null) {
cm.sendNext("You're party member does not seem to have a guild.");
cm.dispose();
} else if (partymembers.get(0).getGuild().getAllianceId() > 0) {
cm.sendNext("You cannot form a Guild Union if you are already affiliated with a different Union.");
cm.dispose();
} else if (partymembers.get(1).getGuild().getAllianceId() > 0) {
cm.sendNext("Your party member is already affiliated with a guild");
cm.dispose();
} else if (partymembers.size() != 2) {
cm.sendNext("Please make sure there are only 2 players in your party.");
cm.dispose();
} else if (cm.partyMembersInMap() != 2) {
cm.sendNext("Get your other party member on the same map please.");
cm.dispose();
} else
cm.sendYesNo("Oh, are you interested in forming a Guild Union?");
} else if (selection == 3) {
var rank = cm.getPlayer().getMGC().getAllianceRank();
if (rank == 1)
cm.sendOk("Not done yet"); //ExpandGuild Text
else {
cm.sendNext("Only the Guild Union Master can expand the number of guilds in the Union.");
cm.dispose();
}
} else if(selection == 4) {
var rank = cm.getPlayer().getMGC().getAllianceRank();
if (rank == 1)
cm.sendYesNo("Are you sure you want to disband your Guild Union?");
else {
cm.sendNext("Only the Guild Union Master may disband the Guild Union.");
cm.dispose();
}
}
} else if(status == 2) {
if (choice == 2) {
cm.sendGetText("Now please enter the name of your new Guild Union. (max. 12 letters)");
} else if (choice == 4) {
if (cm.getPlayer().getGuild() == null) {
cm.sendNext("You cannot disband a non-existant Guild Union.");
cm.dispose();
} else if (cm.getPlayer().getGuild().getAllianceId() <= 0) {
cm.sendNext("You cannot disband a non-existant Guild Union.");
cm.dispose();
} else {
MapleAlliance.disbandAlliance(cm.getC(), cm.getPlayer().getGuild().getAllianceId());
cm.sendOk("Your Guild Union has been disbanded");
cm.dispose();
}
}
} else if (status == 3) {
guildName = cm.getText();
cm.sendYesNo("Will "+ guildName + " be the name of your Guild Union?");
} else if (status == 4) {
if (!MapleAlliance.canBeUsedAllianceName(guildName)) {
cm.sendNext("This name is unavailable, please choose another one"); //Not real text
status = 1;
choice = 2;
} else {
if (MapleAlliance.createAlliance(partymembers.get(0), partymembers.get(1), guildName) == null)
cm.sendOk("An unknown system error has occured");
else
cm.sendOk("You have successfully formed a Guild Union.");
cm.dispose();
}
}
}
Re: [HELP]Guild Alliance Expand bug
Selection 3 (3#I want to add more guilds for the Guild Union.)
Line 61. Replace cm.sendOk("Not done yet"); //ExpandGuild Text with expand Alliance method.
Re: [HELP]Guild Alliance Expand bug
Quote:
Originally Posted by
EndlessNetwork
Selection 3 (3#I want to add more guilds for the Guild Union.)
Line 61. Replace cm.sendOk("Not done yet"); //ExpandGuild Text with expand Alliance method.
Sorry I'm a newbie, what do you mean by Alliance Method? Most apprieciated :D
Re: [HELP]Guild Alliance Expand bug
"expand Alliance method" mean a java function that let you expand you Alliance capacity.
**I can't do it for you because I failed Java :D