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 ... 335 336 [337] 338 339 ... 564
5041
mAAp Project / Re: BF-Style Conquest Objectives for AA
« on: Saturday, February 25, 2012, 19:27:51 PM »
Just stand in a radius around the objective. I can set radius and height of the area.

5042
News / Re: Progress report and Intresting Stats...
« on: Saturday, February 25, 2012, 19:24:30 PM »
I had to google but I found out Lion is the current Apple OS which runs on Intel so.... Why can't you guys install Ubuntu or Windows and get better performance?

5043
mAAp Project / Re: BF-Style Conquest Objectives for AA
« on: Saturday, February 25, 2012, 16:53:39 PM »
Yea, there's tickets. AA doesn't have tickets. This is just a work in progress. I have 2 objectives on Bridge now that both teams can capture and you have to sit in an area around them for 20 seconds to capture. Capture all of them and you win. Similar to Conquest.

5044
mAAp Project / Re: Server launching for devs
« on: Saturday, February 25, 2012, 16:18:51 PM »
So it won't run the editor either. No need to be testing maps then.

5045
mAAp Project / BF-Style Conquest Objectives for AA
« on: Saturday, February 25, 2012, 15:53:58 PM »
I modified an objective on Bridge to make it have more of a Battlefield-style Conquest feel. Check it out:

http://youtu.be/7MbCtmPJJ88?hd=1
[youtube]http://www.youtube.com/watch?v=7MbCtmPJJ88[/youtube]

5046
mAAp Project / Server launching for devs
« on: Saturday, February 25, 2012, 15:04:04 PM »
This tool is intended to simplify starting a LAN server and launching AA to test minor changes in a map or game code. All you have to do is enter a username (only for 2.8.5) and a map name and the program will launch a server and then automatically join that server within AA. Easy.



Version 3.2 (For AA 2.8.5):
https://dl.dropboxusercontent.com/u/464376/aac_maap/RunServer_v3.2.exe

Code: [Select]
@ECHO OFF
setlocal EnableDelayedExpansion
TITLE RunServer v3.2 for America's Army 2.8.5 by Spanky
COLOR 07


SET T0="#####################################################################"
SET T1=" _____                     _____                                     "
SET T2="|  __ \                   / ____|                                v3.2"
SET T3="| |__) |  _   _   _ __   | (___     ___   _ __  __   __   ___   _ __ "
SET T4="|  _  /  | | | | | '_ \   \___ \   / _ \ | '__| \ \ / /  / _ \ | '__|"
SET T5="| | \ \  | |_| | | | | |  ____) | |  __/ | |     \ V /  |  __/ | |   "
SET T6="|_|  \_\  \__,_| |_| |_| |_____/   \___| |_|      \_/    \___| |_|   "
SET T7="For America's Army 2.8.5                        by Spanky @ AAO25.com"


ECHO !T0:"=!
ECHO !T1:"=!
ECHO !T2:"=!
ECHO !T3:"=!
ECHO !T4:"=!
ECHO !T5:"=!
ECHO !T6:"=!
ECHO !T7:"=!
ECHO.
ECHO !T0:"=!
ECHO.
ECHO WARNING:
ECHO HAVING THIS PROGRAM IN THE ASSIST INSTALLATION MAY GET YOU KICKED/BANNED
ECHO ONLY USE THIS PROGRAM IN A SEPARATE INSTALLTION FOR MAPPING AND DEV WORK
ECHO.
ECHO Usage:
ECHO After entering a username and map name, this program will start a LAN server.
ECHO It will then launch AA to join that LAN server automatically.
ECHO Upon closing AA, it will kill the server and return to the main menu.
ECHO If the server crashes or fails to start, this program will let you know.
ECHO.
PAUSE
GOTO Username


