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


Maplestory Private Server
 
HomeLatest imagesSearchRegisterLog in

 

 Alphas Coder Application

Go down 
2 posters
AuthorMessage
Alpha




Posts : 1
Join date : 2012-11-11
Age : 26
Location : InAnimeLand

Alphas Coder Application Empty
PostSubject: Alphas Coder Application   Alphas Coder Application EmptySun Nov 11, 2012 9:35 pm

Name:Jessica Charts

IGN:Alpha

Date of birth (add your age as well):1997 - August 2nd , 15

Why do you deserve (want to be coder) for Panda:I Know That I Can Definantly Make This Server So Much More Enjoyable, I Love Codeing And Its My Passion , I Love How This Servers Communnity Is So Freindly And The Server Is Perfect, And It Will Always Be The Best.

What would you do as a Coder:I Would Put More Color Into This Server , Make It Kind Of More Creative And Funnnnnnnn , I Will Make Custom NPC S Edit NPCS Like Tic Tac Toe Npc And Ect , I Mean Scientists Say U Do it better if u love to do it And i sure Love to Do It!

How did you find this server? (if you were introduced name the person)I Found It On GTOP 200 I Think

How do you solve a fight between to players? (please explain your actions:I Would Pull Them Out Of Sight So The Community Isnt Disrupted , And People Wouldnt Get Concerned , Then I Would Find Out What Was Going On , Id Tell Them If U Guys Want To Fight Then U Guys Can Fight Else Where Because Disrupting The Community Over Something As Silly As This Is Unnacceptable, So When U Decide To Man Up U Tell Me And We Can Sort This Thing Out .

How mature do you think you are? (1-10. 10 being most mature.) explain:Id Rate
e My Self A 8 Im Very Serious When It Comes To Hackers , Talking To Staff , And Fights . But When It Comes To Community I Like To Have Fun , And Let Out Me.
Is there any specialty you have? (gfx, wz editor, coder):Coder

If you can code, gfx, wz edit show proof:status = -1;
playerFlag = 0;
computerFlag = 0;
var playerColor;
var computerColor;

function start() {
cm.sendYesNo("Hello #h #. Welcome To The Tic Tac Toe NPC! Lets Play! #b#t1002140##k?");
}

function action (mode, type, selection) {
if (mode != 1) {
if (type == 1 && mode == 0) {
cm.sendNext("Coward.");
}
cm.dispose();
return;
}
status++;
if (status == 0) {
cm.sendSimple("What do you wants be?\r\n\r\n#b#L0#First player.\r\n#L1#Second player.");
} else if (status == 1) {
playerColor = selection == 0 ? 3991040 : 3991049;
computerColor = selection == 0 ? 3991023 : 3991014;
if (selection == 1) {
computerMoves();
}
play();
} else {
if ((playerFlag & (1 << selection)) == (1 << selection) || (computerFlag & (1 << selection)) == (1 << selection) || selection < 0 || selection > 9) {
cm.sendNext("No cheaters allowed.");
cm.dispose();
return;
}
playerFlag |= 1 << selection;
if (((playerFlag | computerFlag) ^ 511) == 0) {
tie();
return;
}
for (var i = 0; i < 3; ) {
if (isWinner(playerFlag, i++)) {
win();
return;
}
}
computerMoves();
for (var i = 0; i < 3; ) {
if (isWinner(computerFlag, i++)) {
lose();
return;
}
}
play();
}
}

function play() {
cm.sendSimple(loadText(true));
}

function win() {
if (cm.canHold(1002140)) {
cm.gainItem(1002140, 1);
cm.sendNext(loadText(false) + "\r\n\r\nWoah! You made it! Congratulations! You have won a #b#t1002140##k.");
} else {
cm.sendNext("Woah! You made it! Congratulations! But I'm sorry to tell you that I can give you the #b#t1002140##k because your Equip inventory seems to be full. Try again later.");
}
cm.dispose();
}

function isWinner(player, val) {
return (player & (7 << (val * 3))) == 7 << (val * 3) || (player & (73 << val)) == (73 << val) || (((player & (1 << 4)) == 1 << 4) && (player & ((1 << 6) << (val * 2))) && ((player & (1 << 2) >> (val * 2))));
}

function lose() {
cm.sendNext(loadText(false) + "\r\n\r\nIt's a shame that you have lost againts this computer. You should try again after you take your breakfast, you're probably just tired.");
cm.dispose();
}

function computerMoves() {
if (playerFlag == 0) {
var rand = Math.random() * 9 | 0;
computerFlag |= 1 << (rand + 1 & 1 == 1 ? rand : 4);
} else {
if (computerFlag == 0) {
for (var i = 0; i < 4; i++) {
if (playerFlag & (2 << i) == 2 << i) {
computerFlag |= 1 << 4;
return;
}
}
var rand = Math.random() * 9 | 0;
if (playerFlag == 1 << 4) {
computerFlag |= 1 << (rand + 1 & 1 == 1 ? rand : 0);
} else {
if ((playerFlag & 1) << (rand + 1 & 1 == 1 ? rand : 4) != 1 << (rand + 1 & 1 == 1 ? rand : 4)) {
computerFlag |= 1 << (rand + 1 & 1 == 1 ? rand : 4);
} else {
computerFlag |= 1 << 4;
}
}
} else {
for (var i = 0; i < 9; i++) {
if (((computerFlag | playerFlag) & (1 << i)) != 0) {
continue;
}
var nextMove = (computerFlag | (1 << i));
for (var x = 0; x < 3; x++) {
if (isWinner(nextMove, x)) {
computerFlag |= 1 << i;
return;
}
}
var playerPossibleMove = (playerFlag | (1 << i));
for (var x = 0; x < 3; x++) {
if (isWinner(playerPossibleMove, x)) {
computerFlag |= 1 << i;
return;
}
}
}
for (var i = 0; i < 9; i++) {
if (((computerFlag | playerFlag) & (1 << i)) != 0) {
continue;
}
computerFlag |= 1 << i;
break;
}
}
}
}

function loadText(sendSimple) {
var text = (sendSimple ? "Pick your move." : "Match Result.") + "\r\n\r\n";
for (var i = 0; i < 9; i++) {
text += ((playerFlag & (1 << i)) == (1 << i) ? "#i" + playerColor + "#" : (computerFlag & (1 << i)) == (1 << i) ? "#i" + computerColor + "#" : ((sendSimple ? "#L" + i + "#" : "") + "___")) + "\t\t" + (((i + 1) % 3 == 0 ? "\r\n" : ""));
}
return text;
}

function tie() {
cm.sendNext(loadText(false) + "\r\n\r\nOh, looks you you tied with the computer. You're really good player, but you need to try harder.");
cm.dispose();
}



If you know the following "gfx, edit, codeing" then how did you learn?:Ive Learned Various Ways , Youtube , Sites, 100$ Classes . Im Very Comfortable Around Codeing.

Extras About you:[/code]
Back to top Go down
PandaBear
Admin
PandaBear


Posts : 14
Join date : 2012-11-07

Alphas Coder Application Empty
PostSubject: Re: Alphas Coder Application   Alphas Coder Application EmptySun Nov 11, 2012 9:40 pm

I enjoyed reading this application. You seem very serious about this when i talked to you. I'm looking forward to see your work. Welcome to the staff team.

_______________________

Accepted:!:
Back to top Go down
https://pandastoryv83.board-directory.net
 
Alphas Coder Application
Back to top 
Page 1 of 1

Permissions in this forum:You cannot reply to topics in this forum
PandaStory :: GM Applications :: Accepted-
Jump to: