|
| xYou's GM Application @ TrueStory | |
| | |
Author | Message |
---|
xYou New
Number of posts : 14 Age : 27 In game Name : xYou Registration date : 2009-01-18
| Subject: xYou's GM Application @ TrueStory Sun Jan 18, 2009 11:50 am | |
| Where you are from? I'ma from Singapore
Have you had experience before? I'ma a experience GM(Admin of VampireMS.. I closed it down)
Why should we pick you? Because I can code , script, compile and catch Hackers very fast
Why do you want to become a GM? I want to become a GM because I want to help people and teach them if they are new @ TrueStory and I wish to be able to help TrueStory growing.
Where have you played before? (Don't quite understand what this question means..Sorry)
Are you fermilliar with the commands? Yes, I do. I have a godly GM handbook which have all command inside.
How do you react on other people their questions? I will reply them ASAP when 1 SMEGA was maded @ TrueStory.
Something about myself : Well, my english wasn't that great and I still @ primary school.. Having PSLE this year, well i still can be Active as no one expected... Except for school day.. I'ma a boy..I can cope my homework and playing TrueStory.. I won't be affected in study by becoming a GM in TrueStory.. (Something Special: I can talk as a normal player even though i am a GM..)
Well that the end of my application, I know it is kinda short.. Please let me be a GM at TrueStory. | |
| | | Faithless Owner
Number of posts : 704 Age : 32 Location : Holland In game Name : Faithless Registration date : 2008-10-18
| Subject: Re: xYou's GM Application @ TrueStory Sun Jan 18, 2009 11:54 am | |
| 1. You can't call all commands cuz i made some myself too. 2. Any example of your scripting? | |
| | | xYou New
Number of posts : 14 Age : 27 In game Name : xYou Registration date : 2009-01-18
| Subject: Re: xYou's GM Application @ TrueStory Sun Jan 18, 2009 11:56 am | |
| Well.. if you want an example of my scripting.. you have to be stright to me like.. NPC scripting , Event Scripting, Editing Scripting, etc. | |
| | | Faithless Owner
Number of posts : 704 Age : 32 Location : Holland In game Name : Faithless Registration date : 2008-10-18
| Subject: Re: xYou's GM Application @ TrueStory Sun Jan 18, 2009 11:57 am | |
| NPC scripting or source scripting | |
| | | xYou New
Number of posts : 14 Age : 27 In game Name : xYou Registration date : 2009-01-18
| Subject: Re: xYou's GM Application @ TrueStory Sun Jan 18, 2009 11:59 am | |
| What type de like quest, Giving eq. etc? | |
| | | Faithless Owner
Number of posts : 704 Age : 32 Location : Holland In game Name : Faithless Registration date : 2008-10-18
| Subject: Re: xYou's GM Application @ TrueStory Sun Jan 18, 2009 12:00 pm | |
| Quest or something just do something | |
| | | xYou New
Number of posts : 14 Age : 27 In game Name : xYou Registration date : 2009-01-18
| Subject: Gambling Npc Sun Jan 18, 2009 12:04 pm | |
| /* */
importPackage(net.sf.odinms.client);
var status = 0; var fee; var chance = Math.floor(Math.random()*4+1);
function start() { status = -1; action(1, 0, 0); }
function action(mode, type, selection) { if (mode == -1) { cm.dispose(); } else { if (mode == 0) { cm.sendOk("Okay... See ya later"); cm.dispose(); return; } if (mode == 1) status++; else status--; if (status == 0) { cm.sendNext("Hello #h #! I am the Gambler NPC of #bTrueStory#k! If you would like to gamble... Please proceed"); } else if (status == 1) { cm.sendGetText("How much money would you like to gamble?"); } else if (status == 2) { fee = cm.getText(); cm.sendYesNo("Are you sure you want to gamble #r" + fee + "#k mesos?"); } else if (status == 3) { if (cm.getMeso() < fee) { cm.sendOk("You don't have enough mesos!"); cm.dispose(); } else if (cm.getMeso() >= 1050000000) { cm.sendOk("I'm sorry but... You can't gamble when you have 1,050,000,000 mesos or higher..."); cm.dispose(); } else if (cm.getText() < 0) { cm.sendOk("You can't gamble less than 0 mesos..."); cm.dispose(); } else { if (chance <= 1) { cm.gainMeso(-fee); cm.sendNext("Tough luck... Maybe next time you will win!"); cm.dispose(); } else if (chance == 2) { cm.gainMeso(-fee); cm.sendNext("Tough luck... Maybe next time you will win!"); cm.dispose(); } else if (chance == 3) { cm.gainMeso(-fee); cm.sendNext("Tough luck... Maybe next time you will win!"); cm.dispose(); } else if (chance >= 4) { cm.gainMeso(fee * 2); cm.sendNext("#rCONGRATUMAGALATIONS#k! You have won!"); cm.dispose(); } } } } } | |
| | | Faithless Owner
Number of posts : 704 Age : 32 Location : Holland In game Name : Faithless Registration date : 2008-10-18
| Subject: Re: xYou's GM Application @ TrueStory Sun Jan 18, 2009 12:09 pm | |
| | |
| | | xYou New
Number of posts : 14 Age : 27 In game Name : xYou Registration date : 2009-01-18
| Subject: Re: xYou's GM Application @ TrueStory Sun Jan 18, 2009 12:10 pm | |
| not completly, is you can't find the diffrence =_= | |
| | | Faithless Owner
Number of posts : 704 Age : 32 Location : Holland In game Name : Faithless Registration date : 2008-10-18
| Subject: Re: xYou's GM Application @ TrueStory Sun Jan 18, 2009 12:14 pm | |
| Only the TrueStory thingy O.o... | |
| | | xYou New
Number of posts : 14 Age : 27 In game Name : xYou Registration date : 2009-01-18
| Subject: Re: xYou's GM Application @ TrueStory Sun Jan 18, 2009 12:15 pm | |
| not only there.. you really can't see it ... | |
| | | xYou New
Number of posts : 14 Age : 27 In game Name : xYou Registration date : 2009-01-18
| Subject: Re: xYou's GM Application @ TrueStory Sun Jan 18, 2009 12:20 pm | |
| Command ____________________________________________________________________________________ } else if (splitted[0].equals("@game5")) { ResultSet rs = game5(); try { mc.dropMessage("Overall Top 5"); while (rs.next()) { mc.dropMessage("Player : " + rs.getString("name") + " | Levels :" + rs.getInt("level")); } } catch (Exception ex) { } c.getPlayer().saveToDB(true); (Don't copy this part, place this command under !blackcrow) ____________________________________________________________________________________Shop ____________________________________________________________________________________ INSERT INTO shopitems ( shopid, itemid, price, position ) VALUES ( 333333, 1040138, 1, 1); INSERT INTO shopitems ( shopid, itemid, price, position ) VALUES ( 333333, 1041139, 1, 2); INSERT INTO shopitems ( shopid, itemid, price, position ) VALUES ( 333333, 1060121, 1, 3); INSERT INTO shopitems ( shopid, itemid, price, position ) VALUES ( 333333, 1061142, 1, 4); INSERT INTO shopitems ( shopid, itemid, price, position ) VALUES ( 333333, 1072328, 1, 5); INSERT INTO shopitems ( shopid, itemid, price, position ) VALUES ( 333333, 1702150, 1, 6); INSERT INTO shopitems ( shopid, itemid, price, position ) VALUES ( 333333, 1702150, 1, 7); INSERT INTO shopitems ( shopid, itemid, price, position ) VALUES ( 333333, 1102149, 1, ; INSERT INTO shopitems ( shopid, itemid, price, position ) VALUES ( 333333, 1040137, 1, 9); INSERT INTO shopitems ( shopid, itemid, price, position ) VALUES ( 333333, 1041138, 1, 10); INSERT INTO shopitems ( shopid, itemid, price, position ) VALUES ( 333333, 1060120, 1, 11); INSERT INTO shopitems ( shopid, itemid, price, position ) VALUES ( 333333, 1061141, 1, 12); INSERT INTO shopitems ( shopid, itemid, price, position ) VALUES ( 333333, 1072327, 1, 13); INSERT INTO shopitems ( shopid, itemid, price, position ) VALUES ( 333333, 1702149, 1, 14); INSERT INTO shopitems ( shopid, itemid, price, position ) VALUES ( 333333, 1102148, 1, 15); INSERT INTO shops (`shopid`, `npcid`) VALUES (333333, 9201003); | |
| | | Faithless Owner
Number of posts : 704 Age : 32 Location : Holland In game Name : Faithless Registration date : 2008-10-18
| Subject: Re: xYou's GM Application @ TrueStory Sun Jan 18, 2009 12:22 pm | |
| This reminds to to a repack.. Oh wait it is! also leached..
and again from RageZone.. | |
| | | Faithless Owner
Number of posts : 704 Age : 32 Location : Holland In game Name : Faithless Registration date : 2008-10-18
| Subject: Re: xYou's GM Application @ TrueStory Sun Jan 18, 2009 12:24 pm | |
| Just one simple question, what is - Quote :
- function start() {
? | |
| | | xYou New
Number of posts : 14 Age : 27 In game Name : xYou Registration date : 2009-01-18
| Subject: Re: xYou's GM Application @ TrueStory Sun Jan 18, 2009 12:27 pm | |
| You need that to make the things work.. it is something that like double clicking on the NPC and make the npc chat all those( i not to sure with it.. I learned it from my repack so i put it in all my npcs chat. ) | |
| | | Faithless Owner
Number of posts : 704 Age : 32 Location : Holland In game Name : Faithless Registration date : 2008-10-18
| Subject: Re: xYou's GM Application @ TrueStory Sun Jan 18, 2009 12:29 pm | |
| Lets do it diffrent if you do: - Quote :
- Function start () {
cm.sendSimple(Hello what does this do? \r\n#L0#Im used for?"); } | |
| | | xYou New
Number of posts : 14 Age : 27 In game Name : xYou Registration date : 2009-01-18
| Subject: Re: xYou's GM Application @ TrueStory Sun Jan 18, 2009 12:31 pm | |
| don't get what you mean =_= | |
| | | Faithless Owner
Number of posts : 704 Age : 32 Location : Holland In game Name : Faithless Registration date : 2008-10-18
| Subject: Re: xYou's GM Application @ TrueStory Sun Jan 18, 2009 12:37 pm | |
| If you place that s NPC script what should he say and what would he do? | |
| | | xYou New
Number of posts : 14 Age : 27 In game Name : xYou Registration date : 2009-01-18
| Subject: Re: xYou's GM Application @ TrueStory Sun Jan 18, 2009 12:40 pm | |
| you mean like.. explaination of all NPC & Game arh? | |
| | | Faithless Owner
Number of posts : 704 Age : 32 Location : Holland In game Name : Faithless Registration date : 2008-10-18
| Subject: Re: xYou's GM Application @ TrueStory Sun Jan 18, 2009 12:41 pm | |
| ye. just say what he should say and where it's used for... It's so easy.. | |
| | | xYou New
Number of posts : 14 Age : 27 In game Name : xYou Registration date : 2009-01-18
| Subject: Re: xYou's GM Application @ TrueStory Sun Jan 18, 2009 12:44 pm | |
| This quite hard.. give me a few hr.. | |
| | | Faithless Owner
Number of posts : 704 Age : 32 Location : Holland In game Name : Faithless Registration date : 2008-10-18
| Subject: Re: xYou's GM Application @ TrueStory Sun Jan 18, 2009 12:45 pm | |
| LOL You can't script. just put it out of your head. | |
| | | xYou New
Number of posts : 14 Age : 27 In game Name : xYou Registration date : 2009-01-18
| Subject: Re: xYou's GM Application @ TrueStory Sun Jan 18, 2009 1:10 pm | |
| /* Scripted By xYou of TrueMS */
var status = -1;
function start() { status = -1; action(1, 0, 0); }
function action(mode, type, selection) { if (mode == 1) status++; if (status == 0) { cm.sendSimple("#bWelcome to TrueMS V.55, I am the Ultimate helpful NPC. What do you need? \b\r\n#L0#What are the server rates?\n\#l\b\r\n#L1#Who are the Gms of this server?\n\#l\b\r\n#L2#What are some of the useful npc?\n\#l\b\r\n#L3#Nevermind I don't need anything.\n\#l") } else if (status == 1) { if (selection == 0) { cm.sendOk("#b Server Rates\r\n\#i1702136 \r\n\ Exp - 750x \r\n\#i1702136 \r\n\ Meso - 500x \r\n\#i1702136 \r\n\ Drop - 25x"); } else if (selection == 1) { cm.sendOk("#r Official Gm List\r\n\#i1000009 \r\n\ FaithLess - Owner \r\n\#i1000009 \r\n\ Jason - GM \r\n\#i1000009 \r\n\ Element - Gm \r\n\#i1000009 \r\n\ Ancient - Gm"); } else if (selection == 2) { cm.sendOk("#d Useful NPCs in TrueMS\r\n\#i2000005 \r\n\ Spinel - Warper \r\n\#i2000005 \r\n\ Amos The Strong - Boss Warper \r\n\#i2000005 \r\n\ Cody - Job Advance \r\n\#i2000005 \r\n\ Duey- Skill Maxer \r\n\#i2000005 \r\n\ Nana(O) - Ap resetter"); } else if (selection == 3) { cm.sendOk("#k Happy Mapling at TrueStory, Remember don't hack\r\n\#i1702136 \r\n\ Credits : xYou for making me"); cm.dispose(); } cm.dispose(); } }
______________________________________________________________________________________Alright.. quite messy because i did in Notepad... DO I GET THE JOB NOW? | |
| | | Faithless Owner
Number of posts : 704 Age : 32 Location : Holland In game Name : Faithless Registration date : 2008-10-18
| Subject: Re: xYou's GM Application @ TrueStory Sun Jan 18, 2009 1:13 pm | |
| Reminds me to RageZone O.O | |
| | | xYou New
Number of posts : 14 Age : 27 In game Name : xYou Registration date : 2009-01-18
| Subject: Re: xYou's GM Application @ TrueStory Sun Jan 18, 2009 1:35 pm | |
| /* Scripted By xYou of TrueMS */
var status = -1;
function start() { status = -1; action(1, 0, 0); }
function action(mode, type, selection) { if (mode == 1) status++; if (status == 0) { cm.sendSimple("Hi...I warp you to the FM"); cm.warp 910000000 cm.dispose(); } cm.dispose(); } } | |
| | | Sponsored content
| Subject: Re: xYou's GM Application @ TrueStory | |
| |
| | | | xYou's GM Application @ TrueStory | |
|
Similar topics | |
|
| Permissions in this forum: | You cannot reply to topics in this forum
| |
| |
| |