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


Welcome to our Private Server! 30, 000 EXP 3, 000 MESO 10 DROP
 
HomeHome  Latest imagesLatest images  RegisterRegister  Log in  

 

 Smear Coder APP

Go down 
+2
MapleGoddess
smear
6 posters
AuthorMessage
smear

smear


Posts : 21
Join date : 2010-08-18

Smear Coder APP Empty
PostSubject: Smear Coder APP   Smear Coder APP EmptyWed Aug 18, 2010 5:46 pm

## I know these arent the same questions but I copied my app off the other
server i played. so here it is
##

-To view my progress from coding this server please visit:
[You must be registered and logged in to see this link.]

Name :
Alex.


Age :
15.


Time Zone :
Eastern.


Email :
[You must be registered and logged in to see this link.]


IGN :
Smear.


Coding experience :
I have LOTS of coding experience, from coding all kinds of maplestory stuff to coding/compiling stuff. I have coded for years and I have great experiences with coding. If you are looking for a time frame thats about 2-3 years of training. No ego, but If this server needs an awesome coder, I would be the right choice. I know many different techniques and I am the nicest guy you will ever meet.

How long you play per day:
I play for about 4-5 in the day - 2-3 hours at night.
(and still juggle my LIFE!) .

What you can code :
I can code Java, XMLS, 30% Of HTML (Still learning),and 1% of C++.


What you are best at coding :
I am the best at coding Java, because thats what most of my experience is in, simply because I play maple alot, and I've always wondered the secrets behind NPCs and how maple works. I can get really technical with my work making it easier to understand. Or I can get really fun with it so, people will enjoy using my work. From players even to staff. Also most of my Java work isn't messy, making it easier to edit. I would enjoy if this APP gets accepted since I have tried 6 times to try to post this but my internet kept closing. :O . But any ways. Take this into consideration and read this thoroughly.

Peice of my work :
Pretty much the Rock/Paper/Scissors admin, and you can add items that it gives you when you win!

Quote :

/* 100% to me (Alex) For making this
*/
var compchoice;
var playerchoice;
var Frock = "#fUI/UIWindow.img/RpsGame/Frock#";
var Fpaper = "#fUI/UIWindow.img/RpsGame/Fpaper#";
var Fscissor = "#fUI/UIWindow.img/RpsGame/Fscissor#";
var rock = "#fUI/UIWindow.img/RpsGame/rock#";
var paper = "#fUI/UIWindow.img/RpsGame/paper#";
var scissor = "#fUI/UIWindow.img/RpsGame/scissor#";
var win = "#fUI/UIWindow.img/RpsGame/win#";
var lose = "#fUI/UIWindow.img/RpsGame/lose#";
var draw = "#fUI/UIWindow.img/RpsGame/draw#";
var spacing = " ";
var beta = "#fUI/UIWindow.img/BetaEdition/BetaEdition#\r\n";

var winmatch = false;
var losematch = false
var drawmatch = false;

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

function action(mode, type, selection) {
if (mode == -1) {
cm.dispose();
} else {
if (status == 0 && mode == 0) {
cm.dispose();
return;
} else if (status == 1 && mode == 0) {
cm.sendOk("Hello no one has beaten me in #rRock paper scissors, would you like to try?#k");
cm.dispose();
return;
}
if (mode == 1) {
status++;
} else {
status--;
}
if (status == 0) {
cm.sendNext(beta + "#eWant to play me in #rRock Paper Scissors?#k\r\n\r\nMade by \r\n\r\n #rSmear.#k");
} else if (status == 1) {
cm.sendAcceptDecline("Would you like to challenge me to a game of Rock, Paper Scissors?");
} else if (status == 2) {
cm.sendSimple("Choose one...\r\n"
+ "#L0##fUI/UIWindow.img/RpsGame/Frock##l"
+ "#L1##fUI/UIWindow.img/RpsGame/Fpaper##l"
+ "#L2##fUI/UIWindow.img/RpsGame/Fscissor##l"
);
} else if (status == 3) {
if (selection == 0) {
playerchoice = "rock";
} else if (selection == 1) {
playerchoice = "paper";
} else if (selection == 2) {
playerchoice = "scissor";
}
var random = Math.floor(Math.random()*4);
if (random <= 1) {
compchoice = "rock";
} else if (random <= 2) {
compchoice = "paper";
} else if (random <= 4) {
compchoice = "scissor";
}
cm.sendNext("And the results are...");
} else if (status == 4) {
if (playerchoice == "rock" && compchoice == "rock") {
cm.sendOk(Frock + spacing + rock + draw);
drawmatch = true;
} else if (playerchoice == "rock" && compchoice == "paper") {
cm.sendOk(Frock + spacing + paper + lose);
losematch = true;
} else if (playerchoice == "rock" && compchoice == "scissor") {
cm.sendOk(Frock + spacing + scissor + win); cm.gainItem(AddYourItemID, Amount);
winmatch = true;
} else if (playerchoice == "paper" && compchoice == "rock") {
cm.sendOk(Fpaper + spacing + rock + win); cm.gainItem(AddYourItemID, Amount);
winmatch = true;
} else if (playerchoice == "paper" && compchoice == "paper") {
cm.sendOk(Fpaper + spacing + paper + draw);
drawmatch = true;
} else if (playerchoice == "paper" && compchoice == "scissor") {
cm.sendOk(Fpaper + spacing + scissor + lose);
losematch = true;
} else if (playerchoice == "scissor" && compchoice == "rock") {
cm.sendOk(Fscissor + spacing + rock + lose);
losematch = true;
} else if (playerchoice == "scissor" && compchoice == "paper") {
cm.sendOk(Fscissor + spacing + paper + win); cm.gainItem(AddYourItemID, Amount);
winmatch = true;
} else if (playerchoice == "scissor" && compchoice == "scissor") {
cm.sendOk(Fscissor + spacing + scissor + draw);
drawmatch = true;
} else {
cm.sendOk("Error");
}
} else if (status == 5) {
cm.dispose();
}
}
}

