Hey there. Just scriped a small NPC, that warps you to your Donator's Island, if you have one. It checks to see if you have a Maple Coin first, but you can change that. Hope you like it x3
Maple Coin : 4001129Code:/* By SavageSteez / Mushx3 from Ragezone */ /* Shanks Warp NPC to Donators Island (50000) located in Southperry (60000) */ var status = 0; function start() { status = -1; action(1, 0, 0); } function action(mode, type, selection) { if (mode == -1) { cm.dispose(); } else { if (status >= 2 && mode == 0) { cm.sendOk("Alright, come back when you have a Maple Coin."); cm.dispose(); return; } if (mode == 1) status++; else status--; if (status == 0) { cm.sendNext("Have you contributed to the server lately? If you have, click next."); } else if (status == 1) { cm.sendNextPrev("I can take you to #dDonators Island#k where you'll find magical monsters that drop great items! Some of these items might even benefit you in the future.") } else if (status == 2) { if (cm.haveItem(4001129) == false) { cm.sendOk("You don't have the #rMaple Coin#k. You need the #rMaple Coin#k to access #dDonators Island#k.") cm.dispose(); } else { cm.sendYesNo("So, do you want to take the journey down to #dDonators Island?#k"); } } else if (status == 3) { cm.gainItem(4001129, -1); cm.warp(50000, 0); cm.dispose(); } } }
Donator's Island : 50000 (A Split Road)
Note: Sorry I do not have screens, my server files got all messed up, and I am unable to log in, but this script works 100%



Reply With Quote


