Meso bank!!!! and how to put it in fm!!!!!

Joined
Aug 13, 2009
Messages
1
Reaction score
0
first go to ur script file choose npc folder then search for 1022003
if u didnt find it copy any id and past it it should be theidcopy.jce then rename it 1022003 then delete everything and replace it with this

Code:
var status = 0;
var selected;
var fee;

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

function action(mode, type, selection) {
	if (mode == -1) {
		cm.dispose();
	} else {
		if (mode == 0) {
			cm.sendOk("Later.");
			cm.dispose();
			return;
		}
		if (mode == 1)
			status++;
		else
			status--;
		if (status == 0) {
			cm.sendNext("Hello #h #, I am the NX seller of MadMS.");
		} else if (status == 1) {
			cm.sendGetText("How much NX do you wish to purchase?\r\nRemember, NX costs 80mil mesos per 3k NX.");
		} else if (status == 2) {
			selected = cm.getText();
			fee = cm.getText() * 1000;
			cm.sendYesNo("Are you sure you want to buy " + selected + " NX for " + fee + " mesos?, #h #?");
		} else if (status == 3) {
			if (cm.getMeso() < fee) {
				cm.sendOk("You dont have enough money.  Go get a job you bum!");
				cm.dispose();
			} else {
                cm.modifyNX(selected, 0);
				cm.gainMeso(selected * -30000);
				cm.sendNext("Done! You have now received " + selected + " NX and " + fee + " mesos have been deducted from your account.");
			}
		} else if (status == 4) {
			cm.sendOk("Have fun.\r\n\r\n\r\n")
            cm.dispose();
		}
	}
}

to put it in npc go to wiz folder choose map.wiz then choose map then choose map9 search for 910000000.img open in it with notepad then search for life under life past this:-

Code:
</imgdir>
<imgdir name="9">
   <string name="type" value="n"/>
   <string name="id" value="1022003"/>
   <int name="x" value="1256"/>
   <int name="y" value="266"/>
   <int name="mobTime" value="0"/>
   <int name="f" value="0"/>
   <int name="hide" value="0"/>
   <int name="fh" value="40"/>
   <int name="cy" value="34"/>
   <int name="rx0" value="1306"/>
   <int name="rx1" value="1206"/>

ur done!!! ;D :laugh::laugh::laugh::blush::blush:
 
Back