Thank you for taking the time and reading this!

Regards,

-Smear.


Last edited by smear on Tue Aug 24, 2010 5:01 am; edited 5 times in total
Back to top Go down
smear

smear


Posts : 21
Join date : 2010-08-18

Smear Coder APP Empty
PostSubject: Re: Smear Coder APP   Smear Coder APP EmptyWed Aug 18, 2010 5:49 pm

Here are some sreenies of my in my old server using it:

Smear Coder APP Screen1n

Smear Coder APP Screen2agi

This script Includes prizes Just press
CTLR+F and seach" cm.gainItem(AddYourItemID, Amount); " No quotes
Then edit your itemID and the amount. For example if your server is a gold leaf system "4000313 is the ItemID" and the amount varries
Back to top Go down
MapleGoddess

MapleGoddess


Posts : 18
Join date : 2010-08-18

Smear Coder APP Empty
PostSubject: Re: Smear Coder APP   Smear Coder APP EmptyWed Aug 18, 2010 6:51 pm

smear wrote:
##
Coding experience :
I have LOTS of coding experience, from coding all kinds of maplestory stuff to coding/compiling stuff.
Nope, All that is still only experience from maplestory :] Coding and compiling maplestory stuff is still maplestory i believe.

What you can code :
I can code Java, XMLS, 30% Of HTML (Still learning),and 1% of C++.
How will that help npc scripting. Only java and 1% of c++? Very Happy


What you are best at coding :
I am the best at coding Java,
Sorry I'ma stop you there, what you are best at is what you only know.

Peice of my work :
Pretty much the Rock/Paper/Scissors admin, and you can add items that it gives you when you win!

Quote :

/* 100% to me (Alex) For making this
*/
var compchoice;
var playerchoice;
var Frock = "#fUI/UIWindow.img/RpsGame/Frock#";
var Fpaper = "#fUI/UIWindow.img/RpsGame/Fpaper#";
var Fscissor = "#fUI/UIWindow.img/RpsGame/Fscissor#";
var rock = "#fUI/UIWindow.img/RpsGame/rock#";
var paper = "#fUI/UIWindow.img/RpsGame/paper#";
var scissor = "#fUI/UIWindow.img/RpsGame/scissor#";
var win = "#fUI/UIWindow.img/RpsGame/win#";
var lose = "#fUI/UIWindow.img/RpsGame/lose#";
var draw = "#fUI/UIWindow.img/RpsGame/draw#";
var spacing = " ";
var beta = "#fUI/UIWindow.img/BetaEdition/BetaEdition#\r\n";

var winmatch = false;
var losematch = false
var drawmatch = false;

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

