afreckle Member
Posts : 18 Join date : 2012-05-16 Age : 31
| Subject: afreckle's GM app Wed May 16, 2012 3:19 am | |
| Name / IGN: Steven / (will be afreckle)Age: 18 (probs gonna be oldest player =.= )Gender: Male (was tempted to put "Unknown" lol)Country/Time Zone: Australia / GMT +10Have you ever been a GM on another server? If yes, what server were you a GM in?(Post picture if possible) : Yes: MapleTaste, EldestMS, GrapeMS, MapleLight (which I hosted) Sorry, no pictures because I didn't take any (but I believe that good GMs don't need pictures as proof of their ability, but their actions in the server (try me out if you're really not sure )) I try to please everyone while still being fair to others, and this makes me a good person to have around if personal issues start affecting other players in the form of arguments. On EldestMS, I managed to convince the hoster to continue hosting the server on his computer after he kept complaining that other players and even GMs weren't giving him enough "respect". I managed to achieve this by kind of acting as the middleman between him and other people, eventually coming to a compromise that everyone agreed on. This shows that I try and keep an online community happy while being mature about it Are you familiar with all the GM commands? : Mostly, because I hosted my own server (SupremeMS repack) and took a look at the set of commands that came with it which seems to be widely used in MapleStory private servers. However, a lot of the time new commands (or commands with different call names which do the same thing) are implemented in servers, so you guys might have some that I haven't seen before.
- Some commands i'm familiar with:
- !proitem <item id> <stat value> = spawns <item> in the user's inventory with ALL stats at a value of <stat value>
- !proitem2 <item id> <stat value> = spawns <item> in the user's inventory with just STR, DEX, INT, LUK stats of <stat value>
- !event = opens the event portal in that map for players to go into the event via @joinevent
- !warp <map id> <portal number> = transports the user to <map> at the portal on the map designated by <portal number>
- !mutemap = toggles whether players can chat and let the map see their chat.
- !clock <time value> = starts the timer on that map that counts down from <time value> in seconds
- !cheaters = asks the server to detect whether anyone is being suspicious
- !online = gives a list of the names of online players (i always prefer this to be available to players because @online only tells you the number of players who are online. but you don't know their igns, so you can't contact them if you don't know their name/s.)
How many hours a day do you play? : 3-4 hours because I still got university to attend (but because of my timezone, it'd be most likely that I am online when the player numbers are lowest ) however, i can access the forums most of the time during the day, so i'll regularly be online here Do you promise not to give free items, spawn for people, nor give special treatment to your friends? : Yes, because I think that it'd cause dissension among regular players if some players are given 'special treatment' due to their connections (just like people cutting in a queue because they're friends with someone closer to the front of the queue =.= )How long have you been playing MapleStory for? (Dont lie) : Started when I was 12? (can't remember :/ ), played for a couple of years, kinda quit for a couple more years (cos of end of high school exams) so now I'm getting back into Maple (yay! )Have you ever been banned from another server? and why? (Tell the truth) : Yes (maybe 3-4 years ago?), because I used a trainer when playing a server with my sister. I got warned, turned off the trainer, but the effects (more damage) remained with my character and a GM saw the massive damage again For the record, I no longer have any hacks or trainers for MapleStory since I cleaned my laptop in preparation for my last 2 years of school.Additional information (like things you could do to help the server) : I used to code NPCs (but not well) so I could help out in that area until a real pro coder comes along Proof of newbie NPC coding: - Free boss spawner (MapleTaste):
- Code:
-
var Spawns = [9400549, 8800002, 9400203, 9420513, 9500124, 9400575];
function start() { cm.sendSimple("Hello #r#h ##k! I am the #gMapleTaste#k Boss Spawner, please choose a boss. \r\n #L0##rHeadless horseman#k #l\r\n \r\n #L1##rZakum#k #l\r\n \r\n #L2##rSilver Slime#k #l \r\n \r\n #L3##rCapt.Latinica#k #l\r\n \r\n #L4##rMushMom#k #l\r\n \r\n #L5##rBigfoot#k #l\r\n \r\n#L6##rKill Mobs#k"); }
function action(m, t, s) { if(m > 0) { if (s >= 0 && s <= 5) { cm.summonMob(Spawns[s], 5); } } else { cm.killAllMobs(); } cm.dispose(); } cm.dispose(); }
- Event trophy exchanger (VadeStory):
- Code:
-
var status;
function start() { status = -1; action(1, 0, 0); }
function action(mode, type, selection) { if (mode == 1) { status++; }else{ status--; } if (status == 0) { cm.sendSimple("Hello. Would you like to trade:\r\n #L0# 1 Event Trophy for 5 Slime Erasers #l \r\n #L1# 1 Slime Eraser for 5 Event Trophies #l"); } else if (status == 1) { if (selection == 0) { if (cm.haveItem(4000038, 1)) { cm.gainItem(4001013, 5); cm.gainItem(4000038, -1); cm.sendOk("Enjoy your Slime Erasers."); cm.dispose(); }else{ cm.sendOk("I'm sorry, you don't have 1 Event Trophy."); cm.dispose(); } } else if (selection == 1) { if(cm.haveItem(4001013, 1)) { cm.gainItem(4000038, 5); cm.gainItem(4001013, -1); cm.sendOk("Enjoy your Event Trophies."); cm.dispose(); }else{ cm.sendOk("I'm sorry, you don't have 1 Slime Eraser."); cm.dispose(); } } }
- NX seller for mesos (VadeStory):
- Code:
-
var status;
function start() { status = -1; action(1, 0, 0); }
function action(mode, type, selection) { if (mode == 1) { status++; }else{ status--; } if (status == 0) { cm.sendSimple("Hello I am the NX trader. Would you like to get NX for mesos?\r\n #L0# 10k NX for 10k Mesos #l \r\n #L1# 25k NX for 25k Mesos #l \r\n #L2# 50k NX for 50k Mesos #l"); } else if (status == 1) { if (selection == 0) { if (cm.getMeso() >= 10000) { cm.getChar().modifyCSPoints(1, 10000); cm.gainMeso(-10000); cm.sendOk("Enjoy your NX."); cm.dispose(); }else{ cm.sendOk("I'm sorry, you don't have 10k mesos."); cm.dispose(); } } else if (selection == 1) { if(cm.getMeso() >= 25000) { cm.getChar().modifyCSPoints(1, 25000); cm.gainMeso(-25000); cm.sendOk("Enjoy your NX."); cm.dispose(); }else{ cm.sendOk("I'm sorry, you don't have 25k mesos."); cm.dispose(); } } else if (selection == 2) { if(cm.getMeso() >= 50000) { cm.getChar().modifyCSPoints(1, 50000); cm.gainMeso(-50000); cm.sendOk("Enjoy your NX."); cm.dispose(); }else{ cm.sendOk("I'm sorry, you don't have 50k mesos."); cm.dispose(); } } } } Do you agree that if you get caught breaking a rule you will be instantly demoted with no warnings? : I'd abide by the higher-ups' rulings but if there's not a legitimate reason for the action, I'd argue to my best abilities for a fair chance to know where I'd went wrong.
Last edited by afreckle on Thu May 17, 2012 4:54 am; edited 1 time in total | |
|
Dubstep Member
Posts : 42 Join date : 2012-05-13 Age : 24 Location : Somewhere in your ass
| Subject: Re: afreckle's GM app Wed May 16, 2012 8:06 am | |
| That is a pretty nice application I have support for you ,but try to make it more longer more details pl0x +1
| |
|
afreckle Member
Posts : 18 Join date : 2012-05-16 Age : 31
| |
Dubstep Member
Posts : 42 Join date : 2012-05-13 Age : 24 Location : Somewhere in your ass
| Subject: Re: afreckle's GM app Thu May 17, 2012 7:35 am | |
| Good luck man I hope you join the team | |
|
afreckle Member
Posts : 18 Join date : 2012-05-16 Age : 31
| |
Sponsored content
| Subject: Re: afreckle's GM app | |
| |
|