TrueStory
Join us at our newest server called DivideMs. This is a 0.62 based private server full with custom features. If you need more information feel free to visit the forums.

www.dividestory.tk
TrueStory
Join us at our newest server called DivideMs. This is a 0.62 based private server full with custom features. If you need more information feel free to visit the forums.

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


The Place you want to be!
 
HomePortalGallerySearchLatest imagesTeamspeak 3RegisterLog inActive Topics
Latest topics
» Approved the resolution
Yogi's Coder app I_icon_minitimeby uggboots147 Sat Oct 26, 2013 4:11 am

» Supreme allowing opponents
Yogi's Coder app I_icon_minitimeby umotion22 Tue Oct 22, 2013 1:39 pm

» About the possibility
Yogi's Coder app I_icon_minitimeby uggboots147 Wed Oct 09, 2013 4:21 am

» On the support
Yogi's Coder app I_icon_minitimeby umotion22 Sat Oct 05, 2013 1:50 pm

» Forward toward
Yogi's Coder app I_icon_minitimeby uggboots147 Thu Sep 19, 2013 4:58 am

» In order to receive
Yogi's Coder app I_icon_minitimeby umotion22 Mon Sep 16, 2013 11:51 am

» Establishing future
Yogi's Coder app I_icon_minitimeby uggboots147 Mon Sep 02, 2013 4:35 am

» Security gains grow
Yogi's Coder app I_icon_minitimeby umotion22 Thu Aug 29, 2013 12:29 pm

» Challenge a specific
Yogi's Coder app I_icon_minitimeby uggboots147 Sat Aug 17, 2013 4:02 am


 

 Yogi's Coder app

Go down 
AuthorMessage
yogiram1235




Number of posts : 1
Registration date : 2009-05-09

Yogi's Coder app Empty
PostSubject: Yogi's Coder app   Yogi's Coder app I_icon_minitimeSat May 09, 2009 6:17 pm

Where you are from? America

Have you had experience before?ive been a coder on 14 servers and ive owned 3 of them

