[Release]NPC for EVENT(: another idea :X

Newbie Spellweaver
Joined
Jul 7, 2008
Messages
34
Reaction score
1
Woos, okays i've made another NPC. This NPC is VIP cab :D and this how it works.
First : It will talk to you and say that it is Event Room Warper [: & check with GMs to make sure there is an event.
Second : It will be needed a EVENT ticket. so GMs must throw them for players when there is a EVENT.
Third/Last : It will warps you and takes away the event ticket (: if it ends chat or pressing esc it will say to remember to join the Event next time [:

I've attached the file because i don't know how to make LINKS Locked for users to see [:
sooooo anyone can teach me next time ! :D..
 

Attachments

Advantage is you just drop all the ticket at one go for players to loot.
but you can just warp players too~

Good job nevertheless~
 
Wow...
PHP:
function start() {
    cm.sendYesNo("Do you want to go to the event map?\r\nPlease check with the #eGM's#k to make sure there's any event goin' on, and you'll need an #z5220001# to enter!");
}

function action(mode, type, selection) {
    if (mode == 1) {
        if (cm.haveItem(5220001,1)) {
            cm.warp(200090010,0);
            cm.gainItem(5220001,-1);
        } else {
            cm.sendOk("You don't have an event ticket!");
        }
        cm.dispose();
    }
}
 
Back