SD.Net Army

GEC: Discuss gaming, computers and electronics and venture into the bizarre world of STGODs.

Moderator: Thanas

User avatar
Pu-239
Sith Marauder
Posts: 4727
Joined: 2002-10-21 08:44am
Location: Fake Virginia

Post by Pu-239 »

Edit the number after begin(), depending on your internet connection. It waits until it can read the frame inside. Times are in milliseconds.

Possible improved version that does not require manual adjustment. Untested- Nukezone is not full now.

Code: Select all

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
   "http://www.w3.org/TR/html4/loose.dtd">
<html>
	<head>
		<title>[NukeZone] - Nuke The Enemy Before The Enemy Nukes You!</title>
		<meta http-equiv="content-type" content="text/html; charset=ISO-8859-1">
		<link rel="stylesheet" href="style.css">
		<style type="text/css">
		<!--
		body   {background:#000000;height:100em; margin:0px}
		-->
		</style>
	</head>
	<body>
		<iframe name="cheat" style="width:100%; height:100%; margin:0px" src="http://www.nukezone.nu">
		</iframe>
		<script type="text/javascript">
			<!--
			
			function reload(){
				 top.cheat.location.reload(true);
				 objs();
			}
	
			function objs(){
					if(top.cheat.document.getElementsByTagName('b')[0].firstChild.nodeValue < 1000){
						top.cheat.document.getElementsByTagName('input')[2].click();
					}else{
						var tmp = setTimeout('reload()',1000);
					}
			}
	
			function begin(){
				netscape.security.PrivilegeManager.enablePrivilege("UniversalBrowserRead UniversalBrowserWrite");
				while(!top.cheat.document.getElementsByTagName('b')[0] || !top.cheat.document.getElementsByTagName('input')[2]){
					;
				}
				objs();
			}
			begin();
			
			//-->
		</script>
	</body>
</html>
Probably want to adjust number after reload() to something larger- reloading every second is probably excessive.

Here's one w/ randomizer that might work-

Code: Select all

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
   "http://www.w3.org/TR/html4/loose.dtd">
<html>
	<head>
		<title>[NukeZone] - Nuke The Enemy Before The Enemy Nukes You!</title>
		<meta http-equiv="content-type" content="text/html; charset=ISO-8859-1">
		<link rel="stylesheet" href="style.css">
		<style type="text/css">
		<!--
		body   {background:#000000;height:100em; margin:0px}
		-->
		</style>
	</head>
	<body>
		<iframe name="cheat" style="width:100%; height:100%; margin:0px" src="http://www.nukezone.nu">
		</iframe>
		<script type="text/javascript">
			<!--
			
			function reload(){
				 top.cheat.location.reload(true);
				 objs();
			}
	
			function objs(){
				var random  = Math.round(Math.random()*15000+5000,1
				
				if(top.cheat.document.getElementsByTagName('b')[0].firstChild.nodeValue < 1000){
					top.cheat.document.getElementsByTagName('input')[2].click();
				}else{
						var tmp = setTimeout('reload()',random);
				}
			}
	
			function begin(){
				netscape.security.PrivilegeManager.enablePrivilege("UniversalBrowserRead UniversalBrowserWrite");
				while(!top.cheat.document.getElementsByTagName('b')[0] || !top.cheat.document.getElementsByTagName('input')[2]){
					;
				}
				objs();
			}
			begin();
			//-->
		</script>
	</body>
</html>
Version w/ static timer and random login

Code: Select all

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
   "http://www.w3.org/TR/html4/loose.dtd">
<html>
	<head>
		<title>[NukeZone] - Nuke The Enemy Before The Enemy Nukes You!</title>
		<meta http-equiv="content-type" content="text/html; charset=ISO-8859-1">
		<link rel="stylesheet" href="style.css">
		<style type="text/css">
		<!--
		body   {background:#000000;height:100em; margin:0px}
		-->
		</style>
	</head>
	<body>
		<iframe name="cheat" style="width:100%; height:100%; margin:0px" src="http://www.nukezone.nu">
		</iframe>
		<script type="text/javascript">
			<!--
			
			function reload(){
				 top.cheat.location.reload(true);
				 objs();
			}
	
			function objs(){
				var random  = Math.round(Math.random()*15000+5000,1
				
				if(top.cheat.document.getElementsByTagName('b')[0].firstChild.nodeValue < 1000){
					top.cheat.document.getElementsByTagName('input')[2].click();
				}else{
						var tmp = setTimeout('reload()',random);
				}
			}
	
			function begin(){
				netscape.security.PrivilegeManager.enablePrivilege("UniversalBrowserRead UniversalBrowserWrite");
				objs();
			}
			
			var tmp=setTimeout('begin()',5000);
			//-->
		</script>
	</body>
</html>

ah.....the path to happiness is revision of dreams and not fulfillment... -SWPIGWANG
Sufficient Googling is indistinguishable from knowledge -somebody
Anything worth the cost of a missile, which can be located on the battlefield, will be shot at with missiles. If the US military is involved, then things, which are not worth the cost if a missile will also be shot at with missiles. -Sea Skimmer


George Bush makes freedom sound like a giant robot that breaks down a lot. -Darth Raptor
User avatar
Exonerate
Sith Marauder
Posts: 4454
Joined: 2002-10-29 07:19pm
Location: DC Metro Area

Post by Exonerate »

Nice... Mine was a lot simpler, just kept resubmitting the info :P

BoTM, MM, HAB, JL
User avatar
Pu-239
Sith Marauder
Posts: 4727
Joined: 2002-10-21 08:44am
Location: Fake Virginia

Post by Pu-239 »

Oh, and my script depends on mozilla's ability to save passwords w/o entering anything in and the ability for scripts to access pages from other domains w/ permission.

Well, resubmitting is slower, though better when people log in in masses milliseconds right after the # of logged in users dips below 1000.

You could determine if it's logged in by reading location.href . However for some reason it kicks out the iframe when you log in. Fortunately not a problem for my script however.

ah.....the path to happiness is revision of dreams and not fulfillment... -SWPIGWANG
Sufficient Googling is indistinguishable from knowledge -somebody
Anything worth the cost of a missile, which can be located on the battlefield, will be shot at with missiles. If the US military is involved, then things, which are not worth the cost if a missile will also be shot at with missiles. -Sea Skimmer


George Bush makes freedom sound like a giant robot that breaks down a lot. -Darth Raptor
User avatar
Crayz9000
Sith Apprentice
Posts: 7329
Joined: 2002-07-03 06:39pm
Location: Improbably superpositioned
Contact:

Post by Crayz9000 »

Yo, Black Mesa guys, check in for the latest blitz.
A Tribute to Stupidity: The Robert Scott Anderson Archive (currently offline)
John Hansen - Slightly Insane Bounty Hunter - ASVS Vets' Assoc. Class of 2000
HAB Cryptanalyst | WG - Intergalactic Alliance and Spoof Author | BotM | Cybertron | SCEF
Asst. Asst. Lt. Cmdr. Smi
What Kind of Username is That?
Posts: 9254
Joined: 2002-07-10 08:53pm
Location: Back in PA

Post by Asst. Asst. Lt. Cmdr. Smi »

Well, I'm fine with the war, but all of the provinces are either out of my networth range, or on the higher end of targets in that range. I just picked the lowest networth and launched three missiles. I'm sure I'll be fine, though. I have two nukes with three more coming, and make 21k an hour.
BotM: Just another monkey|HAB
User avatar
Brother-Captain Gaius
Emperor's Hand
Posts: 6859
Joined: 2002-10-22 12:00am
Location: \m/

Post by Brother-Captain Gaius »

I am a god. After having recently died, I picked my start bonus and canceled nuke protection.

Five minutes. Three thieves. 1,077,776 dollars. (In 24 thieving attempts, 22 successful, did it right around the hour.)
Agitated asshole | (Ex)40K Nut | Metalhead
The vision never dies; life's a never-ending wheel
1337 posts as of 16:34 GMT-7 June 2nd, 2003

"'He or she' is an agenderphobic microaggression, Sharon. You are a bigot." ― Randy Marsh
God Emperor
Jedi Knight
Posts: 637
Joined: 2002-11-18 08:10pm
Location: somewhere I don't want to be

Post by God Emperor »

JediNeophyte wrote:I am a god. After having recently died, I picked my start bonus and canceled nuke protection.

Five minutes. Three thieves. 1,077,776 dollars. (In 24 thieving attempts, 22 successful, did it right around the hour.)
I've done that before :D getting all that money for praticly nothing.
Ph'nglui mglw'nafh Cthulhu R'lyeh wgah'nagl fhtagn

I know that you believe that you understood what you think I said, but I am not sure you realize that what you heard is not what I meant.
User avatar
Nova Andromeda
Jedi Master
Posts: 1404
Joined: 2002-07-03 03:38am
Location: Boston, Ma., U.S.A.

Post by Nova Andromeda »

--Is there noone willing to do these experiments with me? The unofficial manual posted here was useful, but it was for round six and doesn't explain how battle damage is translated into units killed. I have figured this out for some missiles though.
Nova Andromeda
God Emperor
Jedi Knight
Posts: 637
Joined: 2002-11-18 08:10pm
Location: somewhere I don't want to be

Post by God Emperor »

Whats your net worth I might be willing.
Ph'nglui mglw'nafh Cthulhu R'lyeh wgah'nagl fhtagn

I know that you believe that you understood what you think I said, but I am not sure you realize that what you heard is not what I meant.
User avatar
Nova Andromeda
Jedi Master
Posts: 1404
Joined: 2002-07-03 03:38am
Location: Boston, Ma., U.S.A.

Post by Nova Andromeda »

730k currently.
Nova Andromeda
God Emperor
Jedi Knight
Posts: 637
Joined: 2002-11-18 08:10pm
Location: somewhere I don't want to be

Post by God Emperor »

Now the question is are you willing, I'm a hundred over you.
Ph'nglui mglw'nafh Cthulhu R'lyeh wgah'nagl fhtagn

I know that you believe that you understood what you think I said, but I am not sure you realize that what you heard is not what I meant.
User avatar
Nova Andromeda
Jedi Master
Posts: 1404
Joined: 2002-07-03 03:38am
Location: Boston, Ma., U.S.A.

Post by Nova Andromeda »

God Emperor wrote:Now the question is are you willing, I'm a hundred over you.
--Of course I'm willing. So far I'm flying blind. We will need to exchange info. before any attack is made. There are two types of attacks I would like to test first: 1. the defender is out matched. 2. the attacker is out matched. I will need all the info. from both sides when the attacks are made. This means we will have to setup a time when the attacks will be made, info. will have to be exchanged just before hand, and only 1 attack can be made between communications of info. I suggest you attack me for both tests (one full power and the other underpowered), however, you should send me your info. first. The info. required will be current NW, numbers of all buildings (including any walls), and numbers of all troops. Mon. or Tus. night should be good for me (EST).

P.S. -- We can PM each other the info. here for security purposes. I don't
know your provinces name either. Mine is obvious... :)
Nova Andromeda
God Emperor
Jedi Knight
Posts: 637
Joined: 2002-11-18 08:10pm
Location: somewhere I don't want to be

Post by God Emperor »

I can do that, monday should be fine, my province name is DeathsReich (#118773).

Edit: this was my 500 post and on the day I got my second star.
Ph'nglui mglw'nafh Cthulhu R'lyeh wgah'nagl fhtagn

I know that you believe that you understood what you think I said, but I am not sure you realize that what you heard is not what I meant.
User avatar
Nova Andromeda
Jedi Master
Posts: 1404
Joined: 2002-07-03 03:38am
Location: Boston, Ma., U.S.A.

Post by Nova Andromeda »

God Emperor wrote:I can do that, monday should be fine, my province name is DeathsReich (#118773).

Edit: this was my 500 post and on the day I got my second star.
--Congratulations. Let us shoot for 9pm on Mon. EST. If that is good for you send your info. to me before that time and I will do the same. As soon as you get my info. and I've gotten yours go ahead and do both attacks. The weak one first (I'll tell you how many units to send after I get your info.).
Nova Andromeda
Asst. Asst. Lt. Cmdr. Smi
What Kind of Username is That?
Posts: 9254
Joined: 2002-07-10 08:53pm
Location: Back in PA

Post by Asst. Asst. Lt. Cmdr. Smi »

I would like to build a laser sattelite, but it would take two days of not building anything to get the money for one. So, does anyone know good targets to steal from?
BotM: Just another monkey|HAB
User avatar
Crayz9000
Sith Apprentice
Posts: 7329
Joined: 2002-07-03 06:39pm
Location: Improbably superpositioned
Contact:

Post by Crayz9000 »

Usually anyone who's rarely online...
A Tribute to Stupidity: The Robert Scott Anderson Archive (currently offline)
John Hansen - Slightly Insane Bounty Hunter - ASVS Vets' Assoc. Class of 2000
HAB Cryptanalyst | WG - Intergalactic Alliance and Spoof Author | BotM | Cybertron | SCEF
User avatar
Nova Andromeda
Jedi Master
Posts: 1404
Joined: 2002-07-03 03:38am
Location: Boston, Ma., U.S.A.

Post by Nova Andromeda »

--You can also get a lot more money buy attacking them successfully. Usaully 5-10 times as much.
Nova Andromeda
User avatar
Pu-239
Sith Marauder
Posts: 4727
Joined: 2002-10-21 08:44am
Location: Fake Virginia

Post by Pu-239 »

Crap just got hammered twice by someone 100k larger than me- just did the same thing to him a couple days ago- never reached hundreds of casualties though. Well at least I did about 2/3s NW damage in defense.

ah.....the path to happiness is revision of dreams and not fulfillment... -SWPIGWANG
Sufficient Googling is indistinguishable from knowledge -somebody
Anything worth the cost of a missile, which can be located on the battlefield, will be shot at with missiles. If the US military is involved, then things, which are not worth the cost if a missile will also be shot at with missiles. -Sea Skimmer


George Bush makes freedom sound like a giant robot that breaks down a lot. -Darth Raptor
User avatar
Nova Andromeda
Jedi Master
Posts: 1404
Joined: 2002-07-03 03:38am
Location: Boston, Ma., U.S.A.

Post by Nova Andromeda »

God Emperor wrote:I can do that, monday should be fine...
--I have sent you my info.... :)
Nova Andromeda
User avatar
Exonerate
Sith Marauder
Posts: 4454
Joined: 2002-10-29 07:19pm
Location: DC Metro Area

Post by Exonerate »

SDN will be going to war soon, check our clan message and forums...

Its time for <s>revenge</s> retribution.

BoTM, MM, HAB, JL
User avatar
Nova Andromeda
Jedi Master
Posts: 1404
Joined: 2002-07-03 03:38am
Location: Boston, Ma., U.S.A.

Post by Nova Andromeda »

--The results of attack experiments are in. Unfortunately, they are using a rather complicated battle resolution algorithm. However, I think I have a general idea of how it works. The damage applied to the attacking force seems to be about 5% of the defenders attacking strength and is not dependant heavily upon the strength of the attacking force. The damage applied to the defending force is heavily dependant upon the strenght of the attacking force vs. the defense strength of defending force. In this case doubling the attacking force quadrupled the damage to the defender.
-The rules found in the unofficial manual held true.
Nova Andromeda
User avatar
2000AD
Emperor's Hand
Posts: 6666
Joined: 2002-07-03 06:32pm
Location: Leeds, wishing i was still in Newcastle

Post by 2000AD »

BLACK MESA: NEW WAR

Calling all members of BMRF, another clan has declared war on us.

Lystwalley (#23737)(Link) have declared war on us.

At first glance They've got a wide range of NW so no-one is safe.
Ph34r teh eyebrow!!11!Writers Guild Sluggite Pawn of Chaos WYGIWYGAINGW so now i have to put ACPATHNTDWATGODW in my sig EBC-Honorary Geordie
Hammerman! Hammer!
User avatar
Exonerate
Sith Marauder
Posts: 4454
Joined: 2002-10-29 07:19pm
Location: DC Metro Area

Post by Exonerate »

SDN Members: War has been declared. Check clan message for target priorities. He's been EMPed, move in while you can.

BoTM, MM, HAB, JL
User avatar
Nova Andromeda
Jedi Master
Posts: 1404
Joined: 2002-07-03 03:38am
Location: Boston, Ma., U.S.A.

Post by Nova Andromeda »

--SDNet, US2AD has declared war against us!!! It is now mutal. Read the clan message and act accordingly.
Nova Andromeda
User avatar
Pu-239
Sith Marauder
Posts: 4727
Joined: 2002-10-21 08:44am
Location: Fake Virginia

Post by Pu-239 »

BMRF now at war with Carpe Noctem. So far they have not fought back.
Main targets are Puttez and Likbil Swe

EDIT: Ok, war over, since Puttez PMed me saying he was already at war. Possible war with Ultimate though.

ah.....the path to happiness is revision of dreams and not fulfillment... -SWPIGWANG
Sufficient Googling is indistinguishable from knowledge -somebody
Anything worth the cost of a missile, which can be located on the battlefield, will be shot at with missiles. If the US military is involved, then things, which are not worth the cost if a missile will also be shot at with missiles. -Sea Skimmer


George Bush makes freedom sound like a giant robot that breaks down a lot. -Darth Raptor
Post Reply