Forum

ASSIST, AMERICA'S ARMY COMMUNITY - RELIVE THE GLORY DAYS OF AMERICA'S ARMY 2.5

Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - Spanky

Pages: 1 ... 256 257 [258] 259 260 ... 564
3856
The Lounge / Re: Legalize weed?
« on: Thursday, June 14, 2012, 01:45:59 AM »
I'm with Killa but that's the last I'll say on this subject. The thing about these kind of discussions is that they ultimately get nowhere. They only make the people posting in them get more entrenched in the view they had prior to the thread starting.

3857
The Lounge / Re: 2012
« on: Thursday, June 14, 2012, 01:16:42 AM »
Just because i smoke weed doesnt mean im a selfish lazy piece of shit at all. I do all of those things you posted and i enjoy doing them. I've volunteered to work for the little league baseball leagues in my area and am always looking for a challenge. Hence why im joining the marines. Im not the kind of person that smokes and just sits around all day doing nothing. I go out and do things and am active all the time. Youre just stereotyping the "typical stoner" :)

Then it makes me wonder, why does a person like you need weed?

3858
The Lounge / Re: ^_^
« on: Thursday, June 14, 2012, 01:05:21 AM »
Damned if it is, damned if it isn't.

3859
News / Re: Round 9 (June 14) - Thursday Night Fights
« on: Wednesday, June 13, 2012, 23:42:06 PM »
Alright, version 1 is finished. Use it or not, it's there!

http://rand.aao25.com/

3860
News / Re: Round 9 (June 14) - Thursday Night Fights
« on: Wednesday, June 13, 2012, 22:09:32 PM »
Here's my code:
Code: [Select]
<?php
echo "welcome to spankys random map generator!<br />&nbsp;<br />";

// array of maps
$maps = array("MOUT McKenna""Pipeline""Bridge Crossing""Mountain Pass""Bridge SE""Mountain Pass SE""Urban Assault""Border""Headquarters Raid""Collapsed Tunnel""Insurgent Camp""River Basin""FLS Assault""JRTC Farm Raid""Mountain Ambush""Swamp Raid""Weapons Cache""Weapons Cache SE""Radio Tower""Woodland Outpost""Dusk""SF CSAR""SF Hospital""SF Recon""SF Sandstorm""SF Arctic""SF Oasis""SF Taiga""SF Village""SF Courtyard""SF PCR""SF Extraction""Pipeline SF""SF Blizzard""SF Water Treatment""SF Dockside""[mAAp] Glass Kill House""[mAAp] PBall""[mAAp] Teh Yeti's Lair""[mAAp] UT04""[mAAp] Aztec""[mAAp] Breakout""[mAAp] Shipment""[mAAp] Square""[mAAp] Ice""[mAAp] Monkey Island""[mAAp] Berg""[mAAp] Bridge Construction""[mAAp] Pipeline""[mAAp] Urban Assault SE""[mAAp] Interdiction""[mAAp] SF Refinery""[mAAp] Rummage");
// sort the array alphabetically
asort($maps);





// check if map selection data was already posted here
if($_POST){
// these are the maps that were selected in the form
$map1 $_POST['map1'];
$map2 $_POST['map2'];
$map3 $_POST['map3'];
$map4 $_POST['map4'];
// grab the names of those maps before removing them
$mapname1 $maps[$map1];
$mapname2 $maps[$map2];
$mapname3 $maps[$map3];
$mapname4 $maps[$map4];
// remove those maps from the array
unset($maps[$map1]);
unset(
$maps[$map2]);
unset(
$maps[$map3]);
unset(
$maps[$map4]);

echo 
"You chose $mapname1$mapname2$mapname3$mapname4 as maps that were played last week.<br />They have been removed from the following random selection:<br />&nbsp;<br />";

// choose 4 maps from the array randomly
$maps_rand array_rand($maps4);
echo 
$maps[$maps_rand[0]] . "<br />";
echo 
$maps[$maps_rand[1]] . "<br />";
echo 
$maps[$maps_rand[2]] . "<br />";
echo 
$maps[$maps_rand[3]] . "<br />";
}





