Radiance MS

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

65x EXP 100x Meso 3x Drop


+3
iPoke
junhyuk
PaBuayToh
7 posters

    Apply For Coder .

    PaBuayToh
    PaBuayToh
    LV 1 LOL
    LV 1 LOL


    Posts : 2
    Join date : 2010-07-08

    Apply For Coder . Empty Apply For Coder .

    Post  PaBuayToh Thu Jul 08, 2010 8:31 am

    Name :
    Machiyo Loi Wei Ching

    Age :
    22

    Time Zone :
    Malaysia

    Email :
    abysss_worm@hotmail.com

    IGN :
    OmFgitzCherr

    Why you want to be a GM :
    Everytime when im online there are no GM's on, when i think someone is hacking ill always go and look but they will go away when they see me, so i need a GM to spy on them. Thats why we need more GM's with different time zones.

    What you will do as a GM :
    i will take my job as a GM serious and ill try to do my job as a professional Very Happy. I do not ban for grudges or if somebody pisses me off. I only ban if somebody breaks the rules. I don't let emotion affect my decisions

    How you can help the server as a GM :
    ask people to vote for more people and be nice and helpfull to the people that need my help

    How long you have played Radiance MS :
    like 1-3 weeks

    How long you play Radiance MS per day :
    all day long Wink

    How long you have played GMS :
    like 6 year or something Wink

    What makes you stand out :
    I'm nice, sweet, fair. I always listen to people when they have problems and im active

    What commands you will mainly use as a gm :
    the one i need at that time, i know almost every command that will help me to be a good gm

    Experience as a GM :
    i played on aarons account ones lol Razz but i can learn Very Happy
    avatar
    junhyuk
    Moderator
    Moderator


    Posts : 109
    Join date : 2009-12-19

    Apply For Coder . Empty Re: Apply For Coder .

    Post  junhyuk Thu Jul 08, 2010 9:21 am

    You need to give examples of works you have done of coding, if you want to apply as a coder..
    PaBuayToh
    PaBuayToh
    LV 1 LOL
    LV 1 LOL


    Posts : 2
    Join date : 2010-07-08

    Apply For Coder . Empty Re: Apply For Coder .

    Post  PaBuayToh Thu Jul 08, 2010 10:39 am

    Examples of work: Here is a capture the flag NPC I made :
    var status = 0;
    var minlvl = 10;
    var maxlvl = 255;
    var minplayers = 1;
    var maxplayers = 6;
    var time = 15;
    var open = true;

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

    function action(mode, type, selection) {
    if (mode == -1) {
    cm.dispose();
    } else if (mode == 0) {
    cm.dispose();
    } else {
    if (mode == 1)
    status++;
    else
    status--;

    if (status == 0) {
    cm.sendSimple("Hey, want to create a Capture the Flag match?\r\n#b\r\n#b#L0#Ok, lets bounce#l\r\n#L1#I want to join a friend's match");

    } else if (status == 101) {
    var chr = cm.getCharByName(cm.getText());
    if (chr != null) {
    var eim = chr.getEventInstance();
    if (eim != null) {
    if (chr.isLeader()) {
    eim.registerPlayer(cm.getPlayer());
    chr.warpParty(1010000, 0);
    chr.setBlueTeam();
    chr.setCanPickup(false);
    chr.hasflag = true;
    chr.removeAll(4001025);
    chr.flagPromptName2 = cm.getPlayer().getName();
    chr.gainItem(4001025, 1, false, false);
    cm.getPlayer().setRedTeam();
    cm.getPlayer().setCanPickup(false);
    cm.getPlayer().hasflag = true;
    cm.getPlayer().removeAll(4001025);
    cm.getPlayer().flagPromptName2 = cm.getPlayer().getName();
    cm.getPlayer().gainItem(4001025, 1, false, false);
    cm.getPlayer().warpPartyTimed(1010000, 5, 3000);
    cm.getPlayer().joinPartyEventInstance();
    cm.mapMessage(5, "Try to get to the other side! If the leader gets hit he will lose the flag!");
    } else {
    cm.sendOk("The person you type in has to be the leader of the party.");
    cm.dispose();
    }
    } else {
    cm.sendOk("That user is not in Capture the Flag");
    cm.dispose();
    }
    } else
    cm.sendOk("Player was not found");
    cm.dispose();

    } else if (status == 1) {
    var em = cm.getEventManager("CaptureTheFlag");
    if(selection == 0) {//ENTER THE PQ
    if (!hasParty()) {//NO PARTY
    cm.sendOk("#eYou don't have a party with you.");
    } else if (!isLeader()) {//NOT LEADER
    cm.sendOk("#eYour not the leader. Tell the leader of the party to talk to me.");
    } else if (!checkPartySize()) {//PARTY SIZE WRONG
    cm.sendOk("#eYour party needs to have at least " + minplayers + " members.");
    } else if (!checkPartyLevels()) {//WRONG LEVELS
    cm.sendOk("#eOne of your party members has not met the level requirements of " + minlvl + "~" + maxlvl + ".");
    } else if (em == null) {//EVENT ERROR
    cm.sendOk("ERROR IN EVENT");
    } else if (!open){
    cm.sendOk("The PQ is #rclosed#k for now.");
    } else {
    cm.mapMessage(5, "Please wait for somebody to challenge you.");
    em.startInstance(cm.getParty(), cm.getChar().getMap());
    // var party = cm.getChar().getEventInstance().getPlayers();
    // cm.removeFromParty(4001106, party);
    }
    cm.dispose();

    } else if(selection == 1) {
    cm.sendGetText("Type in the Player who is hosting the Capture the Flag match");
    status = 100;
    }
    }


    function getPartySize(){
    if(cm.getPlayer().getParty() == null){
    return 0;
    }else{
    return (cm.getPlayer().getParty().getMembers().size());
    }
    }

    function isLeader(){
    return cm.isLeader();
    }

    function checkPartySize(){
    var size = 0;
    if(cm.getPlayer().getParty() == null){
    size = 0;
    }else{
    size = (cm.getPlayer().getParty().getMembers().size());
    }
    if(size < minplayers || size > maxplayers){
    return false;
    }else{
    return true;
    }
    }

    function checkPartyLevels(){
    var pass = true;
    var party = cm.getPlayer().getParty().getMembers();
    if(cm.getPlayer().getParty() == null){
    pass = false;
    }else{
    for (var i = 0; i < party.size() && pass; i++) {
    if ((party.get(i).getLevel() < minlvl) || (party.get(i).getLevel() > maxlvl) || (party.get(i).getMapid() != cm.getMapId())) {
    pass = false;
    }
    }
    return pass;
    }

    function hasParty(){
    if(cm.getPlayer().getParty() == null){
    return false;
    }else{
    return true;
    }
    }



    and some others .
    iPoke
    iPoke
    Moderator
    Moderator


    Posts : 487
    Join date : 2010-01-10
    Age : 27
    Location : Conroe , Texas(:

    Apply For Coder . Empty Re: Apply For Coder .

    Post  iPoke Thu Jul 08, 2010 9:34 pm

    uhm, Can you give an "SS" Or a picture?
    Restrictedd
    Restrictedd
    LV 10 HOE
    LV 10 HOE


    Posts : 21
    Join date : 2010-06-24
    Location : Your House

    Apply For Coder . Empty Re: Apply For Coder .

    Post  Restrictedd Sun Jul 11, 2010 1:25 am

    Lmfao Nice ign Btw ~ Good luck ~
    Annie
    Annie
    Donator
    Donator


    Posts : 324
    Join date : 2010-01-16
    Age : 28
    Location : Sorrento Florida

    Apply For Coder . Empty Re: Apply For Coder .

    Post  Annie Sun Jul 11, 2010 5:23 am

    Your doing great Good luck <3
    dozo
    dozo
    OVER 9000!
    OVER 9000!


    Posts : 222
    Join date : 2009-11-29

    Apply For Coder . Empty Re: Apply For Coder .

    Post  dozo Mon Jul 12, 2010 10:36 pm

    Hm add me on msn if you are still interested please :3

    Doseon@live.co.kr
    lilxaznxboi3
    lilxaznxboi3
    LV 40 HORNY MUSHROOM
    LV 40 HORNY MUSHROOM


    Posts : 57
    Join date : 2010-03-10
    Age : 30
    Location : Outside ur house

    Apply For Coder . Empty Re: Apply For Coder .

    Post  lilxaznxboi3 Mon Jul 12, 2010 10:45 pm

    Thats AWESOME :3 Good luck

    Sponsored content


    Apply For Coder . Empty Re: Apply For Coder .

    Post  Sponsored content


      Current date/time is Sat Jun 29, 2024 10:31 pm