[Dragon] Dojo Working Warper
5 posters
Page 1 of 1
[Dragon] Dojo Working Warper
Dojo is a fun way to level if your using MoopleDEV Source.
However; there is no quick way to get there.
This NPC is for beginner scripters, it allows players to warp to Dojo only if they meet the level requirements (25+).
However; there is no quick way to get there.
This NPC is for beginner scripters, it allows players to warp to Dojo only if they meet the level requirements (25+).
- Code:
function start() {
cm.sendSimple ("I can bring you to the Dojo... \r\n#L0##e What is Dojo?#n#l\r\n#L1##e Warp me now!#n#l#k");
}
function action(mode, type, selection) {
cm.dispose();
switch(selection){
case 0:
if(cm.getLevel() >= 25){
cm.sendOk("Dojo is a fun and creative way to level and gain items!");
cm.dispose();
}else{
cm.sendOk("You must be level 25 to research the Dojo and participate in it's events.");
cm.dispose();
}
break;
case 1:
if (cm.getLevel() >= 25){
cm.warp(925020000, 0);
cm.sendOk("Good luck! Type @fm to return to familiar territory!");
cm.dispose();
}else{
cm.sendOk("You must be level 25 to participate in the Dojo!");
cm.dispose();
}
break;
}
}
Ownage- Posts : 4
Points : 10
Reputation : 0
Join date : 2011-02-19
Re: [Dragon] Dojo Working Warper
I highly doubt dojo will ever be added as belts from dojo can only be obtained by npc in fm1
Mark- Listen Me.
- Posts : 138
Points : 169
Reputation : 4
Join date : 2011-02-18
Age : 30
Location : England
Re: [Dragon] Dojo Working Warper
Mark wrote:I highly doubt dojo will ever be added as belts from dojo can only be obtained by npc in fm1
What Mark said.
Chase- Co-Owner of CosmoMs
- Posts : 81
Points : 126
Reputation : 7
Join date : 2011-02-21
Location : In Rachel's bed, tucked under her blanket.
Re: [Dragon] Dojo Working Warper
I wasn't aware break; is needed. Also, its'*
Dojo doesn't necessarily have to be coded for belts though.
Dojo doesn't necessarily have to be coded for belts though.
SimplyNhoj- Posts : 10
Points : 18
Reputation : 0
Join date : 2011-02-21
Re: [Dragon] Dojo Working Warper
@Ownage, Thnx for the script and idea anyways.
[ᴬ¹] ᴹᶤᶜʰᵉˡˡᵉ ᵇᵉᵃʳ- Listen Me.
- Posts : 117
Points : 110
Reputation : 2
Join date : 2011-02-17
Age : 29
Location : After the cake.
Page 1 of 1
Permissions in this forum:
You cannot reply to topics in this forum