Hey guys,
I just wanted to share it with you.
I fount a boss summoner somewhere for FM 22 Some poeple have it but theres people that doesnt have it.
Anyway, Here it is :
PHP Code:
var price = 25000 * cm.getC().getChannelServer().getMesoRate();
var mob = Array(8500001, 8510000, 9400014, 9400121, 9400112);
function start() {
cm.sendSimple("I am the boss summoner of FM22! Would you like me to spawn some bosses for you? The price to summon monsters is " + price + " mesos. \r\n Please choose #b\r\n#L0#Papulatus clock#l\r\n#L1#Pianus#l\r\n#L2#Black Crow#l\r\n#L3#Anego#l\r\n#L4#BodyGuard A#l#k");
}
//0: pap 1: pianus 2: crow 3: anego 4: bodyguard a
function action(mode, type, selection) {
if (cm.getMeso > price) {
cm.summonMobAtPosition(mob[selection], 1, 655, -146);
cm.gainmeso(-price);
} else {
cm.sendSimple("You do not have enough mesos.");
}
cm.dispose();
}
Credits go to Moogra.