// no post data, show the map selection form
else{
?>

<br />&nbsp;<br />
What maps were played last week?
<form method="post" action="<?php echo $PHP_SELF;?>">
<select name="map1">
<option selected value="">Select...</option>
<?php 
    
foreach($maps as $map => $value
    { 
       echo 
'<option value="'$map .'">'$value .'</option>';
    }
?>

</select>
<select name="map2">
<option selected value="">Select...</option>
<?php 
    
foreach($maps as $map => $value
    { 
       echo 
'<option value="'$map .'">'$value .'</option>';
    }
?>

</select>
<select name="map3">
<option selected value="">Select...</option>
<?php 
    
foreach($maps as $map => $value
    { 
       echo 
'<option value="'$map .'">'$value .'</option>';
    }
?>

</select>
<select name="map4">
<option selected value="">Select...</option>
<?php 
    
foreach($maps as $map => $value
    { 
       echo 
'<option value="'$map .'">'$value .'</option>';
    }
?>

</select>
<input type="submit" value="Generate" name="submit">
</form>
<?php
// post else
?>

3861
News / Re: Round 9 (June 14) - Thursday Night Fights
« on: Wednesday, June 13, 2012, 20:49:48 PM »
First version is up:
http://aao25.com/rand/index.php

I'll be adding more things like regular maps only, mAAp only and then a way of telling it which ones were played last week so you avoid a repeat.

*EDIT*
Right now, you select 4 maps that were played last week and it removes those from the map list and picks 4 others randomly. Shall I continue with it?

3862
General Chat / Re: Can Americas Army game be played offline?
« on: Wednesday, June 13, 2012, 20:04:12 PM »
Yes, you can load maps offline. As far as Steam, you can add a shortcut in Steam.

3863
News / Re: Round 9 (June 14) - Thursday Night Fights
« on: Wednesday, June 13, 2012, 19:58:44 PM »
Sure, hop on MSN. I was thinking about making one here shortly.

3864
News / Re: Round 9 (June 14) - Thursday Night Fights
« on: Wednesday, June 13, 2012, 19:50:46 PM »
We should totally play the mAAp pipeline!

Sounds like you really want the editor.

3865
News / Re: Round 9 (June 14) - Thursday Night Fights
« on: Wednesday, June 13, 2012, 17:39:34 PM »
If you guys want a random map generator, let me know and I can build one.

3866
News / Re: Round 9 (June 14) - Thursday Night Fights
« on: Wednesday, June 13, 2012, 17:12:43 PM »
How does my one sentence reflect on how shitty the community is? What I said is true and everyone who is apart of TNF (Max, {G.O.W.}, Head Hunters, Ak4) try and make the map selection as best as possible. The only negative comments/shitty things I see in this thread is bashing TNF on how lame the maplist is on people who have never shown up or even participated. Everyone has a chance to throw out new maps every week but no one really cares so the people who run it are going to pick the maps we wanna play. I myself try and get new maps voted in every week even mAAp maps but sometimes they just dont make it in. I'm sorry if I offended you with that one sentence but in its entirety its 100% true but all in all I think im trying to get the community united by supporting TNF.

No offense taken. What I meant is that it reminds me how boring and repetitive the community is. Why do the same boring maps get picked? Because the same boring players pick them. I'm not bashing TNF, I think it's great to try and get people to play new maps (if they happen to get picked). TNF is a great way to get more activity in the community.

I don't play because it's difficult to have fun when you're playing the same static map over and over against whores that have played it constantly for years. It's so cyclical.

Having code randomly pick maps means that maps from last week can be excluded from the current weeks randomizing. It's very easy. Perhaps there should be another weekly event where seldom played maps are tried out?

3867
General Chat / Re: Need Help with my own server
« on: Wednesday, June 13, 2012, 16:56:07 PM »
I have no idea, I just thought that thread might help you out.

3868
News / Re: Round 9 (June 14) - Thursday Night Fights
« on: Wednesday, June 13, 2012, 16:48:08 PM »
No one is complaining about the same maps being played except for the people who don't participate and post in these forums.

Comments like this make me think about how shitty the community is.

3869
General Chat / Re: Need Help with my own server
« on: Wednesday, June 13, 2012, 16:40:54 PM »
Take a look here and see if this helps you out:
http://aao25.com/2-5-assist/linux-server-installation/

3870
News / Re: Round 9 (June 14) - Thursday Night Fights
« on: Wednesday, June 13, 2012, 16:09:03 PM »
IMO, the maps shouldn't be chosen by people, instead randomly via code. That will get more people playing other maps.

Pages: 1 ... 256 257 [258] 259 260 ... 564

Download Assist

×

Download Game Client

Important: Battletracker no longer exists. However, old Battletracker accounts may still work. You can create a new 25Assist account here

Download Server Manager