:Username
CLS
ECHO !T0:"=!
ECHO !T1:"=!
ECHO !T2:"=!
ECHO !T3:"=!
ECHO !T4:"=!
ECHO !T5:"=!
ECHO !T6:"=!
ECHO !T7:"=!
ECHO.
ECHO !T0:"=!
ECHO.
ECHO Type the username you wish to use in the LAN server.
SET /P U=Username:
GOTO Menu


:Menu
CLS
ECHO !T0:"=!
ECHO !T1:"=!
ECHO !T2:"=!
ECHO !T3:"=!
ECHO !T4:"=!
ECHO !T5:"=!
ECHO !T6:"=!
ECHO !T7:"=!
ECHO.
ECHO !T0:"=!
ECHO.
ECHO Your current username is %U%.
ECHO.
ECHO Type the name of the map you would like to load. ex. mp_pipeline
ECHO Don't include the .aao extension, just the filename of the map.
SET /P M=Map Name:
GOTO LoadServer


:LoadServer
CLS
ECHO !T0:"=!
ECHO !T1:"=!
ECHO !T2:"=!
ECHO !T3:"=!
ECHO !T4:"=!
ECHO !T5:"=!
ECHO !T6:"=!
ECHO !T7:"=!
ECHO.
ECHO !T0:"=!
ECHO.
ECHO Your current username is %U%.
ECHO.
ECHO Loading the server... Please wait...
START server.exe LAN %M%.aao log=server.log ini=server.ini
ECHO Waiting 2 seconds to verify server has started...
PING 1.1.1.1 -n 1 -w 2000 >NUL
TASKLIST /NH /FI "imagename eq server.exe" | FIND /I "server.exe" >NUL
SET NodLevel=%ERRORLEVEL%
IF %NodLevel%==1 (GOTO ServerStartFailed) ELSE ( GOTO ServerStarted)


:ServerStarted
ECHO Server has started, launching America's Army...
START armyops.exe 127.0.0.1?Username=%U%
PING 1.1.1.1 -n 1 -w 3000 >NUL
GOTO ClientRunningCheck


:ServerStartFailed
ECHO.
ECHO Server failed to start. Please check your server.ini and try again.
ECHO.
PAUSE
GOTO MENU


:ClientRunningCheck
CLS
ECHO !T0:"=!
ECHO !T1:"=!
ECHO !T2:"=!
ECHO !T3:"=!
ECHO !T4:"=!
ECHO !T5:"=!
ECHO !T6:"=!
ECHO !T7:"=!
ECHO.
ECHO !T0:"=!
ECHO.
ECHO Your current username is %U%.
ECHO.
ECHO America's Army server and client are running.
ECHO Waiting for the client to close...
PING 1.1.1.1 -n 1 -w 2000 >NUL
TASKLIST /NH /FI "imagename eq ArmyOps.exe" | FIND /I "ArmyOps.exe" >NUL
SET NodLevel=%ERRORLEVEL%
IF %NodLevel%==1 (GOTO ClientNotRunning) ELSE ( GOTO ClientRunningCheckServer)


:ClientRunningCheckServer
TASKLIST /NH /FI "imagename eq server.exe" | FIND /I "server.exe" >NUL
SET NodLevel=%ERRORLEVEL%
IF %NodLevel%==1 (GOTO ServerNotRunningClientIs) ELSE ( GOTO ClientRunningCheck)


:ServerNotRunningClientIs
ECHO.
TASKKILL /F /IM "ArmyOps.exe" >NUL
ECHO The game was closed because the server has crashed.
ECHO Consult the server.log file.
ECHO.
PAUSE
GOTO MENU


:ClientNotRunning
CLS
ECHO !T0:"=!
ECHO !T1:"=!
ECHO !T2:"=!
ECHO !T3:"=!
ECHO !T4:"=!
ECHO !T5:"=!
ECHO !T6:"=!
ECHO !T7:"=!
ECHO.
ECHO !T0:"=!
ECHO.
ECHO Your current username is %U%.
ECHO.
ECHO America's Army client has been closed, stopping the server...
TASKKILL /F /IM "server.exe" >NUL
PING 1.1.1.1 -n 1 -w 3000 >NUL
GOTO MENU