Why should we pick you?I can code java(iv'e coded java for 2 years)

Why do you want to become a GM?To Create a safe and hospitible enviroment for my fellow players

Where have you played before? FinalStory,Carestory,DesuMs,YogiMs,ChaosStory,UnHolyMs,XxxMs,Sexms(Lol)

Are you farmilliar with the commands?Yes And I can Make them as well =D

How do you react on other people their questions?I react to try and help them whatever the question is

Tell something about yourself. Say things that can let me choose just you, do special things. I can code java and c++. And i have a basic knowledge of PHP and I also know html. I love to help people. I also helped in the making of the ChaosStory Source and also in the revision of the Xotic Source and i have also made an original cpq.

An example of my work: An Npc that trades red envolopes for mesos and vise versa.



var canHoldItem = true;
var requirementToBuy = true;

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;
}
if (mode == 1) {
status++;
} else {
status--;
}
if (status == 0) {
status++;
}
if (status == 1) {
cm.sendSimple("What would you like to Trade?"
+ "\r\n#L00#Buy 1 #bRed Envelope#k for 1,000,000,000 mesos#l"
+ "\r\n#L01#Buy 2 #bRed Envelopes#k for 2,000,000,000 mesos#l"
+ "\r\n#L10#Trade in 1 #bRed Envelope#k for 1,000,000,000 mesos#l"
+ "\r\n#L11#Trade in 2 #bRed Envelopes#k for 2,000,000,000 mesos#l"
//+ "\r\n#L20#Buy #bEvent Trophy#k for 25 #bRed Envelopes#k"
//+ "\r\n#L21#Buy #bDragon Stone#k for 1 #bEvent Trophy#k"
+ "\r\n#L30#Buy 1 #bWhite Scroll#k for 2 #bRed Envelopes#k#l"
+ "\r\n#L31#Buy 5 #bWhite Scrolls#k for 10 #bRed Envelopes#k#l"
+ "\r\n#L32#Buy 10 #bWhite Scroll#k for 20 #bRed Envelopes#k#l"
+ "\r\n#L40#Buy 10 #bSuper Megaphones#k for 10,000,000 mesos#l"
);
} else if (status == 2) {
if (selection == 0) {
if (cm.getMeso() >= 1000000000) {
if (cm.canHold(4031249)) {
cm.gainMeso(-1000000000);
cm.gainItem(4031249, 1);
cm.sendOk("You have purchased 1 #bRed Envelope#k.");
} else
canHoldItem = false;
} else
requirementToBuy = false;
} else if (selection == 1) {
if (cm.getMeso() >= 2000000000) {
if (cm.canHold(4031249, 2)) {
cm.gainMeso(-2000000000);
cm.gainItem(4031249, 2);
cm.sendOk("You have purchased 2 #bRed Envelopes#k.");
} else
canHoldItem = false;
} else
requirementToBuy = false;
} else if (selection == 10) {
if (cm.haveItem(4031249, 1)) {
if (cm.getMeso() <= 1147483647) {
cm.gainItem(4031249, -1);
cm.gainMeso(1000000000);
cm.sendOk("You have purchased 1,000,000,000 mesos.");
} else
canHoldItem = false;
} else
requirementToBuy = false;
} else if (selection == 11) {
if (cm.haveItem(4031249, 2)) {
if (cm.getMeso() <= 147483647) {
cm.gainItem(4031249, -2);
cm.gainMeso(2000000000);
cm.sendOk("You have purchased 2,000,000,000 mesos.");
} else
canHoldItem = false;
} else
requirementToBuy = false;
} else if (selection == 20) {
if (cm.haveItem(4031249, 25)) {
if (cm.canHold(4000038)) {
cm.gainItem(4031249, -25);
cm.gainItem(4000038, 1);
cm.sendOk("You have purchased 1 #bEvent Trophy#k.");
} else
canHoldItem = false;
} else
requirementToBuy = false;
} else if (selection == 21) {
if (cm.haveItem(4000038, 1)) {
if (cm.canHold(2041200)) {
cm.gainItem(4000038, -1);
cm.gainItem(2041200, 1);
cm.sendOk("You have purchased 1 #bDragon Stone#k.");
} else
canHoldItem = false;
} else
requirementToBuy = false;
} else if (selection == 30) {
if (cm.haveItem(4031249, 2)) {
if (cm.canHold(2340000)) {
cm.gainItem(4031249, -2);
cm.gainItem(2340000, 1);
cm.sendOk("You have purchased 1 #bWhite Scroll#k.");
} else
canHoldItem = false;
} else
requirementToBuy = false;
} else if (selection == 31) {
if (cm.haveItem(4031249, 10)) {
if (cm.canHold(2340000, 5)) {
cm.gainItem(4031249, -10);
cm.gainItem(2340000, 5);
cm.sendOk("You have purchased 5 #bWhite Scrolls#k.");
} else
canHoldItem = false;
} else
requirementToBuy = false;
} else if (selection == 32) {
if (cm.haveItem(4031249, 20)) {
if (cm.canHold(2340000, 10)) {
cm.gainItem(4031249, -20);
cm.gainItem(2340000, 10);
cm.sendOk("You have purchased 10 #bWhite Scrolls#k.");
} else
canHoldItem = false;
} else
requirementToBuy = false;
} else if (selection == 40) {
if (cm.getMeso() >= 10000000) {
if (cm.canHold(5072000, 10)) {
cm.gainMeso(-10000000);
cm.gainItem(5072000, 10);
cm.sendOk("You have purchased 10 #bSuper Megaphones#k.");
} else
canHoldItem = false;
} else
requirementToBuy = false;
} else {
cm.dispose();
}
if (canHoldItem == false) {
cm.sendOk("Please make sure you have enough inventory space and/or meso space to purchase the item.");
} else if (requirementToBuy == false) {
cm.sendOk("You do not have enough mesos and/or items to purchase this item.");
}
cm.dispose();
}
}
}
Back to top Go down
 
Yogi's Coder app
Back to top 
Page 1 of 1

Permissions in this forum:You cannot reply to topics in this forum
TrueStory :: TrueStory! :: GM Applications.-
Jump to: