What are you applying for: GM - Web Development
Name : Chris Rogers
Age : 15
Where do you live/Timezone: GMT-8 (PST/PDT)
How active will you be: Daily At Least 2 hours (Commonly 4-5 hours).
E-Mail: acidtriip@yahoo.com
Hobbies : Scripting in C++, Java, JavaScript, PHP, VB.Net, VB6, and C#
How you'd handle a hacker : Determine based on the offense whether the user is committing the said crime (Being a former gm on about 7 server's I know almost every hack and the visual signs of it.), If said user is confirmed to be using that hack i would take multiple screen shot's along with marking a log of when and why i banned the user. If i decide it would be unfair to ban the user possibly due to a minor glitch that may have accord i would jail the user and also write that i have jailed the user and why i did so.
If two people were fighting, what would you do? : I would attempt to figure out what originated the problem, if simply trying to help the user's solve the issue I will take them to a jail with me to handle the issue privately, if both parties refuse to settle the argument i will either;
1. Temporary ban both users.
2. Jail both users together for a few hours.
How many servers have you been a GM/Admin in?: Approximately 17, Including some i ran and coded.
Why should we choose you: Well i have a lot more to offer than just being a GM, i am also a professional Web Coder. I have been coding websites for over 4 years to-date and i am quite good at it.
Reason i applied: Out of the few servers i have found recently i feel this server has the most potential to go somewhere.
Summary of yourself : I am 15 years old, I am a major flirt and love to mess with people, I have a major dislike for idiots . My field of choice is computer technology and engineering. I can and have built/re-built multiple computers. I like to be in relationship's that are relaxed and not to fast. Basically I am a computer nerd that likes to flirt and have fun.
Extra Info: N/A
In game name: Sadistic
(For Coders only) Can you Java code? : Yes i can, but i do not have any recent screen shot's or code snippet's.
1.Do you know the players/staff well enough to be chosen?(This doesn't mean have you met the GMs/spoken to them once. Do you actually KNOW them. Please stop writing "Yes" when none of us know you. Thank you): No, not really.
2.Have you been on AceStory long enough to deserve a GM position: No. I am rather applying to help with website stability.
3.Do you help players any chance you get: Yes, I like to help people as long as they appreciate it.
4.Are you of the age that is required to apply(if no you might as well delete this app now): Yes i am.
5.Please specify exactly(or around) how long you have been playing Acestory: Well i played for a while a long time ago. So probably a total of 5 weeks.
If you do not decide to make me a GM, i am interesting in the position of a Website Coder.
Login/World Server Status Checker -
Rainbow Table Word Splitter
Name : Chris Rogers
Age : 15
Where do you live/Timezone: GMT-8 (PST/PDT)
How active will you be: Daily At Least 2 hours (Commonly 4-5 hours).
E-Mail: acidtriip@yahoo.com
Hobbies : Scripting in C++, Java, JavaScript, PHP, VB.Net, VB6, and C#
How you'd handle a hacker : Determine based on the offense whether the user is committing the said crime (Being a former gm on about 7 server's I know almost every hack and the visual signs of it.), If said user is confirmed to be using that hack i would take multiple screen shot's along with marking a log of when and why i banned the user. If i decide it would be unfair to ban the user possibly due to a minor glitch that may have accord i would jail the user and also write that i have jailed the user and why i did so.
If two people were fighting, what would you do? : I would attempt to figure out what originated the problem, if simply trying to help the user's solve the issue I will take them to a jail with me to handle the issue privately, if both parties refuse to settle the argument i will either;
1. Temporary ban both users.
2. Jail both users together for a few hours.
How many servers have you been a GM/Admin in?: Approximately 17, Including some i ran and coded.
Why should we choose you: Well i have a lot more to offer than just being a GM, i am also a professional Web Coder. I have been coding websites for over 4 years to-date and i am quite good at it.
Reason i applied: Out of the few servers i have found recently i feel this server has the most potential to go somewhere.
Summary of yourself : I am 15 years old, I am a major flirt and love to mess with people, I have a major dislike for idiots . My field of choice is computer technology and engineering. I can and have built/re-built multiple computers. I like to be in relationship's that are relaxed and not to fast. Basically I am a computer nerd that likes to flirt and have fun.
Extra Info: N/A
In game name: Sadistic
(For Coders only) Can you Java code? : Yes i can, but i do not have any recent screen shot's or code snippet's.
1.Do you know the players/staff well enough to be chosen?(This doesn't mean have you met the GMs/spoken to them once. Do you actually KNOW them. Please stop writing "Yes" when none of us know you. Thank you): No, not really.
2.Have you been on AceStory long enough to deserve a GM position: No. I am rather applying to help with website stability.
3.Do you help players any chance you get: Yes, I like to help people as long as they appreciate it.
4.Are you of the age that is required to apply(if no you might as well delete this app now): Yes i am.
5.Please specify exactly(or around) how long you have been playing Acestory: Well i played for a while a long time ago. So probably a total of 5 weeks.
If you do not decide to make me a GM, i am interesting in the position of a Website Coder.
Login/World Server Status Checker -
- Code:
<?php
$Login_Status = CheckSock("8484");
$World_Status = CheckSock("1099");
function CheckSock($Port){
$Handle = curl_init("http://67.159.49.54:" . $Port);
curl_setopt($Handle, CURLOPT_HEADER, false);
curl_setopt($Handle, CURLOPT_RETURNTRANSFER, true);
$Return = curl_exec($Handle);
curl_close($Handle);
return Status($Return);
}
function Status($SocketLink){
if(!$SocketLink){
return "<span style=\"color: #920d0d;\">Offline</span>";
}else{
return "<span style=\"color: #03780e;\">Online</span>";
}
}
?>
<table>
<tr>
<td>Login Server:</td> <td><?php echo $Login_Status; ?></td>
</tr>
<tr>
<td>World Server:</td> <td><?php echo $World_Status; ?></td>
</tr>
</table>
Rainbow Table Word Splitter
- Code:
<?php
$Word = $_GET['Word'];
$Length = strlen($Word);
$MinLength = 5;
$MaxLength = 36;
$i = 0;
$is = $MinLength-1;
while($i <= $Length-2 && $i <= $MaxLength){
if($is == ($Length)){
$i++;
$is = $MinLength;
}else{
$is++;
}
if(strlen(substr($Word, $i, $is)) >= $MinLength && strlen(substr($Word, $i, $is)) <= $MaxLength){
echo substr($Word, $i, $is) . "<br />";
}
}
?>
Last edited by Sadistic on Sat May 30, 2009 7:21 am; edited 2 times in total