Version 2 (For AA 2.5):
https://dl.dropbox.com/u/464376/aac_maap/RunServer_v2.exe

Code: [Select]
ECHO OFF
CLS
ECHO RunServer by Spanky from AAO25.com
ECHO.
ECHO This program will allow you to start a LAN server on any map.
ECHO It will then launch AA to join that server and wait for AA to close.
ECHO Upon closing AA, it will kill the server and return to the main menu.
ECHO.
GOTO MENU

:MENU
ECHO Type the name of the map you would like to load. ex. mp_pipeline
ECHO Don't include the .aao extension, just the filename of the map.
SET /P M=Map Name:


ECHO.
ECHO Loading the server... Please wait...
START server.exe LAN %M%.aao log=server.log ini=server.ini
ECHO Server started, launching America's Army...
START armyops.exe 127.0.0.1
PING 1.1.1.1 -n 1 -w 3000 >NUL
GOTO GameRunningCheck

:GameRunningCheck
CLS
ECHO America's Army is running, waiting for it to be closed...
PING 1.1.1.1 -n 1 -w 2000 >NUL
TASKLIST /NH | FIND /I "ArmyOps"
SET NodLevel=%ERRORLEVEL%
IF %NodLevel%==1 (GOTO GameNotRunning) ELSE ( GOTO GameRunningCheck)

:GameNotRunning
CLS
ECHO America's Army is closed, stopping the server...
TASKKILL /F /IM
server.exe"
PING 1.1.1.1 -n 1 -w 3000 >NUL
CLS
GOTO MENU

Enjoy!

5047
General Chat / Re: SE BRIDGE OR BRIDGE CROSSING
« on: Saturday, February 25, 2012, 14:34:56 PM »
Yea, if we're talking a modification to the map and gameplay, it will be a new map all-together like Bridge Construction.

5048
The Lounge / Re: What are you interested in?
« on: Saturday, February 25, 2012, 13:13:39 PM »
That's the beginning of addiction, when you realize that and try to maintain that high constantly to make yourself feel good.

5049
General Chat / Re: SE BRIDGE OR BRIDGE CROSSING
« on: Saturday, February 25, 2012, 12:59:45 PM »
I dunno how I feel about this. I think it would be cool to convert Bridge ES2 over to 2.5, with the extra tunnelways and whatnot.

5050
mAAp Project / Re: Interdiction converting
« on: Saturday, February 25, 2012, 12:57:17 PM »
I have no idea what you're talking about Koden.

5051
General Chat / Re: SF Hospital roof bug
« on: Saturday, February 25, 2012, 12:55:59 PM »
[youtube]http://www.youtube.com/watch?v=DLlbIajuVVU[/youtube]

5052
Honor Claims / Re: Honor Claim | Bizo
« on: Saturday, February 25, 2012, 12:11:33 PM »
That's what I was thinking, points should be fine for 74. I'll add it now.

5053
mAAp Project / Re: Interdiction converting
« on: Saturday, February 25, 2012, 12:08:42 PM »
Ah, good to know I got a successful troll in and it's not even 9am :)

5054
mAAp Project / Re: Interdiction converting
« on: Saturday, February 25, 2012, 11:24:21 AM »
I got up early this morning to go meet a client but it snowed like crazy overnight so I can't get out. I called them and was waiting for a call back to make sure they weren't waiting for me so I decided to hop on this lovely forums to answer a few queries.

5055
News / Re: Progress report and Intresting Stats...
« on: Saturday, February 25, 2012, 10:44:50 AM »
BAHAHAHAHAHAHAHAHAHAHAHAHAHA That's epic. Windows wins. Again. :)

Pages: 1 ... 335 336 [337] 338 339 ... 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