Union Client Scripts

Forum for alternative clients, mods & discussions on the same.

Moderator: Phades

Re: Union Client Scripts

Postby ramones » Mon Apr 07, 2014 10:44 am

I don't know, I'll ask guys to post the info here to confirm it all.
W8 - Hermitage
W7 - Emerald City
W6 - Gomorrah
W5 - Pandemonium
W4 - Angkor
W3 - Angkor
User avatar
ramones
 
Posts: 3053
Joined: Fri Jul 09, 2010 10:03 pm
Location: I am a man who walks alone'

Re: Union Client Scripts

Postby shampizle » Tue Apr 08, 2014 9:24 pm

the soruces for union from the union thread. is clean i checked it theres nothing that sends out passwords and accounts.

so either they didn't get the version off a different site.


OR the bots they got wasn't from this thread


They probably google'ed bots which is a HUGE no no
User avatar
shampizle
 
Posts: 590
Joined: Sat Oct 20, 2012 1:14 am

Re: Union Client Scripts

Postby Arcanist » Tue Apr 08, 2014 11:58 pm

How can you check the source if you can't even read scripts?
User avatar
Arcanist
 
Posts: 2664
Joined: Mon Mar 19, 2012 2:01 pm

Re: Union Client Scripts

Postby borka » Thu Apr 10, 2014 8:34 pm

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/ ...
Avatar by SacreDoom
Java 8 - manually downloads - good to check for actual versions url here:
viewtopic.php?f=42&t=40331
Remember what the dormouse said: Feed your head Feed your head
User avatar
borka
 
Posts: 9965
Joined: Thu Feb 03, 2011 7:47 pm
Location: World of Sprucecap

Re: Union Client Scripts

Postby APXEOLOG » Sat Apr 12, 2014 1:21 am

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/ ...


Noone. That's just stub. Years ago client was released at http://unionclient.ru/forum/ when it was private. Now that site only hosts private union map (with dat cool markers <3) and this dead forum.

Client sources availiable at github: https://github.com/APXEOLOG/hnh_union/

I'm not sure what do you guys mean under "read scripts". Just open them with text editor maybe?
Last edited by APXEOLOG on Sat Apr 12, 2014 1:46 am, edited 1 time in total.
W10 Meme Plot | W9 Mantis Garden | W8 Core | W7 Ofir | W6 the City of Dis | W5 Vitterstad | W4 A.D. | W3 Mirniy
jorb wrote:All your characters will be deleted, and I will level every village any one of them were ever members of.
User avatar
APXEOLOG
 
Posts: 1296
Joined: Fri Apr 23, 2010 7:58 am
Location: Somewhere on Earth

Re: Union Client Scripts

Postby borka » Sat Apr 12, 2014 1:37 am

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 ;)
Avatar by SacreDoom
Java 8 - manually downloads - good to check for actual versions url here:
viewtopic.php?f=42&t=40331
Remember what the dormouse said: Feed your head Feed your head
User avatar
borka
 
Posts: 9965
Joined: Thu Feb 03, 2011 7:47 pm
Location: World of Sprucecap

Re: Union Client Scripts

Postby APXEOLOG » Sat Apr 12, 2014 1:46 am

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 ;)


hmm i think i removed all unimplemented stuff and external sites interaction in public version. if you will build client from github sources it should be ok.
W10 Meme Plot | W9 Mantis Garden | W8 Core | W7 Ofir | W6 the City of Dis | W5 Vitterstad | W4 A.D. | W3 Mirniy
jorb wrote:All your characters will be deleted, and I will level every village any one of them were ever members of.
User avatar
APXEOLOG
 
Posts: 1296
Joined: Fri Apr 23, 2010 7:58 am
Location: Somewhere on Earth

Re: Union Client Scripts

Postby borka » Sat Apr 12, 2014 1:55 am

I'm not using Union as i don't need scripts but i encourage those that PM me about Union to compile it from source themselves anyways (and editing out some stuff before)
Avatar by SacreDoom
Java 8 - manually downloads - good to check for actual versions url here:
viewtopic.php?f=42&t=40331
Remember what the dormouse said: Feed your head Feed your head
User avatar
borka
 
Posts: 9965
Joined: Thu Feb 03, 2011 7:47 pm
Location: World of Sprucecap

Re: Union Client Scripts

Postby Arcanist » Tue Apr 15, 2014 12:48 pm

Two small scripts, simple yet effective:

Code: Select all
//#! name = Tea logout
//#! uniq = arc_teabuff
//#! icon = gfx/invobjs/pot-tea

function main() {
jSleep (840000);
jLogout();
}

main();


No excuse to ever go without tea again!

Code: Select all
//#! 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();
User avatar
Arcanist
 
Posts: 2664
Joined: Mon Mar 19, 2012 2:01 pm

Re: Union Client Scripts

Postby caz » Tue Apr 15, 2014 3:42 pm

Thanks arcanist :)
Image
User avatar
caz
 
Posts: 434
Joined: Fri Jul 16, 2010 7:27 pm

PreviousNext

Return to The Wizards' Tower

Who is online

Users browsing this forum: Claude [Bot] and 0 guests