function action(mode, type, selection) {
if (mode == -1) {
cm.dispose();
} else {
if (status == 0 && mode == 0) {
cm.dispose();
return;
} else if (status == 1 && mode == 0) {
cm.sendOk("Why of course, your to chicken to face me in Rock, Paper, Scissors!");
You're*
cm.dispose();
return;
}
if (mode == 1) {
status++;
} else {
status--;
}
if (status == 0) {
cm.sendNext(beta + "#eI am the master of Rock, Paper, Scissors...\r\n\r\nMade by \r\n\r\n #rSmear.#k");
} else if (status == 1) {
cm.sendAcceptDecline("Would you like to challenge me to a game of Rock, Paper Scissors?");
} else if (status == 2) {
cm.sendSimple("Choose one...\r\n"
+ "#L0##fUI/UIWindow.img/RpsGame/Frock##l"
+ "#L1##fUI/UIWindow.img/RpsGame/Fpaper##l"
+ "#L2##fUI/UIWindow.img/RpsGame/Fscissor##l"
);
} else if (status == 3) {
if (selection == 0) {
playerchoice = "rock";
} else if (selection == 1) {
playerchoice = "paper";
} else if (selection == 2) {
playerchoice = "scissor";
}
var random = Math.floor(Math.random()*4);
if (random <= 1) {
compchoice = "rock";
Hehehe thanks! So if random is less than 1, then its this.
} else if (random <= 2) {
compchoice = "paper";
If its less than two, its this, ]
} else if (random <= 4) {
compchoice = "scissor";

}
cm.sendNext("And the results are...");
} else if (status == 4) {
if (playerchoice == "rock" && compchoice == "rock") {
cm.sendOk(Frock + spacing + rock + draw);
drawmatch = true;
} else if (playerchoice == "rock" && compchoice == "paper") {
cm.sendOk(Frock + spacing + paper + lose);
losematch = true;
} else if (playerchoice == "rock" && compchoice == "scissor") {
cm.sendOk(Frock + spacing + scissor + win); cm.gainItem(AddYourItemID, Amount);
winmatch = true;
} else if (playerchoice == "paper" && compchoice == "rock") {
cm.sendOk(Fpaper + spacing + rock + win); cm.gainItem(AddYourItemID, Amount);
winmatch = true;
} else if (playerchoice == "paper" && compchoice == "paper") {
cm.sendOk(Fpaper + spacing + paper + draw);
drawmatch = true;
} else if (playerchoice == "paper" && compchoice == "scissor") {
cm.sendOk(Fpaper + spacing + scissor + lose);
losematch = true;
} else if (playerchoice == "scissor" && compchoice == "rock") {
cm.sendOk(Fscissor + spacing + rock + lose);
losematch = true;
} else if (playerchoice == "scissor" && compchoice == "paper") {
cm.sendOk(Fscissor + spacing + paper + win); cm.gainItem(AddYourItemID, Amount);
winmatch = true;
} else if (playerchoice == "scissor" && compchoice == "scissor") {
cm.sendOk(Fscissor + spacing + scissor + draw);
drawmatch = true;
} else {
cm.sendOk("Error");
}
} else if (status == 5) {
cm.dispose();
}
}
}
[b]You were an ass to me on the xat, so I am an ass on here to you.


Last edited by MapleGoddess on Wed Aug 18, 2010 6:53 pm; edited 1 time in total
Back to top Go down
Billy




Posts : 9
Join date : 2010-08-09

Smear Coder APP Empty
PostSubject: =O   Smear Coder APP EmptyWed Aug 18, 2010 6:52 pm

WOW! I DIDN'T KNOW YOU COULD CODE! YOUR A OWNER TOO!?!?
Back to top Go down
Wrath

Wrath


Posts : 115
Join date : 2010-07-20
Location : In your basement

Smear Coder APP Empty
PostSubject: Re: Smear Coder APP   Smear Coder APP EmptyWed Aug 18, 2010 8:32 pm

WOW.....Very nice application. You have a huge chance of being gm
Back to top Go down
https://www.youtube.com/kingofdoom135
smear

smear


Posts : 21
Join date : 2010-08-18

Smear Coder APP Empty
PostSubject: Re: Smear Coder APP   Smear Coder APP EmptyWed Aug 18, 2010 8:55 pm

@Billy
Yupp Smile I can code well, my server GoldStory went down when I moved but I;m working on another server now.
(Not advertising!)
Back to top Go down
smear

smear


Posts : 21
Join date : 2010-08-18

Smear Coder APP Empty
PostSubject: Re: Smear Coder APP   Smear Coder APP EmptyWed Aug 18, 2010 8:57 pm

@Wraith
Thanks for the feed back I appreciate it, Let's just ignore what Maple is saying, he makes no
sense any way. This server doesn't need any thing but an excellent Java coder,
we don't need a new Site, or compiling. If JP needs help with com pilling errors, I can always
be there to fix them!
Back to top Go down
smear

smear


