Reformat and clean up npc scripts
This commit is contained in:
@@ -19,12 +19,12 @@
|
||||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
var toMap = new Array(211040200, 220050300, 220000000, 240030000);
|
||||
var inMap = new Array(211000000, 220000000, 221000000, 240000000);
|
||||
var cost = new Array(10000, 25000, 25000, 65000);
|
||||
var toMap = [211040200, 220050300, 220000000, 240030000];
|
||||
var inMap = [211000000, 220000000, 221000000, 240000000];
|
||||
var cost = [10000, 25000, 25000, 65000];
|
||||
var location;
|
||||
var status;
|
||||
|
||||
|
||||
function start() {
|
||||
status = -1;
|
||||
action(1, 0, 0);
|
||||
@@ -39,23 +39,23 @@ function action(mode, type, selection) {
|
||||
cm.dispose();
|
||||
return;
|
||||
}
|
||||
if (mode == 1)
|
||||
if (mode == 1) {
|
||||
status++;
|
||||
else
|
||||
} else {
|
||||
status--;
|
||||
}
|
||||
|
||||
if(status == 0) {
|
||||
for (var i = 0; i < toMap.length; i ++) {
|
||||
if (status == 0) {
|
||||
for (var i = 0; i < toMap.length; i++) {
|
||||
if (inMap[i] == cm.getPlayer().getMap().getId()) {
|
||||
location = i;
|
||||
break;
|
||||
}
|
||||
}
|
||||
cm.sendNext("Hello there! This taxi will take you to dangerous places in Ossyria faster than an arrow! We go from #m" + inMap[location] + "# to #b#m"+toMap[location]+"##k on this Ossyria Continent! It'll cost you #b"+ cost[location] +" meso#k. I know it's a bit expensive, but it's well worth passing all the dangerous areas!");
|
||||
}
|
||||
else if (status == 1)
|
||||
cm.sendYesNo("Would you like to pay #b"+ cost[location] +" mesos#k to travel to the #b#m"+toMap[location]+"##k?");
|
||||
else if (status == 2) {
|
||||
cm.sendNext("Hello there! This taxi will take you to dangerous places in Ossyria faster than an arrow! We go from #m" + inMap[location] + "# to #b#m" + toMap[location] + "##k on this Ossyria Continent! It'll cost you #b" + cost[location] + " meso#k. I know it's a bit expensive, but it's well worth passing all the dangerous areas!");
|
||||
} else if (status == 1) {
|
||||
cm.sendYesNo("Would you like to pay #b" + cost[location] + " mesos#k to travel to the #b#m" + toMap[location] + "##k?");
|
||||
} else if (status == 2) {
|
||||
if (cm.getMeso() < cost[location]) {
|
||||
cm.sendNext("You don't seem to have enough mesos. I am terribly sorry, but I cannot help you unless you pay up. Bring in the mesos by hunting more and come back when you have enough.");
|
||||
} else {
|
||||
|
||||
Reference in New Issue
Block a user