Moderator: Phades
Arcanist wrote:How can you check the source if you can't even read scripts?
borka wrote:Arcanist wrote:How can you check the source if you can't even read scripts?![]()
Well i just like to know who besides APX has access to http://unionclient.ru/ ...
jorb wrote:All your characters will be deleted, and I will level every village any one of them were ever members of.
borka wrote:k was just asking because error handling and "utils" points there
reading and opening are 2 different things that's what Arcanist wanted to assume i guess
jorb wrote:All your characters will be deleted, and I will level every village any one of them were ever members of.
//#! name = Tea logout
//#! uniq = arc_teabuff
//#! icon = gfx/invobjs/pot-tea
function main() {
jSleep (840000);
jLogout();
}
main();
//#! tooltip = Move Sliders
//#! name = Slider
//#! uniq = sliderz
//#! icon = gfx/invobjs/glass-winee
//life, night, civil, nature, martial, change
function main() {
jDropLastWindow();
var blist = ["Death", "Life", "Night", "Day", "Barbarism", "Civilization", "Nature", "Industry", "Martial", "Peaceful", "Tradition", "Change", "Exit"];
var selectWindow = jGUIWindow(jCoord(250, 250), jCoord(110, blist.length * 25 + 15), "Slider");
for(var i = 0; i < blist.length; i++)
jGUIButton(selectWindow, jCoord(5, 25 + i*25), 100, blist[i]);
selectWindow.toggleCloseButton();
var btext = selectWindow.waitButtonClick();
selectWindow.destroy();
if(btext == blist[0]) while (1) {
jBuyBelief("life", "-1");
jSleep(60000);
}
if(btext == blist[1]) while (1) {
jBuyBelief("life", "1");
jSleep(60000);
}
if(btext == blist[2]) while (1) {
jBuyBelief("night", "-1");
jSleep(60000);
}
if(btext == blist[3]) while (1) {
jBuyBelief("night", "1");
jSleep(60000);
}
if(btext == blist[4]) while (1) {
jBuyBelief("civil", "-1");
jSleep(60000);
}
if(btext == blist[5]) while (1) {
jBuyBelief("civil", "1");
jSleep(60000);
}
if(btext == blist[6]) while (1) {
jBuyBelief("nature", "-1");
jSleep(60000);
}
if(btext == blist[7]) while (1) {
jBuyBelief("nature", "1");
jSleep(60000);
}
if(btext == blist[8]) while (1) {
jBuyBelief("martial", "-1");
jSleep(60000);
}
if(btext == blist[9]) while (1) {
jBuyBelief("martial", "1");
jSleep(60000);
}
if(btext == blist[10]) while (1) {
jBuyBelief("change", "-1");
jSleep(60000);
}
if(btext == blist[11]) while (1) {
jBuyBelief("change", "1");
jSleep(60000);
}
if(btext == blist[blist.length - 1]) {selectWindow.destroy(); return;};
}
main();
Users browsing this forum: Claude [Bot] and 0 guests