Posts : 21
Join date : 2010-08-18

Smear Coder APP Empty
PostSubject: Re: Smear Coder APP   Smear Coder APP EmptyWed Aug 18, 2010 9:00 pm

-


Last edited by smear on Thu Aug 19, 2010 5:06 am; edited 1 time in total
Back to top Go down
iepic




Posts : 12
Join date : 2010-08-15

Smear Coder APP Empty
PostSubject: Re: Smear Coder APP   Smear Coder APP EmptyThu Aug 19, 2010 12:01 am

rude, arrogant, and ignorant of the edit button o.o
what a nice guy -sarcasm-

"I am the nicest guy you will ever meet."

bs xP

Back to top Go down
MapleGoddess

MapleGoddess


Posts : 18
Join date : 2010-08-18

Smear Coder APP Empty
PostSubject: Re: Smear Coder APP   Smear Coder APP EmptyThu Aug 19, 2010 12:36 am

smear wrote:
@MapleGoddess
WOW Kid, Coding Java, and compiling are two completely different things, yes they both are Java but compiling takes WAY more skills. I can compile and all but thats different.
Please don't be jealous that I am a better coder than you and flame on my post.
Thanks!
Compiling should be included F3
Thats like saying in programming, who cannot compile their script and make it run? Thats half of it. Also, being a scripter, you will NEVER need compiling. The admin will. NOT YOU Very Happy
Back to top Go down
smear

smear


Posts : 21
Join date : 2010-08-18

Smear Coder APP Empty
PostSubject: Re: Smear Coder APP   Smear Coder APP EmptyThu Aug 19, 2010 1:36 am

-


Last edited by smear on Thu Aug 19, 2010 5:06 am; edited 1 time in total
Back to top Go down
MapleGoddess

MapleGoddess


Posts : 18
Join date : 2010-08-18

Smear Coder APP Empty
PostSubject: Re: Smear Coder APP   Smear Coder APP EmptyThu Aug 19, 2010 2:36 am

smear wrote:
Tough coming from a trade hacker.
Allegations are your only defense. Nothing will matter in the battle for the position right? All that will matter is your ability to script. Quite frankly, I think you are not too good. To make yourself seem better than one another, you must call them a hacker. In the end, who is better?
Back to top Go down
smear

smear


Posts : 21
Join date : 2010-08-18

Smear Coder APP Empty
PostSubject: Re: Smear Coder APP   Smear Coder APP EmptyThu Aug 19, 2010 3:26 am

-


Last edited by smear on Thu Aug 19, 2010 5:06 am; edited 1 time in total
Back to top Go down
MapleGoddess

MapleGoddess


Posts : 18
Join date : 2010-08-18

Smear Coder APP Empty
PostSubject: Re: Smear Coder APP   Smear Coder APP EmptyThu Aug 19, 2010 3:55 am

smear wrote:
Yeah, we shall see. If I get the position I will do my best to make the server better. But If I don't and you do, I guess I'll sit back and watch it crash and burn.
The server is already crashing and burning. I will save it, you will sink it.
Back to top Go down
smear

smear


Posts : 21
Join date : 2010-08-18

Smear Coder APP Empty
PostSubject: Re: Smear Coder APP   Smear Coder APP EmptyThu Aug 19, 2010 5:06 am

If you say so. delete all your posts and I will delete mine quit flaming me on my Thread.
Back to top Go down
MapleGoddess

MapleGoddess


Posts : 18
Join date : 2010-08-18

Smear Coder APP Empty
PostSubject: Re: Smear Coder APP   Smear Coder APP EmptyThu Aug 19, 2010 6:07 am

smear wrote:
If you say so. delete all your posts and I will delete mine quit flaming me on my Thread.
No thanks :]
Thanks for the offer though.
Back to top Go down
iepic




Posts : 12
Join date : 2010-08-15

Smear Coder APP Empty
PostSubject: Re: Smear Coder APP   Smear Coder APP EmptyThu Aug 19, 2010 1:09 pm

>.<
forget about me guys?
i applied for coder as well...
and from the looks of it....i have an equal chance as well...
also from the looks of it, smear, essentially, only knows java
and maplegoddess knows how to VB + java + stuff
(stuff being....the other stuff maple said o.o something about other programming?)
neway...
i also know java....and like smear, im experienced with it
plus, i've worked with VB....(but truthfully, i only used it for a day or 2 b4 VB started to hate me T.T)
and like maplegoddess, i've used other programming lanugages before.....mainly for other games (JASS, GML, and Kit-O-Mat)
i say we're pretty much on equal ground, assuming everyone told the reasonable truth about their abilities and knowledge
Back to top Go down
MapleGoddess

MapleGoddess


Posts : 18
Join date : 2010-08-18

Smear Coder APP Empty
PostSubject: Re: Smear Coder APP   Smear Coder APP EmptyThu Aug 19, 2010 5:37 pm

iepic wrote:
>.<
forget about me guys?
i applied for coder as well...
and from the looks of it....i have an equal chance as well...
also from the looks of it, smear, essentially, only knows java
and maplegoddess knows how to VB + java + stuff
(stuff being....the other stuff maple said o.o something about other programming?)
neway...
i also know java....and like smear, im experienced with it
plus, i've worked with VB....(but truthfully, i only used it for a day or 2 b4 VB started to hate me T.T)
and like maplegoddess, i've used other programming lanugages before.....mainly for other games (JASS, GML, and Kit-O-Mat)
i say we're pretty much on equal ground, assuming everyone told the reasonable truth about their abilities and knowledge
Haha, you may actually have a better chance than us, showing how we are flaming each other in the forum. And maybe JP will be looking for more than one :]
Out of the three of us, I believe you have the greatest chance of being accepted. You are calm, experienced, and you don't have a hyperbole like smear. [And you don't have a big mouth like me]


---
Lol smear deleted everything he said, but I still got him. When he deleted his post, my quotes still exist >Very Happy Now its like fill in the blnaks with my quotes! Very Happy
Back to top Go down
MapleGoddess

MapleGoddess


Posts : 18
Join date : 2010-08-18

Smear Coder APP Empty
PostSubject: Re: Smear Coder APP   Smear Coder APP EmptyFri Aug 20, 2010 5:02 pm

Ok smear, I made a similar npc to the one in brisbaneMS, but a little better >Very Happy
/* (Coke Bear) Maple Administrator
Coke World Warp NPC
Rebirth Level Npc By MapleGoddess
*/
var counter;
var curLevel;
function start() {
cm.sendSimple ("What would you like to do? All services cost 2 Golden Maple Leaves.\r\n#L0#Super Rebirth [1~255]!#l\r\n\#L1#To Be Added[1]#l");

}

function action(mode, type, selection) {
cm.dispose();
if (selection == 0) {
cm.gainItem(4000313, -2);
curLevel = cm.getLevel();
for (counter = curLevel; counter < 255; counter++)
{
cm.getChar().levelUp();
}
cm.sendOk ("I hope you enjoyed my services! Please come again later.");
} else if (selection == 1) {
/* cm.sendSimple("KK");*/
} else {
cm.dispose();
}
}

Since you only know maple stuff, you MOST LIKELY did NOT know how to use a for loop. Now could I ask, please make the similar code without a loop >Very Happy
Back to top Go down
arturspid

arturspid


Posts : 73
Join date : 2010-07-21

Smear Coder APP Empty
PostSubject: Re: Smear Coder APP   Smear Coder APP EmptyMon Aug 23, 2010 10:51 am

smear wrote:
If you say so. delete all your posts and I will delete mine quit flaming me on my Thread.

guys calm down stop doing stuff like this if you want to beat him in coding go make youre own application and to make youre application better post some new npcs for this

server or show a real coding

JPee will choose between !
Back to top Go down
iepic




Posts : 12
Join date : 2010-08-15

Smear Coder APP Empty
PostSubject: Re: Smear Coder APP   Smear Coder APP EmptyMon Aug 23, 2010 7:04 pm

uhhh hey maplegoddes...
how does that give a super rb o.o
all it (should) do is lvl u to 255
and take away 2 maple leaves (didnt check id to item)
Back to top Go down
smear

smear


Posts : 21
Join date : 2010-08-18

Smear Coder APP Empty
PostSubject: Re: Smear Coder APP   Smear Coder APP EmptyMon Aug 23, 2010 8:00 pm

Yeah she just fails at coding,
look at my other coding thread, Me and JP have been talking I most likely will be
the coder for Brisbane so it doesn't matter what she says or does.
Back to top Go down
Sponsored content





Smear Coder APP Empty
PostSubject: Re: Smear Coder APP   Smear Coder APP Empty

Back to top Go down
 
Smear Coder APP
Back to top 
Page 1 of 1
 Similar topics
-
» PROOFE THAT SMEAR DUPES !!! BANN THIS NOOB
» iEpic's Coder App
» Coder's application...(maybe will fail)

Permissions in this forum:You cannot reply to topics in this forum
Brisbane MapleStory :: Coder's Application [OPEN]-
Jump to: