MusicalStory

Would you like to react to this message? Create an account in a few clicks or log in to continue.
MusicalStory

5 posters

    [Coder] Russia's Application

    Russia
    Russia
    Member
    Member


    Posts : 11
    Join date : 2009-02-05

    [Coder] Russia's Application Empty [Coder] Russia's Application

    Post  Russia Thu Feb 05, 2009 4:59 am

    Name: Russia or John

    Age: 14

    Timezone: EST

    Examples of your coding: I've made a bunch of NPC's, ran two of my own servers (one C++ and one Odin based). I could never get them online though and gave up. I've coded for another server before called RedMoonMS, which recently died, so I'm looking for a new server to work for. I can do some work with commands, but I'm best with making NPC's. I don't like to release my work, I like to keep it private.

    Contact:AIM - safecracker555
    MSN - russiancoder@hotmail.com
    E-Mail - safecracker555@aim.com

    Can you take pressure?: Lots of it. Ive coded for a server before, as well as made my own, so I know how to make the players happy, as well as get a server back up and running as soon as possible if it crashes. All under lots of pressure.

    Can you work good with others?: Yes I can.

    Others: I'm not the god of coding, but I'm not terrible. Give me a chance, and I'm sure you'll be happy you did. Very Happy If you have any questions, post them and I'll answer Very Happy Also, I have lots of friends that code and do it very well, so if I cant figure something out, my friends will be able to.
    Admin
    Admin
    Administrator
    Administrator


    Posts : 61
    Join date : 2008-12-26
    Age : 34
    Location : Malaysia

    [Coder] Russia's Application Empty Re: [Coder] Russia's Application

    Post  Admin Thu Feb 05, 2009 5:31 pm

    I know RedMoonMS, but before I accepting you, please show me some example. Any NPC will do, just show me a fast and easy NPC.
    Russia
    Russia
    Member
    Member


    Posts : 11
    Join date : 2009-02-05

    [Coder] Russia's Application Empty Re: [Coder] Russia's Application

    Post  Russia Thu Feb 05, 2009 10:45 pm

    Umm... Here's a script for a regular taxi? Easiest thing I could think of.

    //Henesys Taxi ~Coded By Russia~

    var status = 0;
    var maps = Array(104000000, 102000000, 100000000, 103000000, 101000000);
    var cost = Array(1200, 1000, 1000, 1200, 1000);
    var costBeginner = Array(120, 100, 100, 120, 100);
    var selectedMap = -1;
    var job;

    importPackage(net.sf.odinms.client);

    function start() {
    status = -1;
    action(1, 0, 0);
    }

    function action(mode, type, selection) {
    if (mode == -1) {
    cm.dispose();
    } else {
    if (status == 1 && mode == 0) {
    cm.dispose();
    return;
    } else if (status >= 2 && mode == 0) {
    cm.sendNext("There's a lot to see in this town, too. Come back and find us when you need to go to a different town.");
    cm.dispose();
    return;
    }
    if (mode == 1)
    status++;
    else
    status--;
    if (status == 0) {
    cm.sendNext("Hey, how's it going? I'm the Henesys Taxi. I'll take you to some places. Where would you like to go?");
    } else if (status == 1) {
    if (cm.getJob().equals(net.sf.odinms.client.MapleJob.BEGINNER)) {
    var selStr = "We have a special 90% discount for beginners. Choose your destination, for fees will change from place to place.#b";
    for (var i = 0; i < maps.length; i++) {
    selStr += "\r\n#L" + i + "##m" + maps[i] + "# (" + costBeginner[i] + " mesos)#l";
    }
    } else {
    var selStr = "Choose your destination, for fees will change from place to place.#b";
    for (var i = 0; i < maps.length; i++) {
    selStr += "\r\n#L" + i + "##m" + maps[i] + "# (" + cost[i] + " mesos)#l";
    }
    }
    cm.sendSimple(selStr);
    } else if (status == 2) {
    cm.sendYesNo("You don't have anything else to do here, huh? Do you really want to go to #b#m" + maps[selection] + "##k? It'll cost you #b"+ cost[selection] + " mesos#k.");
    selectedMap = selection;
    } else if (status == 3) {
    if (cm.getJob().equals(net.sf.odinms.client.MapleJob.BEGINNER)) {
    if (cm.getMeso() < costBeginner[selection]) {
    cm.sendNext("You don't have enough mesos.");
    cm.dispose();
    } else {
    cm.gainMeso(-costBeginner[selectedMap]);
    }
    } else {
    if (cm.getMeso() < cost[selection]) {
    cm.sendNext("You don't have enough mesos.");
    cm.dispose();
    } else {
    cm.gainMeso(-cost[selectedMap]);
    }
    cm.warp(maps[selectedMap], 0);
    cm.dispose();
    }
    }
    }
    }

    I took most of this from the files I still have from my old server, but I changed alot of stuff.
    Mickyz
    Mickyz
    Member
    Member


    Posts : 44
    Join date : 2009-01-26
    Age : 34
    Location : Malaysia a.k.a Paradise Town

    [Coder] Russia's Application Empty Re: [Coder] Russia's Application

    Post  Mickyz Thu Feb 05, 2009 11:42 pm

    Good Luck Russia^^
    xImage
    xImage
    Member
    Member


    Posts : 21
    Join date : 2009-02-02

    [Coder] Russia's Application Empty Re: [Coder] Russia's Application

    Post  xImage Fri Feb 06, 2009 1:04 am

    Looking good and nice ^^

    Good luck bud Smile
    Russia
    Russia
    Member
    Member


    Posts : 11
    Join date : 2009-02-05

    [Coder] Russia's Application Empty Re: [Coder] Russia's Application

    Post  Russia Fri Feb 06, 2009 1:25 am

    Thanks Very Happy ^.^
    Mickyz
    Mickyz
    Member
    Member


    Posts : 44
    Join date : 2009-01-26
    Age : 34
    Location : Malaysia a.k.a Paradise Town

    [Coder] Russia's Application Empty Re: [Coder] Russia's Application

    Post  Mickyz Fri Feb 06, 2009 10:26 pm

    Btw.. Stay Active At Game Too
    Admin
    Admin
    Administrator
    Administrator


    Posts : 61
    Join date : 2008-12-26
    Age : 34
    Location : Malaysia

    [Coder] Russia's Application Empty Re: [Coder] Russia's Application

    Post  Admin Sat Feb 07, 2009 3:31 am

    I might accept you if you can more active in game.
    Russia
    Russia
    Member
    Member


    Posts : 11
    Join date : 2009-02-05

    [Coder] Russia's Application Empty Re: [Coder] Russia's Application

    Post  Russia Sat Feb 07, 2009 4:02 am

    Okay, its just lately I've been sick so I've had more time to play then usual. Normally I can only play 6 - 10 PM weekdays, and all day weekends.
    avatar
    Assassinate
    Member
    Member


    Posts : 9
    Join date : 2009-02-06
    Age : 35
    Location : Singapore

    [Coder] Russia's Application Empty Re: [Coder] Russia's Application

    Post  Assassinate Sun Feb 08, 2009 2:43 pm

    Woo you call that a simple code!!! lol you look like a pro haha
    Good luck in your application!
    Admin recruit her!! she's good!
    Admin
    Admin
    Administrator
    Administrator


    Posts : 61
    Join date : 2008-12-26
    Age : 34
    Location : Malaysia

    [Coder] Russia's Application Empty Re: [Coder] Russia's Application

    Post  Admin Sun Feb 08, 2009 8:00 pm

    Assassinate wrote:Woo you call that a simple code!!! lol you look like a pro haha
    Good luck in your application!
    Admin recruit her!! she's good!

    For a coder, thats really is a simple code. You try understand the code, then you will find it out is easy to code some npc.
    Russia
    Russia
    Member
    Member


    Posts : 11
    Join date : 2009-02-05

    [Coder] Russia's Application Empty Re: [Coder] Russia's Application

    Post  Russia Sun Feb 08, 2009 10:23 pm

    Assassinate wrote:Woo you call that a simple code!!! lol you look like a pro haha
    Good luck in your application!
    Admin recruit her!! she's good!

    I'm a guy, thanks >.>

    Sponsored content


    [Coder] Russia's Application Empty Re: [Coder] Russia's Application

    Post  Sponsored content


      Current date/time is Fri May 17, 2024 11:33 am