View Full Version : All about Devmode
Towncivilian
19th July 2004, 22:25
I got the devmode.txt thing that gives u a better spoke and stuff in the M16A2 and removes recoil and all that junk, but it never works with SAWs and some other guns, and does it remove breathing? also is there any way to make it not display fog, i DID put Show fog in to the text file but it didn't remove fog on bridge or anywhere else
EDIT: last time i checked i dont think it removed recoil on the M82 or wa sit M24... anyways i removed the high-rate of fire also...
EDIT2: i fixed the title a bit better
[ MPC Staff Edit ]
~~ATTENTION~~
This thread has been heavily modifed by MpC Staff. More Then 200 posts have been deleted. None of these deletions were due to any real rule breaking violations, so do not be alarmed. This was mainly to allow the thread to be more helpfull and eficient for those just starting to read the thread. I have, and may continue to delete more posts. I'm still hoping that no one minds me doing this, but many of you "had" posted that the thread needed to be cleaned or reposted. I felt it should be cleaned as there's way to much relavent info here to just discard.
-JBL
JohnBLucky
19th July 2004, 23:49
Devmode can't be used while connected to the server. Devmode can be used while in training but it is detected. Devmode can be used before you join a server and is NOT detected by PB or the game itself. Not all devmode commands work while not connected to a server, so they can't be used, like the command to remove fog.
Towncivilian
20th July 2004, 04:29
oke thx...maybe someone can post me the commands or a gimme a link to the commands!
<edit> damn...i just did what u told me, i still can't get it to work!!!
oke here's what i do: 1- putted the demode.txt file in my aao system folder. 2- open my user.ini file and make a bind ( 9=exec AAO.txt), 3-start the game...at main menu press 9 or type exec AAO.txt and 4- join a server...when im in a type devmode 1 and then i type the "show" commands which are the only ones i know for now!!
nothing happends...maybe im doing something wrong :confused:
rename that to whatever you want, put it in C:\Program Files\America's Army\System, at the main menu press console and type 'exec <filename>.txt' without the 's, join a server, and ur set... its totally undetected
temp2
20th July 2004, 13:39
I'm just saying, there's only been 1 public ...
That still did not have all 2.1 weapons. Here they are with their base classes:
Weapon
AGP_Weapon
Weapon_AK74_Rifle
Weapon_AK74su_Rifle
Weapon_GP30_Gren
Weapon_M16A2_Rifle
Weapon_M16A2_Trainer
Weapon_M203_Gren
Weapon_M249_SAW
Weapon_M24_Sniper
Weapon_M4A1_Rifle_Mod
Weapon_M82_Sniper
Weapon_M870_Shotgun
Weapon_MosinNagant_Sniper
Weapon_RPK_SAW
Weapon_SPR_Sniper
Weapon_SVD_Sniper
Weapon_Vintorez_Sniper
ThrowWeapon
Throw_M14_Incendary
Throw_M583_Flare
Throw_M67_Frag
Throw_M83_Smoke
Throw_M84_Stun
Throw_MILES_Granade
Throw_PDM_Mine
Throw_RGD5_Frag
RocketWeapon
Weapon_AT4_Rocket
Weapon_Guerilla_RPG7_Rocket
Weapon_RPG7_Rocket
PistolWeapon
Weapon_M9_Pistol
FixedWeapon
Weapon_BTR_HMG
Weapon_M2_HMG
Thus 2 get perfect accuracy and no recoil for the M249 SAW the command is:
devmode 1 |
set set Weapon_M249_SAW bWpnAccuracy false |
set Weapon_M249_SAW bWpnRecoil false |
devmode 0
No smoke and no stun as follows:
devmode 1 |
set Throw_M83_Smoke csmokeemitter none |
set Throw_M84_Stun _fmaxvisintensity 0 |
devmode 0
Simple. Note though that if the class is not instantiated the operation will fail because there is nothing to affect. To solve that just summon it.
3y3w4nn4ch34t
20th July 2004, 22:37
Heres a little something for you guys to play with. Basically, use UTPT like you would for AAOM. But your going to write it like this.....
set [ name of .u file ][group][property][false or true etc...]
example: devmode 1 | set engine.zoneinfo bDistanceFog false | devmode 0
You can find all the devmode commands this way. But not all work for multiplayer. ;)
JohnBLucky
21st July 2004, 03:38
The command to remove smoke is:
set throw_m83_smoke csmokeemitter none
The code to remove fog is:
set ZoneInfo bDistanceFog 0
The command that was thought to have removed the effects of flash bangs was:
set Throw_m84_Stun _fMaxVisIntensity 0
But it doesn't seem to work (at least for me). These are all public and available in the TXT file posted in this thread. The command to remove fog only works if you use it once you're in a server, but you can't use the command while you're on a server, so look for a new one. These can all be used the same way. You can either type in:
Devmode 1 | set throw_m83_smoke csmokeemitter none | Devmode 0
Or
Devmode 1
set throw_m83_smoke csmokeemitter none
Devmode 0
Or you can put them in a text file in the AAO\System folder and execute the entire text by typing:
Exec TextName.txt
Now, keep in mind that these must be used while not in a server, and must be re-entered every time you join a new server. These can all be found using UTPT. Simply open up any of the existing U files and search through the thousands of lines of code looking for neat things to tweak like the rest of us have. It's just like coding for AAOM, minus the XML stuff. There's many tutorials for UTPT, UScript (which is what the U files are written in, and is very similar to C++), and AAOM. Read the sticky thread "Walkthroughs and Downloads". Specifically the section titled "Source Codes and Hack Tutorials".
temp2
21st July 2004, 04:54
also does anyone have a perfect accuracy command the one in the file when you download it doesnt work for me in multi player.
You probably have what in script is called perfect accuracy but don't know it. Breathing is much harder to switch off as is bullet impact effects as both of these occur on the Pawn you currently posses and not the Weapon. Clearly if a Pawn bone moves that is the attachment point for a Weapon your effective accuracy is reduced.
As soon as server connection initiates it instantiates, updates and destroys the objects derived from the classes you have changed however it does not do this for all public variables for all classes. Check out http://wiki.beyondunreal.com/wiki/ to get you started. http://www.unrealwiki.com/wiki/Console_Commands/Debugging_Console_Commands
N.B. Set commands on the class from which a sub-class is derived affect all sub-classes.
temp2
21st July 2004, 10:34
Where did the _cscopeclass come into play? How was it found. I'm trying to attach some mods, but it isn't working.
This is what I have:
set weapon_m4a1_rifle _cscopeclass Class'AGP_Inventory.AttachMod_Anpvs10_sight'
_cScopeClass is from the inherited AGP_Weapon class. Other possible scopes are:
ScopeW_ACOG_4X
ScopeW_ACOG_Reflex
ScopeW_AK74_Rifle
ScopeW_AK74su_Rifle
ScopeW_AT4_Rocket
ScopeW_M16A2_Rifle
ScopeW_M203_Gren
ScopeW_M249_SAW
ScopeW_M24_Sniper
ScopeW_M4_Rifle
ScopeW_M68_Aimpoint
ScopeW_M82_Sniper
ScopeW_M9_Pistol
ScopeW_MosinNagant_Sniper
ScopeW_RPG7_Rocket
ScopeW_SVD_Sniper
From the base scope class BaseScope the following exposed properties look interesting;:)
bInstantZoom
iZoomFOV
tZoomOverlay
temp2
21st July 2004, 10:48
The command that was thought to have removed the effects of flash bangs was:
set Throw_m84_Stun _fMaxVisIntensity 0
set Throw_M84_Stun _fDamageRadius 0
set Throw_M84_Stun _fKillRadius 0
set Throw_M84_Stun _fEffectDuration 0
set Throw_M84_Stun _fMaxAudIntensity 0
set Throw_M84_Stun _fMaxVisIntensity 0
Should do the trick
temp2
21st July 2004, 10:53
The only problem is, I don't have a file called AGP_Weapons in my System folder.
Dude you seriously need to download UTPT. http://www.acordero.org/projects/utpt/index.htm
The Scope Classes are in AGP_Inventory like the Weapons. The BaseScope class in AGP.
temp2
21st July 2004, 13:43
Alright, am I supposed to be looking in the AGP.u file or AGP_Inventory file?
All of them! You have to work out what you are interested in and search for it. Then see what methods and properties are associated with it.
You can also try in single player, windowed mode (not full screen)
Summon AGP_Inventory.PickupW_RPK_SAW
EditDefault Class=Weapon_RPK_SAW
That then pops up a window showing you the default settings for that class and what classes it is based upon.
Try also ShowDebug
before i forget, can you summon weapons ingame whit this file too?
Dream on dude. Be fun if you could though eh!
mele4nyc
21st July 2004, 18:17
I don't know but i never did get devmode to work on the saw and the rpk. It works fine on everything else but i guess those are the exceptions along with the 3 sniper rifles.
Towncivilian
21st July 2004, 18:55
umm well since i made a no-recoil for all weapons for someone, ill also post it here...
make sure to name it something non-cheat related, just incase :) like bridge.txt or MOUT.txt or summat
Towncivilian
21st July 2004, 20:02
yes, but i can put my one with the recoil INSIDE it so you only have to do one exec.... again... lol might as well
rename it to whatever filename u lke and overwrite the one in the AA system folder and exec <filename>.txt as always at the main menu
Towncivilian
22nd July 2004, 02:18
hey guys, can this replace the devmode.txt (and yes i just kept editing that text file which had the m16 junk 6 times lol) and actually be execed in one complete.txt file and still work as the devmode.txt?
EDIT: here is complete and complete2.txt in one text file
i get this when trying to exec this within a single player server:
Log: Execing mout.txt
ExecWarning: Unrecognized class NightOpticsDevice
ExecWarning: Unrecognized property iMissFire
ExecWarning: Unrecognized property iMissFire
ExecWarning: Unrecognized property iMissFire
ExecWarning: Unrecognized class Weapon_M203_GREN
ExecWarning: Unrecognized class Weapon_M203_GREN
ExecWarning: Unrecognized class Weapon_M203_GREN
ExecWarning: Unrecognized class Weapon_M203_GREN
ExecWarning: Unrecognized class Weapon_M203_GREN
ExecWarning: Unrecognized class Weapon_M203_GREN
ExecWarning: Unrecognized class Weapon_M203_GREN
ExecWarning: Unrecognized class Weapon_M203_GREN
ExecWarning: Unrecognized class Weapon_M203_GREN
ExecWarning: Unrecognized class Weapon_M203_GREN
ExecWarning: Unrecognized class Weapon_M203_GREN
ExecWarning: Unrecognized class Weapon_M203_GREN
ExecWarning: Unrecognized class Weapon_M203_GREN
ExecWarning: Unrecognized class Weapon_M24_SNIPER
ExecWarning: Unrecognized class Weapon_M24_SNIPER
ExecWarning: Unrecognized class Weapon_M24_SNIPER
ExecWarning: Unrecognized class Weapon_M24_SNIPER
ExecWarning: Unrecognized class Weapon_M24_SNIPER
ExecWarning: Unrecognized class Weapon_M24_SNIPER
ExecWarning: Unrecognized class Weapon_M24_SNIPER
ExecWarning: Unrecognized class Weapon_M24_SNIPER
ExecWarning: Unrecognized class Weapon_M24_SNIPER
ExecWarning: Unrecognized class Weapon_M24_SNIPER
ExecWarning: Unrecognized class Weapon_M24_SNIPER
ExecWarning: Unrecognized class Weapon_M24_SNIPER
ExecWarning: Unrecognized class Weapon_M24_SNIPER
ExecWarning: Unrecognized class Weapon_M249_SAW
ExecWarning: Unrecognized class Weapon_M249_SAW
ExecWarning: Unrecognized class Weapon_M249_SAW
ExecWarning: Unrecognized class Weapon_M249_SAW
ExecWarning: Unrecognized class Weapon_M249_SAW
ExecWarning: Unrecognized class Weapon_M249_SAW
ExecWarning: Unrecognized class Weapon_M249_SAW
ExecWarning: Unrecognized class Weapon_M249_SAW
ExecWarning: Unrecognized class Weapon_M249_SAW
ExecWarning: Unrecognized class Weapon_M249_SAW
ExecWarning: Unrecognized class Weapon_M249_SAW
ExecWarning: Unrecognized class Weapon_M249_SAW
ExecWarning: Unrecognized class Weapon_M249_SAW
ExecWarning: Unrecognized class Weapon_M4A1_RIFLE
ExecWarning: Unrecognized class Weapon_M4A1_RIFLE
ExecWarning: Unrecognized class Weapon_M4A1_RIFLE
ExecWarning: Unrecognized class Weapon_M4A1_RIFLE
ExecWarning: Unrecognized class Weapon_M4A1_RIFLE
ExecWarning: Unrecognized class Weapon_M4A1_RIFLE
ExecWarning: Unrecognized class Weapon_M4A1_RIFLE
ExecWarning: Unrecognized class Weapon_M4A1_RIFLE
ExecWarning: Unrecognized class Weapon_M4A1_RIFLE
ExecWarning: Unrecognized class Weapon_M4A1_RIFLE
ExecWarning: Unrecognized class Weapon_M4A1_RIFLE
ExecWarning: Unrecognized class Weapon_M4A1_RIFLE
ExecWarning: Unrecognized class Weapon_M4A1_RIFLE
ExecWarning: Unrecognized property iMissFire
ExecWarning: Unrecognized class Weapon_M82_SNIPER
ExecWarning: Unrecognized class Weapon_M82_SNIPER
ExecWarning: Unrecognized class Weapon_M82_SNIPER
ExecWarning: Unrecognized class Weapon_M82_SNIPER
ExecWarning: Unrecognized class Weapon_M82_SNIPER
ExecWarning: Unrecognized class Weapon_M82_SNIPER
ExecWarning: Unrecognized class Weapon_M82_SNIPER
ExecWarning: Unrecognized class Weapon_M82_SNIPER
ExecWarning: Unrecognized class Weapon_M82_SNIPER
ExecWarning: Unrecognized class Weapon_M82_SNIPER
ExecWarning: Unrecognized class Weapon_M82_SNIPER
ExecWarning: Unrecognized class Weapon_M82_SNIPER
ExecWarning: Unrecognized class Weapon_M82_SNIPER
ExecWarning: Unrecognized class Weapon_M870_SHOTGUN
ExecWarning: Unrecognized class Weapon_M870_SHOTGUN
ExecWarning: Unrecognized class Weapon_M870_SHOTGUN
ExecWarning: Unrecognized class Weapon_M870_SHOTGUN
ExecWarning: Unrecognized class Weapon_M870_SHOTGUN
ExecWarning: Unrecognized class Weapon_M870_SHOTGUN
ExecWarning: Unrecognized class Weapon_M870_SHOTGUN
ExecWarning: Unrecognized class Weapon_M870_SHOTGUN
ExecWarning: Unrecognized class Weapon_M870_SHOTGUN
ExecWarning: Unrecognized class Weapon_M870_SHOTGUN
ExecWarning: Unrecognized class Weapon_M870_SHOTGUN
ExecWarning: Unrecognized class Weapon_M870_SHOTGUN
ExecWarning: Unrecognized class Weapon_M870_SHOTGUN
ExecWarning: Unrecognized class Weapon_M9_PISTOL
ExecWarning: Unrecognized class Weapon_M9_PISTOL
ExecWarning: Unrecognized class Weapon_M9_PISTOL
ExecWarning: Unrecognized class Weapon_M9_PISTOL
ExecWarning: Unrecognized class Weapon_M9_PISTOL
ExecWarning: Unrecognized class Weapon_M9_PISTOL
ExecWarning: Unrecognized class Weapon_M9_PISTOL
ExecWarning: Unrecognized class Weapon_M9_PISTOL
ExecWarning: Unrecognized class Weapon_M9_PISTOL
ExecWarning: Unrecognized class Weapon_M9_PISTOL
ExecWarning: Unrecognized class Weapon_M9_PISTOL
ExecWarning: Unrecognized class Weapon_M9_PISTOL
ExecWarning: Unrecognized class Weapon_M9_PISTOL
ExecWarning: Unrecognized class Weapon_MOSINNAGANT_SNIPER
ExecWarning: Unrecognized class Weapon_MOSINNAGANT_SNIPER
ExecWarning: Unrecognized class Weapon_MOSINNAGANT_SNIPER
ExecWarning: Unrecognized class Weapon_MOSINNAGANT_SNIPER
ExecWarning: Unrecognized class Weapon_MOSINNAGANT_SNIPER
ExecWarning: Unrecognized class Weapon_MOSINNAGANT_SNIPER
ExecWarning: Unrecognized class Weapon_MOSINNAGANT_SNIPER
ExecWarning: Unrecognized class Weapon_MOSINNAGANT_SNIPER
ExecWarning: Unrecognized class Weapon_MOSINNAGANT_SNIPER
ExecWarning: Unrecognized class Weapon_MOSINNAGANT_SNIPER
ExecWarning: Unrecognized class Weapon_MOSINNAGANT_SNIPER
ExecWarning: Unrecognized class Weapon_MOSINNAGANT_SNIPER
ExecWarning: Unrecognized class Weapon_MOSINNAGANT_SNIPER
ExecWarning: Unrecognized class Weapon_RPG7_ROCKET
ExecWarning: Unrecognized class Weapon_RPG7_ROCKET
ExecWarning: Unrecognized class Weapon_RPG7_ROCKET
ExecWarning: Unrecognized class Weapon_RPG7_ROCKET
ExecWarning: Unrecognized class Weapon_RPG7_ROCKET
ExecWarning: Unrecognized class Weapon_RPG7_ROCKET
ExecWarning: Unrecognized class Weapon_RPG7_ROCKET
ExecWarning: Unrecognized class Weapon_RPG7_ROCKET
ExecWarning: Unrecognized class Weapon_RPG7_ROCKET
ExecWarning: Unrecognized class Weapon_RPG7_ROCKET
ExecWarning: Unrecognized class Weapon_RPG7_ROCKET
ExecWarning: Unrecognized class Weapon_RPG7_ROCKET
ExecWarning: Unrecognized class Weapon_RPG7_ROCKET
ExecWarning: Unrecognized class Weapon_RPK_SAW
ExecWarning: Unrecognized class Weapon_RPK_SAW
ExecWarning: Unrecognized class Weapon_RPK_SAW
ExecWarning: Unrecognized class Weapon_RPK_SAW
ExecWarning: Unrecognized class Weapon_RPK_SAW
ExecWarning: Unrecognized class Weapon_RPK_SAW
ExecWarning: Unrecognized class Weapon_RPK_SAW
ExecWarning: Unrecognized class Weapon_RPK_SAW
ExecWarning: Unrecognized class Weapon_RPK_SAW
ExecWarning: Unrecognized class Weapon_RPK_SAW
ExecWarning: Unrecognized class Weapon_RPK_SAW
ExecWarning: Unrecognized class Weapon_RPK_SAW
ExecWarning: Unrecognized class Weapon_RPK_SAW
ExecWarning: Unrecognized class Weapon_SVD_SNIPER
ExecWarning: Unrecognized class Weapon_SVD_SNIPER
ExecWarning: Unrecognized class Weapon_SVD_SNIPER
ExecWarning: Unrecognized class Weapon_SVD_SNIPER
ExecWarning: Unrecognized class Weapon_SVD_SNIPER
ExecWarning: Unrecognized class Weapon_SVD_SNIPER
ExecWarning: Unrecognized class Weapon_SVD_SNIPER
ExecWarning: Unrecognized class Weapon_SVD_SNIPER
ExecWarning: Unrecognized class Weapon_SVD_SNIPER
ExecWarning: Unrecognized class Weapon_SVD_SNIPER
ExecWarning: Unrecognized class Weapon_SVD_SNIPER
ExecWarning: Unrecognized class Weapon_SVD_SNIPER
ExecWarning: Unrecognized class Weapon_SVD_SNIPER
anyone know what it is? well i just hope it works in MP, but all the commands wont, i know that by now.. :glasses:
temp2
22nd July 2004, 04:58
It works damn fine...i just played like 32 rounds whit it and kicked some mayor buts!!!
a few thing that i can't get straight...I've played only bridge whit this devmode thing file...maybe they won't work on birdge, cause i ain't getting no Flash, no fog, no effect from, flash bang, no effect from nades and the sniper scope won't work for the m203,GP and the saw!
here are the things i get when i play on bridge...m16/ak47/RPK whit scope on it and high fire rate and no smoke!!!
Maybe the work on other maps!!
Yep exactly that. It's highly dependant upon what the map actually uses and alters. All these set commands rely on the default values for a class not being changed once the games level starts.
Thus if say and RPK_SAW is only created when a game starts the set command cannot work on anything and if the M24 gets a scope assigned to it at game start you get that scope.
Where its really useful is for things like AK47su's which are usually spawned in their default configuration. It turns such weapons into killing machines.
Of course the next level of game hacking is knowing what variables you wish to change, to alter them dynamically when the game is running and patch class methods.
temp2
22nd July 2004, 12:25
Don’t like the new scope overlay on your AK47su? Well change it.
devmode 1 |
set Weapon_AK74su_Rifle _cscopeclass Class'AGP_Inventory.ScopeW_M82_Sniper'
set ScopeW_M82_Sniper tZoomOverlay Texture'T2-FX.Overlay. m24_overlay_sight'
devmode 0
other overlays include:
m82a1_overlay_sight
acog4x32_overlay_sight
m24_overlay_sight
mn_sniper_overlay_sight
reflex_overlay_sight
svd_overlay_sight
Now for the challenge. The zoom on the scope is controlled by a variable length array aZoomFOV. So to change it the set command should be something like this:
set ScopeW_M82_Sniper aZoomFOV [0] 8.5
But I have not managed to find the syntax for the set command assignment of values for arrays. It definitely can be done as I managed it with the EditDefault Class= ScopeW_M82_Sniper command which pops up the edit box. Can you find the correct syntax? (It would be very nice to set your scope zoom as you require).
temp2
22nd July 2004, 13:32
Default FOV for normal view, no weapon is 85. Not sure if this helps.
The array is is currently:
[0] 8.5
I'd like it to be something like
[0] 20
[1] 10
[2] 5
[3] 2.5
[4] 1
Thus the scope may be able to exibit variable Zoom and very high maginification. i.e the whole screen = 1 arc degree ;-)
Must admit the RPK with the MosinNagant sniper scope is fun.
kilozulu
22nd July 2004, 14:15
Alright, I was screwing around witht he commands posted earlier (thanks TEMP) and I came across some settings. Which I tweaked accordingly.
set Throw_M67_Frag cExplosionEmitter false |
set Throw_M67_Frag _fThrowSpeed 1500.000000 |
set Throw_M67_Frag _fThrowTime 0.000010 |
set Throw_M67_Frag _fMinFuseTime 1.5 |
The cExplosionEmitter makes so that the frag doesnt emit that smoke puff after it explodes, it works online, but nothing else does. They all work in single player though.
It's actually quite cool, cause you can toss a nade twice as far, twice as fast. And the cook is 1.5 seconds as apposed to 4 :)
LOCALACCT
22nd July 2004, 17:01
INSIDE THE TEXT FILE JBL PROVIDED US <SO KINDLY IF I MIGHT ADD> RIGHT UNDER THE
set Throw_M67_Frag SECTION JUST TO KEEP IT NEAT
Cooll..oke where do i put that?!
Nopiw
22nd July 2004, 20:23
@Majic: no fog option works only in single mode.
@LOCALACCT: thx for the help...next time, try typing whitout 'Caps' i get the feeling that ur shouting at me when you type in 'Caps mode':P
@Kilozulu: what if i want only the 'toss a nade twice as far, twice as fast' option...I just put "set Throw_M67_Frag _fThrowSpeed 1500.000000 "
in my file...right?!
It would be cool if that worx in multiplayer. I tested it with 4000.000000... U can snipe with that high values hehe.
JohnBLucky
22nd July 2004, 20:38
~=NEW VERSION 3=~
Changes:
1. Has a bit more menu like structure, giving thanks to those who created it (I've only put them together in a nice formate).
2. Describes how to change the scopes.
3. Fixed a typo for the AT4 Class (Thanks Jonas)
4. Fixed (Partially) the error where when you select a weapon, the changes haven't taken effect (only works for some weapons).
5. Commented out sections which caused visible errors such as (Unrecognized Class). Part of #4 actually, heh.
6. Placed in a zip file to make downloads quicker and save space.
New Feature:
1. Added support for all grenade types.
2. Added an option allowing you to change the look of a scope.
***************************
USAGE:
1. Download the ZIP file.
2. Open it and place the "Complete3.txt" file from the Zip into your AAO\System folder (the default location is C:\Program Files\America's Army\System)
3. Rename the file to anything you want .TXT
4. Open AAO and open the console screen (default button is `, the key to the left of the 1 key).
4. Type "exec complete.txt"
*Note: Replace complete.txt with whatever you named the file and don't use the quotes.
5. Join a server and you're ready to rock.
*Note: You must execute the command before you join a server and everytime you go to join a server.
kilozulu
22nd July 2004, 21:58
Hey guys
JBL - when all the c ommands say: (for example)
set Weapon_AK47_RIFLE iMissFire 0
The command is actually iMisFire 0. There should only be 1 s. Just to ley ya know :|.
Edit - here is the file I use, complete with M24 scopes. If you all want it. (and that edited typo above) Rename the file to whatever you want.
Towncivilian
22nd July 2004, 22:09
ill just do iMissFire 0 replace with iMisFire 0 in notepad :) and remove the ; manually
EDIT: here is JBL's text file, with the iMissFire 0 corrected and enabled. As always, you can rename it.
EDIT2: i believe this topic should be pinned considering it has 2.4k views, and is constantly being updates :beard:
importdrinker
23rd July 2004, 00:45
mega thanks to everyone who worked on this...kewl beanz...
anyway, thought id throw my hat in the ring with this one....
this is Town's fix of JBL's complete3 turned down a notch to be less obvious to opponents.......(180000...omg)
this way if u miss u still got bullets left....
EDIT: I should add, i turned down fire on all weapons, but ONLY fine tuned G, AR, M4A1AUTO, M16, RPK, and AK47.....hmmmm...WC anyone?.....hope I didn't mess anyone up.....anyway srry if i did...
noob-cheater
23rd July 2004, 03:03
ok i need help fast ive got the file unzipped and its in my aao system as afolder named roll. txt but evertime i exec. it at the main menu it flipps the page as if it is on i go ahead and enter the game on tunnel and it doesnt give me auto-fire so i know its not working what do i do plx help me
hey all i have is j.b.ls text.file3 do i need some other devmode first
when in game do u type mpcheatclass r or should it be on all by itself when u first enter the game
ok i got mout text, im gonna try it ill post back later thx man
listen this is what u do, you put the file into your AAO/system folder, you start the game...when the entry page show's up you type exec roll.txt and then you just enter a server!!! you don't need to enter nothing anymore, you will get MOS scope on your Rilfle and on some other weapons 2, not alla them!! some thing just don't work in MP!! you will also get no smoke in MP whit the devmode file!
oke that was it what contains you bigg-boy!!
Now i have another bug or i don't know what it is!!! u used the update that importdrinker made...when start the game and exec the file, i heard all the weapons load/armed up( you know that click click sound) i don't know how you call that exacly, and after it loads up the Vintorez shows up in front of the soldiers creed...Now i don't know if it's suppoce to do that but whit the complete text i've never experiend that before!!!!
Towncivilian
23rd July 2004, 03:40
umm well on Weapons Cache the SAW had a sniper scope :) some things might not work on certain maps but others will, i also had full screen NVG on wep cache
LOCALACCT
23rd July 2004, 05:45
are you sure you dont mean the RPK? NV is ONLY single Player but there is a bug currently in 2.1.0 that will sometimes give you fullscreen NV......... I have tried all maps with this and in no maps do the M249 SAW have scopes or no recoil. Devmode is a built in AAOM but it does have its limitations oh well.... Hope we find more variables to tinker with
oh can we look at these as well?
Suppress=DevLoad
Suppress=DevSave
Suppress=DevNetTraffic
Suppress=DevGarbage
Suppress=DevKill
Suppress=DevReplace
Suppress=DevCompile
Suppress=DevBind
Suppress=DevBsp
Found in my ArmyOps.ini under [Core.System]
i think we can play with these as well
There is also a DevSound command as well
temp2
23rd July 2004, 09:14
I do things slightly differently to John mainly so I can tinker for 30 mins with things before play.
What I do is on game start go to the command prompt and open the map I want to play on:
open sfoasis
playerlock 0
Cntrl-Enter (to be in windowed mode)
I then run a john like script and then run a file containing the following:
devmode 1
summon AGP_Inventory.PickupW_AK74_Rifle
summon AGP_Inventory.PickupW_AK74su_Rifle
summon AGP_Inventory.PickupW_GP30_Gren
summon AGP_Inventory.PickupW_M16A2_Rifle
summon AGP_Inventory.PickupW_M16A2_Trainer
summon AGP_Inventory.PickupW_M203_Gren
summon AGP_Inventory.PickupW_M249_SAW
summon AGP_Inventory.PickupW_M24_Sniper
summon AGP_Inventory.PickupW_M4A1_Rifle_Mod
summon AGP_Inventory.PickupW_M82_Sniper
summon AGP_Inventory.PickupW_M870_Shotgun
summon AGP_Inventory.PickupW_MosinNagant_Sniper
summon AGP_Inventory.PickupW_RPK_SAW
summon AGP_Inventory.PickupW_SPR_Sniper
summon AGP_Inventory.PickupW_SVD_Sniper
summon AGP_Inventory.PickupW_Vintorez_Sniper
summon AGP_Inventory.PickupT_M14_Incendary
summon AGP_Inventory.PickupT_M583_Flare
summon AGP_Inventory.PickupT_M67_Frag
summon AGP_Inventory.PickupT_M83_Smoke
summon AGP_Inventory.PickupT_M84_Stun
summon AGP_Inventory.PickupT_MILES_Granade
summon AGP_Inventory.PickupT_PDM_Mine
summon AGP_Inventory.PickupT_RGD5_Frag
summon AGP_Inventory.PickupW_AT4_Rocket
summon AGP_Inventory.PickupW_Guerilla_RPG7_Rocket
summon AGP_Inventory.PickupW_RPG7_Rocket
summon AGP_Inventory.PickupW_M9_Pistol
devmode 0
The I use utpt and
EditDefault class=xxxxx
Where xxxxx is:
AGP_Character
Weapon_AK74_Rifle
Weapon_AK74su_Rifle
Weapon_GP30_Gren
Weapon_M16A2_Rifle
Weapon_M16A2_Trainer
Weapon_M203_Gren
Weapon_M249_SAW
Weapon_M24_Sniper
Weapon_M4A1_Rifle_Mod
Weapon_M82_Sniper
Weapon_M870_Shotgun
Weapon_MosinNagant_Sniper
Weapon_RPK_SAW
Weapon_SPR_Sniper
Weapon_SVD_Sniper
Weapon_Vintorez_Sniper
Throw_M14_Incendary
Throw_M583_Flare
Throw_M67_Frag
Throw_M83_Smoke
Throw_M84_Stun
Throw_MILES_Granade
Throw_PDM_Mine
Throw_RGD5_Frag
And tinker with things to see what changing them does, re-summoning after every modification.
You can also use:
ShowDebug
During any game to see what classes of Unreal object your Pawn is using. Type ShowDebug again to get rid of that data.
When you get bored tinkering just join a game and your settings are preserved.
LOOKS LIKE A FAIR PERCENTAGE OF PLAYERS ARE NOW USING THIS!
importdrinker
23rd July 2004, 21:35
hey can u turn off the silencer sound cause we all know thers no silencers on non s.f. maps lol
the sounds are client side...only u hear ur gunshots as supressed...other players hear regular gun sound.....its so u dont have ur gun sounds drowning out other sounds etc....
importdrinker
23rd July 2004, 21:48
oh so cool lol i was so worried about that great news thx what else is client
if im not mistaken, the only real giveaways on the devmode are:
a. the rate of fire (how fast ur gun fires) ppl can hear if its faster than normal...
(lol...im hearing in alot of servers now)
b. shooting while reloading....as long as u hear urself reloading, other players see u still reloading...even though dev speed loads...
c. bullet patterns....they can make it pretty obvious that uve got no recoil to the trained eye....(killem quik and hope they dont get a view of ur bullets...thanks dev for no freeview from corpse in 2.1)
no smoke/fog may have some "tells" but i dont play maps that they work on....
noob-cheater
24th July 2004, 01:10
Godmode is only availble on some cheats servers and single player mode!!!
@kilozulu or someone familiar whit tweaking devmodetext...
The cExplosionEmitter makes so that the frag doesnt emit that smoke puff after it explodes, it works online, but nothing else does.
How do i remove this...i want the explotion puff back, cause when i nade go off i only see the raddi, i want to see it the explotion it's makes the game look better :P ...it's cool and all but not very helpfull :nervous: !!!
no disrespect :cool:
$ilent$talker
24th July 2004, 02:57
Find the line that says that, or something about cExplosionEmitter and delete it. But if you don't know what your doing then just backup your devmode and then start deleting lines in there. My custom devmode.txt doesnt have that. Just has perfect acc, and high rate of fire, full screen night vision, and full support (for guns with bipod).
BTW you guys that dont get the saw with perfect accuracy... when you launch AA hit esc key twice (so your at the black screen) and do a mpcheat class ar then do your exec filename.txt.
And somone mentioned high rate of fire giving it away, I tested it along with some other people I know and all you hear (if you were playing against someone with devmode) is a few bursts or whatnot. And as far as silenced guns go, I think the reason they are silenced (or have silenced sounds) is cause the high rate of fire makes the gun sounds really ****ed up. You all know you can change rate of fire by finding the lines that say
set fireadjust 100000
and change 100000 to 20 or a lower number. 20 is plenty fast I think he just put 100000 to make sure you got the max out of it.
And if I'm not mistaken the original one also included full screen nightvision. I never heard anyone mention it so just wandering if it had it or not. Just in console (at that black screen befor joining a server) type in mpcheat nvg and then in game see if you have full screen.
Ok this post is getting long lol.
temp2
24th July 2004, 03:37
It's like the more complicated version of AAOM, except it can only change b values.
The only variable I have not been able to change thus far is the set command for a variable length array.
A tip: If you dont want a object assocated (like say an overlay, class, sound or texture) set the variable to None
It would seem that allot of "Non cheaters" or "anti cheaters" saw the original post too cause I'm looking at allot of AC clans that are pretty good and seem to leave nice groupings (just one hole) into walls when they unload a magazine.
I agree.
JohnBLucky
24th July 2004, 03:53
Sorry, was gone for a day or two, so here we go:
1. Yes, I don't doubt a lot of anti-cheaters are using this because it's not a cheat, it's built into the game. What a bunch of hypocrits.
2. Yes, the Devmode night vision command was built into Complete3.txt.
3. The click/clicks you hear when you use Complete3.txt is the game changing your weapons. It's doing "MPCheat Class AR" and then executing the commands for that weapon, then changing class to the next weapon and executing the commands for that weapon, and so on and so forth. This was in an attempt to make the DevMode commands work for all weapons. If you've noticed, it does remove the errors we once recieved (class does not exist blah blah). Since the game reloads default settings for certain weapons on certain maps however, there's no way to overcome that.
4. Yep, I jacked up all weapon speeds to 18000 in hopes they'd empty in a single click, lol.
5. Pretty much any adjustable feature that's available for any thrown weapon, I put in for each thrown weapon. "set Throw_????_???? cExplosionEmitter False" is the command which removes the explosion effect. Just find that line for each type of grenade (all nade type commands are listed at the top of the file, above the guns, and just below the misc commands).
Think that covers it :)
temp2
24th July 2004, 04:39
Sorry, was gone for a day or two, so here we go:
How about checking out some of the RocketProjectile properties in AGP_Inventory now people? i.e.
Proj_30Gren
Proj_40Gren
Proj_40Gren_Mod
Proj_AT4_Explosive
Proj_BS1_Gren
Proj_Flare_Gren
Proj_Incendiary_Gren
Looks like some interestiung stuff could be there - but the server may control the eventual effect. e.g.
set Proj_PG7B fKillRadius 400
Don't like the inconvenience of waiting for the Fire animation for your reload? No problem. Just have no animation.
set Weapon_AK74su_RIFLE ProneReloadEmptyAnim None
set Weapon_AK74su_RIFLE ProneReloadFullAnim None
set Weapon_AK74su_RIFLE ReloadEmptyAnim None
set Weapon_AK74su_RIFLE ReloadFullAnim None
Seems also to allow you to reload while zoomed on some weapons
JohnBLucky
24th July 2004, 05:59
Well setting the Reload Animations to None did make my reload time absolute zero, however, for whatever reason I was totally unable to fire, zoom, or sprint, or switch weapons for about 10-20 seconds after reloading. I went back to the "Fire" animation. You did give me a great idea though, and it works:
set ScopeW_M24_Sniper tZoomOverlay Texture'None'
I don't like see'ing a scope when I'm zoomed, and this removes it. Just replace "ScopeW_M24_Sniper" with whatever scope you're using with your guns. I changed my setup to the M24 instead of the MosinNagant because the M24 has a farther zoom.
temp2
24th July 2004, 07:00
Well setting the Reload Animations to None did make my reload time absolute zero, however, for whatever reason I was totally unable to fire, zoom, or sprint, or switch weapons for about 10-20 seconds after reloading. I went back to the "Fire" animation.
Bizarre. I played it on servers and it works Ok for me. Sometimes it leaves you scoped and zoomed or sometimes un-scoped and zoomed after you reload while scoped and zoomed. I find it very useful to be able to reload while scoped - even if it is glitchy.
I do have some other things different to you though - like much slower firing. People were getting pissed too often at me with it set to 18000.
Anyone found out how to activate the built in radar in XInterface.u : HUD_Radar and HUD_RadarDot yet? ;-)
$ilent$talker
24th July 2004, 08:47
it should work... it works for me... just make sure after every gun in your .txt file it says something about bwpnrecoil false and bwpnaccuracy false and imissfire 0 (<---not sure what that one does but i leave it in there)...
Or here take a look at my .txt file... perfect accuracy works for me...
devmode 1 | set weapon_m249_saw bwpnrecoil false | set weapon_m249_saw bwpnaccuracy false | set weapon_m249_saw imissfire 0 | set weapon_m249_saw fireadjust 20 | set weapon_m249_saw rsupportedlimit (pitch=16380,yaw=65000) | set weapon_m4a1_rifle_mod bwpnrecoil false | set weapon_m4a1_rifle_mod bwpnaccuracy false | set weapon_m4a1_rifle_mod imissfire 0 | set weapon_m4a1_rifle_mod fireadjust 20 | set weapon_M82_sniper bwpnrecoil false | set weapon_M82_sniper bwpnaccuracy false | set weapon_M82_sniper imissfire 0 | set weapon_m82_sniper fireadjust 20 | set weapon_M82_sniper rsupportedlimit (pitch=16380,yaw=65000) | set weapon_M24_sniper bwpnrecoil false | set weapon_M24_sniper bwpnaccuracy false | set weapon_M82_sniper imissfire 0 | set weapon_m24_sniper fireadjust 20 | set weapon_m24_sniper rsupportedlimit (pitch=16380,yaw=65000) | set weapon_m16a2_rifle bwpnrecoil false | set weapon_m16a2_rifle bwpnaccuracy false | set weapon_m16a2_rifle imissfire 0 | set weapon_m16a2_rifle fireadjust 20 | set weapon_ak47_rifle bwpnrecoil false | set weapon_ak47_rifle bwpnaccuracy false | set weapon_ak47_rifle imissfire 0 | set weapon_ak47_rifle fireadjust 20 | set weapon_ak74su_rifle bwpnrecoil false | set weapon_ak74su_rifle bwpnaccuracy false | set weapon_ak74su_rifle imissfire 0 | set weapon_ak74su_rifle fireadjust 20 | set weapon_at4_rocket bwpnrecoil false | set weapon_at4_rocket bwpnaccuracy false | set weapon_at4_rocket imissfire 0 | set weapon_at4_rocket fireadjust 20 | set weapon_gp30_gren bwpnrecoil false | set weapon_gp30_gren bwpnaccuracy false | set weapon_gp30_gren imissfire 0 | set weapon_gp30_gren fireadjust 20 | set weapon_guerrila_rpg7_rocket bwpnrecoil false | set weapon_guerrila_rpg7_rocket bwpnaccuracy false | set weapon_guerrila_rpg7_rocket imissfire 0 | set weapon_guerrila_rpg7_rocket fireadjust 20 | set weapon_m16a2_trainer bwpnrecoil false | set weapon_m16a2_trainer bwpnaccuracy false | set weapon_m16a2_trainer imissfire 0 | set weapon_m16a2_trainer fireadjust 20 | set weapon_m203_gren bwpnrecoil false | set weapon_m203_gren bwpnaccuracy false | set weapon_m203_gren imissfire 0 | set weapon_m203_gren fireadjust 20 | set weapon_m9_pistol bwpnrecoil false | set weapon_m9_pistol bwpnaccuracy false | set weapon_m9_pistol imissfire 0 | set weapon_m9_pistol fireadjust 20 | set weapon_mosinnagant_sniper bwpnrecoil false | set weapon_mosinnagant_sniper bwpnaccuracy false | set weapon_mosinnagant_sniper imissfire 0 | set weapon_mosinnagant_sniper fireadjust 20 | set weapon_rpg7_rocket bwpnrecoil false | set weapon_rpg7_rocket bwpnaccuracy false | set weapon_rpg7_rocket imissfire 0 | set weapon_rpg7_rocket fireadjust 20 | set weapon_rpk_saw bwpnrecoil false | set weapon_rpk_saw bwpnaccuracy false | set weapon_rpk_saw imissfire 0 | set weapon_rpk_saw fireadjust 20 | set weapon_rpk_saw rsupportedlimit (pitch=16380,yaw=65000) | set weapon_spr_sniper bwpnrecoil false | set weapon_spr_sniper bwpnaccuracy false | set weapon_spr_sniper imissfire 0 | set weapon_spr_sniper fireadjust 20 | set weapon_spr_sniper rsupportedlimit (pitch=16380,yaw=65000) | set weapon_svd_sniper bwpnrecoil false | set weapon_svd_sniper bwpnaccuracy false | set weapon_svd_sniper imissfire 0 | set weapon_svd_sniper fireadjust 20 | set weapon_vintorez_sniper bwpnrecoil false | set weapon_vintorez_sniper bwpnaccuracy false | set weapon_vintorez_sniper imissfire 0 | set weapon_vintorez_sniper fireadjust 20 | set nightopticsdevice nightvisionoverlay | devmode 0
$ilent$talker
24th July 2004, 08:59
Strange... I get perfect accuracy... Or atleast I thought I did... I'll check it out, but am very sure it has it cause I remember getting perfect headshots with the m9 pistol from pretty far away...
No its not case sensitive... try mine (you have to do mpcheat class ar first) and join a server like weapons cache and see if it works...
-Majic
24th July 2004, 09:04
you have to do mpcheat class ar first
pls explain the procedure?
$ilent$talker
24th July 2004, 09:12
ok when you open up AA hit esc twice so your at the black screen with the text...
then type in console mpcheat class ar
now hit enter then exec the file...
ps if you want full night vision before you exec the file do another console command for mpcheat nvg and hit enter... hope that makes sence... my .txt still needs work but im thinking of putting together a .txt pack like .txt's with different features so you dont have to keep editing one devmode file...
JohnBLucky
24th July 2004, 09:37
See, that's what I don't get. I have that already, but right in the text file. In my file, I break up each section by weapon type, and each weapon section is headed with it's own MPCheat Class cheat. Example:
; ------- M249 SAW -------
MPCheat Class AR
set Weapon_M249_SAW _cScopeClass Class'AGP_Inventory.Scopew_mosinnagant_sniper'
set Weapon_M249_SAW _fHitNoise 1
set Weapon_M249_SAW bWpnAccuracy False
set Weapon_M249_SAW bWpnRecoil False
set Weapon_M249_SAW FireAdjust 180000
;set Weapon_M249_SAW iMissFire 0
set Weapon_M249_SAW OutDoorSingleFire Sound'S-WeaponsUS.m4a1.WeaponsUS_m4a1_suppressed_outdoorfi re'
set Weapon_M249_SAW ProneReloadEmptyAnim None
set Weapon_M249_SAW ProneReloadFullAnim None
set Weapon_M249_SAW ReloadEmptyAnim None
set Weapon_M249_SAW ReloadFullAnim None
set Weapon_M249_SAW rSupportedLimit (Pitch=16380,Yaw=65000)
set Weapon_M249_SAW SingleFire Sound'S-WeaponsUS.m4a1.WeaponsUS_m4a1_suppressed_indoorfir e'
EDIT:
Ooops, maybe it's the iMisFire command, I forgot that I didn't correct that yet, lol. iMisFire was originally mispelled as iMissFire.
-Majic
24th July 2004, 09:46
oh ok, i'll go ahead and fix it in yours, because when i used yours everything except perfect accuracy worked, and when i used SS's doing that cheat class thing, ONLY perfect accuracy worked, lol, so i couldnt use scope or see through smoke, i'll go edit urs and fix it all now tho...
thanks for the help guys, thanks SS for the quick responses
//EDIT
wasnt that JBL..
all the iMissFire's are right, just to see if i missed something i did a Ctrl+F Find and typed Miss, and it said no matches, so i know its not that...
Guess its either or for me.
//EDIT
JBL, i tried to move teh SAW part to end of the text file, but it didnt work either..
Tomorrow i'll arrange it so instead of Accuracy recoil fire adjuest then imisfire, im gunna make it same order as in SS's
JohnBLucky
24th July 2004, 10:15
~=NEW VERSION 3.1=~
Changes:
1. Fixed the cause for the error with the "iMisFire" option.
New Feature:
1. Added the ability to remove blackouts from the screen when zoomed (this is part of the scope view feature at the top of the file).
***************************
USAGE:
1. Download the file.
2. Extract the TXT file from the ZIP file.
3. Place the TXT file in your AAO\System folder.
4. Rename the file to anything you want .TXT.
5. Open AAO and open the console screen (default button is `, the key to the left of the 1 key).
6. Type "exec complete.txt"
*Note: Replace complete.txt with whatever you named the file and don't use the quotes.
7. Join a server and you're ready to rock.
*Note: You must execute the command before you join a server and everytime you go to join a server.
$ilent$talker
24th July 2004, 10:25
um I noticed that on the iMissFire part you had an ; before it... isnt that like telling the game to ignore that part...
and um not all guns are fixed with the imissfire spelled incorrectly... lol like the ak still has imisfire... but hey man your probably tired... if your in america no matter where you are its late lol...
anyway if you dont mind I'm gonna use your write up but gonna brake up the commands into files... like a .txt file to remove reload anim on guns a .txt file for full screen night vision etc...
Mabe I'm the only one but some features I sometimes want disabled and I dont want to keep deleting or adding stuff to .txt's...
the ak isnt the only one with miss spelled imissfire... allot have imsifire...
anyway im not pushing you or anything just pointing out to the other dude that couldnt get perfect accuracy..
PS Sorry that all mine has is perfect accuracy and slightly high rate of fire... I dont want to take too much fun out of the game since I use my legit account with this...
JohnBLucky
24th July 2004, 10:32
I was told that the correct usage of the command was "iMisFire" and that is why "iMissFire" was causing errors. Before I found out what was causing the error, to get around it I simply turned the option off by putting the ";" in front of it. Yes, I know that doesn't fix the problem with the fact that not all options are sticking for every weapon. I don't know how to fix it or what causes it. The "iMisFire" fix was a suggestion for the reason he didn't have perfect accuracy. And yeah, feel free to use the write-up I did, just make sure to leave my name in there and the names of those who are already stated as creators (authors, whatever), heh. :)
$ilent$talker
24th July 2004, 10:37
Already done... (the thing witht the names and such) But some peeps I dont know like the very first person to make devmode or discover it so I just said thanks to those that I didnt know the names of...
but the correct way to use it is imissfire 0... but I'm not even sure if that has anything to do with perfect accuracy...
mabe it has to do with your write up not using the |'s ... I dont know...
I'll do one with your write up but using my imissfire and see if it works... if not then I guess its the write up style and I'll just have to go with using the |'s and making is sloppy...
JohnBLucky
24th July 2004, 10:44
iMissFire produces an error when you run it. Give it a try in a singleplayer game. But yeah, removing the | portions could be the kicker.
$ilent$talker
24th July 2004, 10:49
Anyway untill we can get this straightened out you can still use my perfect accuracy with JBL's awesome features...
Just put the two .txt's in the system folder and then exec mine then his... in that order I think...
see if it works... if not then just delete mine...
if its not working by tomorrow I'll just make an old fassion .txt with perfect accuracy and thats it and it will have the |'s in it... so you can use it with JBL's thing...
Anyway late night need sleep so see you guys tomorrow...
JohnBLucky
24th July 2004, 11:15
For those interested in testing, here's a version of mine with all comments edited out and all as one line (commands sepperated by "|" ), going to sleep too, lol.
temp2
24th July 2004, 12:25
but the correct way to use it is imissfire 0... but I'm not even sure if that has anything to do with perfect accuracy...
iMisFire and iNextMisFire are properties of the Weapon class in Engine.u from that class AGP_Weapon is derived in AGP.u from that the various actual weapons are derived in AGP_Inventory.
I think iMisFire determines the amount of misfires that occur and presumably jams. iNextMisFire is used in Fire in AGP_Weapon:
function CalcNextMisFire ()
{
local(None) int iNoMisfire;
int(iMisFire * 0.01);
iNextMisFire = Rand(iMisFire - iNoMisfire) + iNoMisfire;
RapidMisFireRand = FRand();
ClientSendNextMisFire(iNextMisFire,RapidMisFireRan d);
if ( Level.debugMisFire )
{
Log("CALC iNextMisFire" @ string(iNextMisFire) @ "RapidMisFireRand" @ string(RapidMisFireRand));
return;
}
}
i.e. iMisFire is used to calculate iNextMisFire which is used in Fire() with bMisFire to Fire but there are many other variables that control this RapidMisFireRand and RapidMisFirePct being most notable
You guys should really download as start using UTPT if you are not already. http://www.acordero.org/projects/utpt/
-Majic
24th July 2004, 19:36
ClientSendNextMisFire(iNextMisFire,RapidMisFireRan d);
This gives me an idea, is there a way to search the entire game files and stuff for that line of text???? If it is ClientSend then i am just about 100% positive we can edit it, so searching for anything with ClientSend should lead u pretty close to a working MP hack....
JohnBLucky
24th July 2004, 19:40
I don't just release these here on MpC. There's also downloads for this available on CB, CRU, EGL, MPCPF, and UC. Since quite a few peeps seemed interested in the "iMisFire" concept, I tweaked my version to work, adding in the new scope texture (so I get full screen zoom) and uploaded it. It's not so much for the readers here, but the other readers on sites where no one else has uploaded a version of this. Can we get a couple more posts to confirm or deny wether or not the single line txt is working while the formatted txt doesnt?
EDIT:
If we could do automated searches for single lines of code, this would be a lot easier, but at the moment, that's not possible.
JohnBLucky
24th July 2004, 20:09
ok...ill try 3.1 and SilentStalker version!!
oke what's this perfect accuracy!? should it remove your breathing or something?
Perfect Accuracy = no bullet spread. When you're shooting in say a sniper mode, all of your bullets should hit the exact same place (with the adjustments for breathing taken into effect, since we haven't found a working way to remove breathing).
JohnBLucky
24th July 2004, 20:33
1. Open Complete3.1.txt.
2. Click on "Edit".
3. Click on "Replace".
4. Enter this as "Find What":
cExplosionEmitter False
5. Enter this as "Replace With":
cExplosionEmitter True
6. Click "Replace All".
7. Save. Now all of the explosion animations are back :)
$ilent$talker
24th July 2004, 22:19
Damnit!!
Stupid auth is down. Ok first off don't test the .txt's in singleplayer cause all of them gave me perfect accuracy in single, but in MP the only ones I got to test was my version of JBL's write out that all I made it for was perfect accuracy, and an old fassion one and they both did not work, so I wanted to test the one I was using (the one I posted) and see if for some reason that worked but auth just went down for me.
So I'll post the two .txt's I just finished making so you can test them and if they both dont work then try my .txt wich I guess I'll also attatch (it doesnt have even half the features JBL's does but suposedly it has perfect accuracy). Test them in MP cause I'm wandering if all along they never had perfect accuracy. I don't know it's hard to tell when auth is down and you can test shit.
Test: My devmode.txt
Test2: The JBL write up version
Test3: The old fassion write up with |'s
Mabe auth is up for some so If you can test feel free...
EDIT: Ok I'm starting to think that the perfect accuracy does not work in MP because it's like the no fog thing?!? I think at game server start it gets loaded again but I may be wrong.
EDIT2: I see this got a sticky... Hooah.
EDIT3: I strongly recall having perfect accuracy on some maps but dont remember if I had it on weapons cache since 95% of the time I play that map lol I never payed attention. I'm wandering if at server start some guns dont get loaded with the perfect accuracy like the M4, I never tested the AR with it cause some person recognized my name as a cheater and kicked me and then auth went down. Cause if I'm not mistaken the M16 had perfect accuracy...
-Majic
24th July 2004, 22:45
Thats a neg $$
Yours worked for me last nite when i tried, but it never removed smoke, and it gave the iron sights on bridge...
I just tested JBLs 3.1 and the perf accuracy worked in training. I just changed the scope overlays so i know where im aiming at, (JBL, how the **** do u shoot ppl if u are jsut zoomed on them? how the hell do u know what ur aiming at?).
I will try get on some time and see if JBL's 3.1 works on MP too
JBL, can you give me instructions how to put the smoke back ?
Right no it has the no-smoke option, and i really need to see the regular smoke..
thanks ;)
Towncivilian
24th July 2004, 23:45
just remove this whole section in the text file:
; ------- M83 Smoke Grenade -------
set Throw_M83_Smoke cSmokeEmitter None
-Majic
25th July 2004, 00:03
Well i tested 3.1 and the accuracy is not perfect yet.... im gunna try edit mout.txt and see if i can make it only do accuracy soit doesnt f*ck with my scopes and the smoke and sh*t
//Edit
just noticed my sig has never shown..
help pls? checked Edit Signature and all the info is still there....
jsut doesnt show mine, i can see others tho
temp2
25th July 2004, 01:39
Battlefield Tactile Nuclear RPG7 Mod
Twice the kill radius
Twice The hitting Power
Twice the Damage Radius
Twice the rocket speed.
Had trouble testing it in single player – kept killing myself. Might be useful for cleansing areas of OPFOR if it works in Multi Player.
Anyone want to test it out to see if it works in MP?
Towncivilian
25th July 2004, 02:45
sure ill test it in killas server, :) gimme what i should add
noob-cheater
25th July 2004, 03:22
Battlefield Tactile Nuclear RPG7 Mod
Twice the kill radius
Twice The hitting Power
Twice the Damage Radius
Twice the rocket speed.
Had trouble testing it in single player – kept killing myself. Might be useful for cleansing areas of OPFOR if it works in Multi Player.
Anyone want to test it out to see if it works in MP?
Is is an AA mod or Battlefield?
ill be willing to test it out, unless it undetected :P
<edit> @JBL, hey i just edit complete 3.1...remeber you told me how to put back my explotions effect!? well i did what u told me but it seems not to be working, i just see the raddi no expoltion effects, i just tryied it out in single mode to be sure before i post!!! i did exacly what u told me to do... :nervous:
I Like Chicken
25th July 2004, 04:08
Damnit!!
Stupid auth is down. Ok first off don't test the .txt's in singleplayer cause all of them gave me perfect accuracy in single, but in MP the only ones I got to test was my version of JBL's write out that all I made it for was perfect accuracy, and an old fassion one and they both did not work, so I wanted to test the one I was using (the one I posted) and see if for some reason that worked but auth just went down for me.
So I'll post the two .txt's I just finished making so you can test them and if they both dont work then try my .txt wich I guess I'll also attatch (it doesnt have even half the features JBL's does but suposedly it has perfect accuracy). Test them in MP cause I'm wandering if all along they never had perfect accuracy. I don't know it's hard to tell when auth is down and you can test shit.
Test: My devmode.txt
Test2: The JBL write up version
Test3: The old fassion write up with |'s
Mabe auth is up for some so If you can test feel free...
EDIT: Ok I'm starting to think that the perfect accuracy does not work in MP because it's like the no fog thing?!? I think at game server start it gets loaded again but I may be wrong.
EDIT2: I see this got a sticky... Hooah.
EDIT3: I strongly recall having perfect accuracy on some maps but dont remember if I had it on weapons cache since 95% of the time I play that map lol I never payed attention. I'm wandering if at server start some guns dont get loaded with the perfect accuracy like the M4, I never tested the AR with it cause some person recognized my name as a cheater and kicked me and then auth went down. Cause if I'm not mistaken the M16 had perfect accuracy...
I was getting perfect accuracy on bridge with the m16. I did exec test.txt then exec test2.txt then exec complete3.txt .I'm goning to try it with other weapons now.
I Like Chicken
25th July 2004, 04:14
K it worked with the m82 but not the saw no smoke and instant reload worked. The saw was more accurate but not perfect.
noob-cheater
25th July 2004, 04:18
K it worked with the m82 but not the saw no smoke and instant reload worked. The saw was more accurate but not perfect.
did you used complete 3 or 3.1?!
I Like Chicken
25th July 2004, 04:20
Complete3, it worked with 3.1 but I didnt have a cross hair so I went back to 3.
temp2
25th July 2004, 07:06
sure ill test it in killas server, :) gimme what i should add
No guarantees it works in multi player- watch out I keep killing myself in single player ;-). I’ve included information about the original values. If any of this works we should be able to mod up the other projectiles.
Could you try some close range action also. Even if the round does not explode it should kill.
devmode 1
;MomentumTransfer 20000.000000
set Proj_PG7B MomentumTransfer 40000
;ImpactDamage 100
set Proj_PG7B ImpactDamage 200
;Damage 150
set Proj_PG7B Damage 300
;DamageRadius 1312.335938
set Proj_PG7B DamageRadius 2624
;fKillRadius 262.467194
set Proj_PG7B fKillRadius 524
;MaxSpeed 5000
set Proj_PG7B MaxSpeed 10000
;speed 5000
set Proj_PG7B speed 10000
;InitialSpeed 1800
set Proj_PG7B InitialSpeed 3600
set Proj_PG7B RandRocketPitch 0
set Proj_PG7B RandRocketYaw 0
set Proj_PG7B RandRocketRoll 0
set Proj_PG7B RandomScaleFactor 0
devmode 0
-Majic
25th July 2004, 08:41
ok ive looked at the code, ive stared at it for half an hour and dont see a diff (except caps and format) between the bWpnAccuracy and iMisFire..
but the MOUT.txt worked, and complete3.1.txt didnt. Only think i changed on 3.1 was to get my scope back, and get explosions back...
importdrinker
25th July 2004, 08:51
i did notice there were some lines in the first comment section of complete3.1 that didn't have the ";" preceding them...i just checked and they're still there so maybe thats causing a problem...i dunno but thought id point it out...
LOCALACCT
25th July 2004, 09:10
Temp2 mcould not see any appreciable diffrence from the rpg in MP...But it is cool as **** in SP
temp2
25th July 2004, 10:44
Temp2 mcould not see any appreciable diffrence from the rpg in MP...But it is cool as **** in SP
I tried it myself also on a MP server and have to agree. Back to the drawing boards on that one. :(
Incidentally I seem to have stumbled upon a secondary functional mechanism for achieving no-recoil and perfect accuracy. And am trying to get the non-activated HUD_Radar working in XInterfacte.u ;-)
$ilent$talker
25th July 2004, 10:46
Ok if you are testing these different devmodes try different maps, mainly ones that use different guns like do a bridge server and then a weapons cache. Stupid auth is still down (I keep getting some message to complete training even though all training is complete lol). And to get the AR to work, in that black screen with the soldier creed, type in console, mpcheat class ar and hit enter, and then execute the file...
All I can think of is that some guns dont get loaded in some maps... I haven't been able to test this in bridge since that's what most of you are saying perfect accuracy worked/works in, cuase auth is down. I hardly ever play anything other thatn weapons cache and in that it seems that perfect accuracy doesnt work.
Now if you notice perfect acc works in single player mode with any devmode (or atleast any of mine). I'm really confused and can't go anywhere cause of stupid auth. Mabe I'll try at around 3:00 tonight and see if auth is back up.
JohnBLucky
25th July 2004, 14:00
======= Complete4.txt =======
Compiled by JohnBLucky
Note: The only thing I've done is put them in a format which is easier to read and edit. Be kind and thank them.
Original creation privately by CappyR
Original mods by Uber[MOUSE]
New commands and additonal work by:
$ilent$talker, Temp2, Kilozulu, LionHeart
======= Options List =======
This allows you to easily select which options you'd like to have on or off. The way I did this was by writing up multiple versions of the text. Some have different options turned on/off.
Full Feature List:
AutoFire For All US Army Weapons
Full Movement While Supported
Full Screen Night Vision
Increased Rate of Fire
Instant Reload
Modified Scopes For Every Weapon
No Fog
No Miss Fires
No Recoil
No Smoke
Perfect Accuracy
Sound Adjustments
Zero Nade Effects (Incediary, Flares, Frags, and Stun Nades)
Complete4A:
All features including full screen zoom (No Scope View).
Complete4B:
All features including M24 scope zoom and MosinNagant scope view
Complete4C:
All features including full screen zoom (No Scope View), EXCLUDING:
Increased Rate of Fire
Complete4D:
All features including M24 Scope Zoom and MosinNagant Scope View, EXCLUDING:
Increased Rate of Fire
Complete4E:
All features including full screen zoom (No Scope View), EXCLUDING:
Increased Rate of Fire
No Smoke
Complete4F:
All features including M24 Scope Zoom and MosinNagant Scope View, EXCLUDING:
Increased Rate of Fire
No Smoke
Complete4G:
All features including full screen zoom (No Scope View), EXCLUDING:
No Smoke
Complete4H:
All features including M24 Scope Zoom and MosinNagant Scope View, EXCLUDING:
No Smoke
Complete4I:
All features including full screen zoom (No Scope View), EXCLUDING:
Increased Rate of Fire
No Smoke
Zero Nade Effects
Complete4J:
All features including M24 Scope Zoom and MosinNagant Scope View, EXCLUDING:
Increased Rate of Fire
No Smoke
Zero Nade Effects
Complete4K:
All features including full screen zoom (No Scope View), EXCLUDING:
Increased Rate of Fire
Zero Nade Effects
Complete4L:
All features including M24 Scope Zoom and MosinNagant Scope View, EXCLUDING:
Increased Rate of Fire
Zero Nade Effects
Complete4M:
All features including full screen zoom (No Scope View), EXCLUDING:
No Smoke
Zero Nade Effects
Complete4N:
All features including M24 Scope Zoom and MosinNagant Scope View, EXCLUDING:
No Smoke
Zero Nade Effects
Complete4O:
All features including full screen zoom (No Scope View), EXCLUDING:
Zero Nade Effects
Complete4P:
All features including M24 Scope Zoom and MosinNagant Scope View, EXCLUDING:
Zero Nade Effects
======= Installation And Usage =======
1. Download the "ZIP" file anywhere on your computer.
2. Extract everything from the "ZIP" file into one place (wherever).
3. Select whichever file has the options you want (or all of them) and place that file in your AAO\System folder (the default location is C:\Program Files\America's Army\System).
4. Rename the file(s) to anything you'd like .TXT (this is to keep AC's from knowing a cheat file name to scan for on leased servers).
5. Open AAO, and before you enter a server, press ESC twice or until you're at the all black screen showing the Soldier's Creed.
6. Open the command console (the default key for this is ', the key to the left of the 1 key).
7. Type "Exec YourTextNameHere.txt" (without the quotes and replacing "YourTextNameHere" with whatever you named the TXT file).
8. Join a server and you're ready for total PWNAGE!!
*Note: You must repeat steps 6 and 7 before you join a server, everytime you join or even reconnect to a server.
======= Option Explanations =======
1. AutoFire For All US Army Weapons:
This is a neat one giving all US Army weapons full automatic fire. Keep in mind it resets if you change fire mode/switch to 203 nades. If that happens just drop it and pick it up again to go back to automatic. This command can be set for each weapon that doesn't normally have automatic fire individually. The code for this is, "erof rof_auto". A sepperate command for the M24 needs to be set for this to work as well, "bRequireRecharge False".
Example (Fully Auto M24 Sniper Rifle):
set Weapon_M24_SNIPER erof rof_auto
set Weapon_M24_SNIPER bRequireRecharge False
2. Full Movement While Supported:
This command allows you to completely circle around (instead of just looking ahead) while using the supported bi-pod mode of some weapons. The command is "rSupportedLimit (Pitch=16380,Yaw=65000)" and can be set for each weapon individually. To save time, I have added this command for every weapon.
3. Full Screen Night Vision:
This is a simple command that a lot of people love. The command is "set NightOpticsDevice NightVisionOverlay". The only real thing to keep in mind is that you must use "MPCheat NVG" before you execute the command. This is so that there's a version of the NightVision Goggles for the game to edit. No, "MPCheat NVG" does not work while in a server, this is just to make the "set NightOpticsDevice NightVisionOverlay" work before you enter a server.
4. Increased Rate of Fire:
It's very simple to edit this yourself. Simply open up any of the Complete TXT's and click on "Edit" and then "Find" and look for "FireAdjust". This is where the rate of fire is adjusted. By default, I have set all of my Rate of Fire at 180000, which is pretty much the fastest it goes. Feel free to edit it to your liking or remove it altogether. This command can be set for each weapon individually.
5. Instant Reload:
Just what it says. It allows you to instantly reload your weapon. The effect is actually caused by using four commands:
ProneReloadEmptyAnim Fire - reloading an empty gun while prone
ProneReloadFullAnim Fire - reloading a full gun while prone
ReloadEmptyAnim Fire - reloading an empty gun
ReloadFullAnim Fire - reloading an full
6. Modified Scopes For Every Weapon:
This is quite possibly the most complex section which many people like to edit. These TWO commands allow you to switch the scope zoom level and view types. The first command is "_cScopeClass Class'AGP_Inventory.ScopeW_XXX_XXX'" where XXX is replaced with whichever type of phsyical scope you'd like. This command can be set for each weapon individually, and by default, these texts use ScopeW_M24_SNIPER because it has the highest selectable zoom level. Other Usable Scopes with the _cScopeClass:
ScopeW_ACOG_4X
ScopeW_ACOG_Reflex
ScopeW_AK74_Rifle
ScopeW_AK74su_Rifle
ScopeW_AT4_Rocket
ScopeW_M16A2_Rifle
ScopeW_M203_Gren
ScopeW_M249_SAW
ScopeW_M24_Sniper
ScopeW_M4_Rifle
ScopeW_M68_Aimpoint
ScopeW_M82_Sniper
ScopeW_M9_Pistol
ScopeW_MosinNagant_Sniper
ScopeW_RPG7_Rocket
ScopeW_SVD_Sniper
Example:
set Weapon_M16A2_RIFLE _cScopeClass Class'AGP_Inventory.ScopeW_M24_Sniper'
The second command is a little bit stranger. The command is "tZoomOverlay Texture'T2-FX.Overlay. XXX_overlay_sight'" where XXX is replaced with whichever type of scope view you'd like. Scope view is really just a term I made up which stands for the type of cross hair or the look of the scope as you look through it. This command can be set for every type of scope, but really you only need to set it for whatever physical scopes you'd like to change the view of. By default these texts use 1 of 2 settings. One being "None" so you can zoom in full screen, and "mn_sniper_overlay_sight" because most people seem to prefer the MosinNagant Sniper View. Other usable views with this command include:
none
m82a1_overlay_sight
acog4x32_overlay_sight
m24_overlay_sight
mn_sniper_overlay_sight
reflex_overlay_sight
svd_overlay_sight
Example:
set ScopeW_M24_Sniper tZoomOverlay Texture'T2-FX.Overlay. m24_overlay_sight'
This one uses the original M24 scope view with M24 Scopes
set ScopeW_M24_Sniper tZoomOverlay Texture'None'
This one removes the view on M24 scopes, allowing you to zoom in full screen
7. No Fog:
This only works in single player, but I've added it so n00bs will quit asking for it (LoL). The command is "set ZoneInfo bDistanceFog 0"
8. No Miss Fires:
I'm not even sure if this command works, or if it really is to remove miss fires, but the command is "iMisFire" and can be set for each weapon individually.
9. No Smoke:
This is pretty much the easiest option to turn on/off. Simply open up any of the Complete TXT's and click on "Edit" and then "Find" and look for "cSmokeEmitter". Remove the whole line to turn the option off. To turn the option on, simply write this line in any Complete TXT, "set Throw_M83_Smoke cSmokeEmitter None"
10. Perfect Accuracy:
This command seems to bring up the most controversy, but it's the best solution we have for "Perfect Accuracy" at the moment. The command is "bWpnAccuracy False" and can be set for each weapon individually. Some say this doesn't work, while others say it does. I have left it in because I don't see why it shouldn't work.
11. Sound Adjustments:
These are mainly for your own convieniance. All the weapon fire sounds have been set to sound like silenced weapons in these texts. ONLY YOU HEAR THEM AS SILENCED!!! This is for players who've chosen to increase their rate of fire, because normal fire sounds with increased rates of fire really sound horrid, lol.
Examples of these commands are:
set Weapon_AK74su_RIFLE _fHitNoise 1
set Weapon_AK74su_RIFLE OutDoorSingleFire Sound'S-WeaponsUS.m4a1.WeaponsUS_m4a1_suppressed_outdoorfi re'
set Weapon_AK74su_RIFLE SingleFire Sound'S-WeaponsUS.m4a1.WeaponsUS_m4a1_suppressed_indoorfir e'
12. Zero Nade Effect
This one is a lil more complicated, mainly because it has many commands all under one option name. Any of the commands can be quickly found and edited in the same way as the options listed above. Simply open up any of the Complete TXT's and click on "Edit" and then "Find" and look for any of the command names listed below:
_fDamageRadius - This determines how far around the nade that damage will be sustained
_fEffectDuration - This determines how long the effects last (such as screen shaking and noise)
_fKillRadius - This determines how far around the nade that death will occur
_fMaxAudIntensity - This determines the maximum volume of the noise effect (setting to 0 turns this off)
_fMaxVisIntensity - This determines the maximum visual effect (setting to 0 turns this off)
cExplosionEmitter - This turns the view of nades exploading on/off (True/False)
Example:
set Throw_M67_Frag cExplosionEmitter False
Turns off the visual effect of a M67 Frag grenade exploading
set Throw_M84_Stun _fMaxVisIntensity 0
Turns off the black screen effect of being flash banged
======= Editing Tips =======
If you're interested in editing these text files or even finding some stuff for yourself, here's some good basic tips:
1. The "find" function in NotePad is your friend. You can use it to make sure you have or don't have certain settings easily.
2. The "replace" function in NotePad is just as handy, since some commands appear in the same way but in multiple places.
Example:
Replace- "cExplosionEmitter False" with "cExplosionEmitter True"
3. Keep it organized. It's a lot easier to find things you want to change, add, or even remove if you put them all in the same type of area. I personally keep all gun options by each other to make editing weapons a lot quicker and easier.
4. UTPT is a great asset for those of you looking at creating your own commands. It's used to read the .U files that make up the game. You can have them all the information displayed in multiple ways as well. I prefer using "Export Tree" mainly because you can organize all of the info by Group (like AGP_Weapon or AGP_Pawn), Name (like bWpnRecoil), Class (like a Function or a Boolean), Size (if you want to compare the sizes of info), and even organize by Offsets which is great for locating certain areas that you only know the offset of (AAOM uses offsets, so this is great for locating stuff already in AAOM XML's).
UTPT is totally free and can be downloaded from it's main site here:
http://www.acordero.org/projects/utpt/index.htm
5. EditDefault. This is a great command which is built into the game itself. EditDefault allows you to view and alter information, like these texts do, on the fly while you're in game. Plus you're only see'ing the information that affects the specific item you specify.
Example:
EditDefault Class=Weapon_M249_Saw
Weapon_M249_Saw is the real name of the SAW. This would bring up a screen which you can then click and view (in a tree format) all of the different options that affect the gun.
======= Known Bugs =======
There are some known bugs using these DevMode commands. For some reason, not every weapon will keep all of the changes set in these files. This is most apparent with the SAW on Bridge. To describe the problem, when you get in game and pick the saw, in game the sound is the same as normal, you have recoil, the scope is the same old iron sight, etc, etc. Another bug is "Perfect Accuracy". Some people believe it works, some people don't, some people believe it only works on certain weapons, certain maps, etc, etc, etc. I don't really have much to say about it, but if you do figure out something about Perfect Accuracy, feel free to share the info.
noob-cheater
25th July 2004, 14:26
Geez JBL, thx for writing it up..very anal!:P
I have 1 question...is this better than 3.1 i meen is there an upgrade or something?! otherwise i'll just hold-on on 3.1, im fine whit it!!!
Btw thx for the UTPT link, im kinda getting interested in this kinda stuff!! maybe ill have my own AAO hack in a few years;)...ill call him evil-noob:P
JohnBLucky
25th July 2004, 14:56
PB's had devmode for months, it's nothing recent. Hell, we used devmode in AAO 2.0. Yes, Complete4 adds LionHearts AutoFire for US Army Weapons (like an automatic M16).
noob-cheater
25th July 2004, 18:12
I just used 4a and mod my own scopes...i used Acog 4× or something like that, its the SF m4m sniper scope, you can scroll fast whit it and you get also a good view! and my snipers i put on alla them the s24 scope;)...
btw the full automatic m16 kicks ass NOW thx to lionhearts:)
Oh and one thing else...i can't get my expoltion animation back:( i followed the instuctions and did it the exact way as it saids...Help plzz!!!
noob-cheater
25th July 2004, 20:14
he already told me how to do it once but it doesn't work....:(
another thing...does the full nvg work in MP!? cause it don't work for me in SP, neighter in MP...
JohnBLucky
25th July 2004, 20:35
Full Screen NightVision should be fine. I never tested it for multiplayer but it did work for me in singleplayer. It's one of the commands that was in the original set of devmode command I based the Complete series off of.
As for getting the explotion effects back, simply go through your TXT file and remove every line that says "cExplosionEmitter False". I think the problem you're having is the fact you're not closing the game and re-opening it after you remove those lines. Works for me, tested.
-Majic
25th July 2004, 21:07
ok i still cant get perfect accuracy to work, not even after doing what I Like Chicken did, so either he's BSing or he doesnt know what he's talking about (no offense) But i executed test.txt, test2.txt, and then JBLs 3.1 and later 3, and i still didnt get perfect accuracy. The only time the bullets all go in same hole is on burst with the m16 on bridge as far as i know, and even then, the bullets dont go where the x hair is, its always a little bit off, and always changes, therefore that is not perfect accuracy. Perfect accuracy would be where every shot you fired wild hit exactly where the scopes x hair is, or if ur not zoomed in, and u look at a wall without moving and shoot buncha shots single shot there only one big hole. So if sum1 can tell me how to get perfect accuracy to work for bridge and for pipeline, please tell me, but only if you are sure that its perfect accuracy, i think I Like Chicken was talking about no recoil working...
Perfect accuracy as far as i tested works in SP, not in MP, using JBLs file alone, or use the 1st and 2nd test txt's and one of jbls
-Majic
25th July 2004, 22:31
ok, i just want to know so i can double firing rate isntead of wasting half the clip with a click
importdrinker
25th July 2004, 22:34
ok, i just want to know so i can double firing rate isntead of wasting half the clip with a click
This is what i use....it has lowered rates for all guns, m24 scope....and has nade visuals...
noob-cheater
25th July 2004, 22:36
ok, i just want to know so i can double firing rate isntead of wasting half the clip with a click
this is an QUOTE from $ilent$talker early posted in this thread.
You all know you can change rate of fire by finding the lines that say
set fireadjust 100000
and change 100000 to 20 or a lower number. 20 is plenty fast I think he just put 100000 to make sure you got the max out of it.
-Majic
25th July 2004, 22:50
found something very interesting with UTPT. i am HW banned and in AGP.U under AGP_GameInfo there was something that said something about broadcasting as a cheater, sum1 go check that out that is NOT banned and see if it has anything like that...
Theres 3 bools there that could be turned off maybe to get you off broadcasting that ur a cheat, maybe then it wont tell PB ur a cheat and disconnect u, there was something about if cheater then ClientDisconnect and some shit like that, sum1 check it out, JBL or temp2, some1 good..
\\
Also found something called bDeepTrace in AGP.u under HUDPlayerID, maybe that can trace players farther away and give their id?
JohnBLucky
25th July 2004, 23:35
Perfect Accuracy Testing:
So far I haven't found anything that seems to work, but I've been trying a lot of bool's that I've found in AGP and Engine.u. For those of you interested, here's some things I've tested (none of which work so far):
HumanController bHumanAim
AGP_Weapon (AGP_Weapon.Fire) bAdjust
AGP_Weapon (AGP_Weapon.ServerFire) bNoAdjustAim
AGP_Weapon bWpnAccuracy
Controller bPerfectAccuracy
I remembered that to activate Perfect Accuracy in AAOM you had to have the "No Aim Adjust" option on. I used UTPT to check out what that affected, and it appeared to have changed bAdjust from True to False. bAdjust is called in AGP_Weapon.Fire, but I cannot seem to set it using AGP_Weapon, Fire, AGP_Weapon.Fire, or any weapon such as Weapon_M16A2_RIFLE. If we could figure out how to set that to False however, I believe we'd have perfect accuracy again.
the grinch
25th July 2004, 23:42
oh yeah one more thing. i just first used this devmode last night and all the guns loading after i opened it scared the shit outta me. lol so everyone be prepared :D
-Majic
26th July 2004, 00:04
Guys, do help if u'd like, if u see soemthing interesting im sure JBL or someone wouldn't mind taking a look at it. Turns out me adn him were working on the same thing for a few hours and he just posted before i did hehe.
noob-cheater
26th July 2004, 00:07
this is kinda offtopic but does somebody know where or how can i learn UTPT?
JohnBLucky
26th July 2004, 00:09
It does that because the text calls for it (not like anyone asked for an explanation but here we go):
a simplified version of the text looks like this:
devmode 1
MPCheat Class R
Set all of your m16 settings
MPCheat Class AR
set all of your saw settings
devmode 0
Now, MPCheat commands do not work at all in the server, so that's not why they're in the TXTs. To edit the options (like the fire rate) for some guns, you must have one of the guns (or at least have one summoned). So, the TXTs summon a copy of each gun before attempting to set the options for that gun. This way you don't get those "Unrecognized Class" errors when you set the options for a weapon.
EDIT:
To learn about hacking (of any kind), read the "Walkthroughs and Downloads" thread section "Source Codes And Hack Tutorials". There's a specific set of tutorials just for hacking with UTPT, AAOM, etc.
noob-cheater
26th July 2004, 00:20
well i did ask you before and you got me anwerd 2:P
look at this, a quote from a early post in this thread
The click/clicks you hear when you use Complete3.txt is the game changing your weapons. It's doing "MPCheat Class AR" and then executing the commands for that weapon, then changing class to the next weapon and executing the commands for that weapon, and so on and so forth. This was in an attempt to make the DevMode commands work for all weapons. If you've noticed, it does remove the errors we once recieved (class does not exist blah blah). Since the game reloads default settings for certain weapons on certain maps however, there's no way to overcome that.
just to prove it :cheeky:
and btw i got my explotion effect back..thx to you;)
-Majic
26th July 2004, 00:58
temp2, or SS, or anyone, do u know how to put in a class if its in like a subcatagory?
like bWpnAccuracy is under AGP_Weapons, but bAdjust is under AGP_Weapons and then in another branch called Fire, how do u get both branches in, i tried:
Weapon.Fire
Weapon_Fire
Weapon,Fire
Weapon'Fire
Weapon;Fire
Weapon:Fire
Weapon/Fire
Weapon\Fire
Nothing worked...
importdrinker
26th July 2004, 01:20
since alot of commands are space delineated and its not on your list i though id suggest it at the risk of sounding.....
did u try "Weapons Fire"...just a space?
$ilent$talker
26th July 2004, 01:21
Hmm I don't know if it needs a branch. I never went to indepth with devmode, I know you can go out there, I think I tried the longes to remove breathing but with no luck so far.
Just try set weapon blah blah blah bAdjust false or whatever...
And for those that couldnt get the thing to work properly on the full screen night vision try doing an mpcheat nvg before you exec the file.
Like in console type in mpcheat nvg and then exec filename.txt... try it under the balck screen with the soldier creed and when the .txt is executed hit your nightvision key... if its in fullscreen then it loaded properly.
That's why I load all my .txt's in that screen cause you can test to see if your guns have recoil or not and etc..
BTW Good job on complete4 JBL... Hooah
Perfect accuracy may not work but you do have no recoil... so thats better then nothing... or in this case... something...
-Majic
26th July 2004, 01:23
yes i did try with jsut a space, but then it says unrecognized object Fire or something like that. I also jsut tried Set Weapon bAdjust and it said unrecognized object bAdjust, so sumhow u have to tell it where the object is..
$ilent$talker
26th July 2004, 01:38
Hmm... this is most definately a question for JBL since he seems to be deep into this devmode stuff. Me I'm still on AAOM lol. Even though its detected I want to see how much stuff (no matter if it helps or is totally pointless) is client side.
Guess I should start into devmode since its kinda like AAOM.
Sorry I couldn't help you out much. PM JBL, or wait untill hes online (if he isnt now) to ask him, or temp 2, he knows quite a bit of coding...
temp2
26th July 2004, 01:39
temp2, or SS, or anyone, do u know how to put in a class if its in like a subcatagory?
like bWpnAccuracy is under AGP_Weapons, but bAdjust is under AGP_Weapons and then in another branch called Fire, how do u get both branches in, i tried:
I think I see what your on about, those values are the either
properties of the class
parameters to the method or
local properties to the method.
This means in the first case that the properties can be changed by
set class property value
And in the last two you cannot do anything. Remember however that if a method is used (and fire must be!) that you may be able to tweak whatever calls it. This is probably a method of the Pawn and sub-classes (AGP_Character...) and Controller and sub-classes.
It's a shame UTPT will not dump all the source of one u file to a txt file to search to method usage. AA:O is a very complex game compared to most I have seen. However this complexity is to our benefit as there are many orthogonal ways of achieving the same result.
temp2
26th July 2004, 01:51
this is kinda offtopic but does somebody know where or how can i learn UTPT?
I don't think it is off topic. Just open up AGP_Inventory.u in the AA:O system file to start.
If you don't understand the de-compiled script the don't worry. The main thing to look at is the properties (variables) of the class (object) you want to do something with. Most of these have names that roughly approximate to what they are doing.
True/False (On/off) like properties are usually prefixed by "b", try setting these to their opposite values in single player and try out the class afterwards. You will note NoRecoil, etc... is prefixed with a "b". It's that easy!
After you get the hand of that you will start to pick up on other stuff.
I use UTPT to see the script behind methods of classes.
I use EditDefault class=xxxxx in single player (windowed!) to see property values of classes and manually change them, summoning the class of sub classed object after each tweak to try out.
ShowDebug in live games to see what my Pawn is up to, what classes it is using and what is attached. (type ShowDebug again to get rid of the information)
N.B. The [Dev]'s have disabled EditActor class=xxxxx which is a major bummer as this edits live objects :(. A prize to the first person who figures out how to re-enable it. It looks like its just disabled.
$ilent$talker
26th July 2004, 02:16
Ok this is my revised version of the my devmode. It's broken down so if you dont want certain features you don't have to edit your devmode.txt or whatever you named it.
Directions:
Put all the .txt's in your X:\Program FIles\America's Army\system folder (X is the hard drive you have it installed to). I put the .txt's in different folders and named the folders so its easier to tell what that .txt is for.
Now open up AA and hit esc twice so you're at the black screen with the soldier creed, and in console (~ key by default) type in what sets you want.
Ex. exec set1.txt
Ex. exec set2.txt
etc... for whatever sets you want.
If you want all of them (recommended since I noticed that this way every single gun gets loaded) do an exec all.txt
You'll hear a bunch of guns loading and then you'll have a pistol in your hands. Do an mphcheat changeclass x where x is the gun you want and test out and see if all the guns have all the feats.
Only thing I didn't include in this pack is the full supported limit but if people like this and use it and whant me to add it then I will.
This is using JBL's writeup so give him most of the credit along with towncivilian for bringing devmode back, and the rest that helped in devmode.
Enjoy
EDIT: Incase you were wondering what some features were in what set.txt then I'll put it here.
Set1.txt - Is the removed reload animations
Set2.txt - Full Screen Night Vision and No Smoke
Set3.txt - No Jam's and Supposed perfect accuracy but all I could get to work in MP was no recoil.
Set4.txt - All guns except pistol and sniper rifle have Acog 4x scopes (I included instructions in there on how to change scopes)
Set5.txt - All guns are set to a fireadjust of 20 or in other words all guns have a faster rate of fire but not as fast as JBL's
All.txt - Just has the commands to execute sets 1-5... so if you want to exec all of them without having to do one by one you'd type in console exec all.txt
-Majic
26th July 2004, 02:58
temp2, english please? maybe u can take a look at it. open AGP.u go to AGP_Weapons and down there is Fire and a little lower is ServerFire, in Fire thers bAdjust and in ServerFire therers bNoAdjustAim
OdinsValhalla
26th July 2004, 03:11
I am getting an error message saying that it cannot extract due to 'unknown compression method'. I have tried using WinRar, and the windows extraction tool, neither would do it. Any ideas.
$ilent$talker
26th July 2004, 03:22
I'll just post them bythemselves, some people have been getting that when I give them one of my .zip files...
Ok just try this .zip I think it's cuase I used max compression...
noob-cheater
26th July 2004, 03:36
@Temp2: thx for giving me a shot explanation...im gonna learn Uscript first before i start tweaking:)...i have found some tutorial on the internet and in the JBL walktrough tread!!!I've read some stuff about it and it seems to be interested!;)
@$ilent$talker: GJ man, I think im gonna put them all in on txt file...will be much easier to exec;)
temp2
26th July 2004, 03:49
@Temp2: thx for giving me a shot explanation...im gonna learn Uscript first before i start tweaking:)...i have found some tutorial on the internet and in the JBL walktrough tread!!!I've read some stuff about it and it seems to be interested!;)
And the fantastic thing is the Unreal engine is used in most of the best FPS:
Splinter Cell
AA:O
Unreal Tournament
So that what you learn now can be used on other games.
noob-cheater
26th July 2004, 04:44
And the fantastic thing is the Unreal engine is used in most of the best FPS:
Splinter Cell
AA:O
Unreal Tournament
So that what you learn now can be used on other games.
`
That's the great thing about it;)
@$ilent$talker...ur version is great man, i just tested it out and i love it!!!:cool:
too bad you have to exec them one by one...you would happend to have a complete version..right?!? :cheeky:
$ilent$talker
26th July 2004, 05:33
um there should be a file in there called all.txt
just put that one in the system folder w/ the others (all set.txt's) and then in console do a exec all.txt...
if all.txt isnt in there then make a .txt and put this in there
exec set1.txt
exec set2.txt
exec set3.txt
exec set4.txt
exec set5.txt
and that should be it...
I noticed that my instructions made all.txt sound like all it was was a reference for the exec commands but its actually another part of TXT Pack...
EDIT: Heres the one with the full support on guns...
Just put all the .txt files in your system folder (including all.txt) and do like on the other TXT Pack. If you want to exec the whole thing then just type in console exec all.txt and you should be set.
Enjoy :)
kilozulu
26th July 2004, 10:19
If you guys don't want to hear grenades blow up:
set Throw_M67_Frag BoomSound None
It's kinda cool, no drone nade sounds.
Here's my contribution to the MP part of devmode.
You can't change the scope of every gun that comes with a scope by default. It means that if you want to have a m24 scope ou your sf gun, you must leave the iron sight on your weapon mod.
No recoil function does NOT work on any sniper gun.
360 degrees supported rotation does NOT work.
Increased rate of fire IS heard by other players. So be carefull, you can be detected this way.
As many may know already, perfect accuracy does NOT work.
So there are basically 3 things that work and are usefull: no smoke, no recoil on rifles, and scope of choice on rifles.
So far, the only thing that can detect you is a pb ss (apart from the increased rof thingy).
EDIT: Remember, this is only true in MultiPlayer
temp2
26th July 2004, 12:46
temp2, english please? maybe u can take a look at it. open AGP.u go to AGP_Weapons and down there is Fire and a little lower is ServerFire, in Fire thers bAdjust and in ServerFire therers bNoAdjustAim
Yep see what you mean but can't currently find what call Fire (bAdjust,bRapid,bBreatheBonus). I wish UTPT decompiled all a u file to a uc file so that it could be searched.
Only a positive note I have found 3 more ways to PerfectAccuracy:
set Controller bPerfectAccuracy True
set PlayerController bPerfectAccuracy True
set StudentController bPerfectAccuracy True
Not satisfied with the FOV on your sniper scope? Well change it to someting a little more zoomed!:
Set Scopew_mosinnagant_sniper aZoomFOV (1.5)
And I think one of the following seems to stop that annoying breathing shake since is now gone on my rifles:
set StudentController ShakeOffset 0
set StudentController ShakeOffsetRate 0
set StudentController ShakeOffsetTime 0
set StudentController ShakeRollRate 0
set StudentController ShakeRollTime 0
set StudentController MaxShakeRoll 0
set StudentController MaxShakeOffset 0
set StudentController MaxResponseTime 0
Watch out for that telltale one hole in the wall.
And for a last but not least secondary way to find out what a value is set to:
Get Scopew_mosinnagant_sniper aZoomFOV
Which nicely tells you the format of the set command you need
kilozulu
26th July 2004, 12:54
Uh Temp, that might've disabled breathing while zoomed in.
I just tested it in single player, and I get no breathing.
Sweet, nice find bud.
temp2
26th July 2004, 13:13
Uh Temp, that might've disabled breathing while zoomed in.
I just tested it in single player, and I get no breathing.
Sweet, nice find bud.
NP ;-). Only just started m8. The beauty of this implementation is that it is so damned complex.
noob-cheater
26th July 2004, 13:50
@Temp...does nobreathing work in MP?! well atleast the no-skaking scope!?!
@$ilent$talker...thx man, im gonna try it out right now;)
temp2
26th July 2004, 14:59
@Temp...does nobreathing work in MP?! well atleast the no-skaking scope!?!
No idea m8 all the auth servers are down so I spent a little more than my usual 1/2 hour tweaking. Idle hands do ...
Should have seen what I've been up to with AmbientGlow though.
temp2
26th July 2004, 15:40
And I think one of the following seems to stop that annoying breathing shake since is now gone on my rifles:
set StudentController ShakeOffset 0
set StudentController ShakeOffsetRate 0
set StudentController ShakeOffsetTime 0
set StudentController ShakeRollRate 0
set StudentController ShakeRollTime 0
set StudentController MaxShakeRoll 0
set StudentController MaxShakeOffset 0
set StudentController MaxResponseTime 0
Had to run up my own little server to test this out in MP and its not working, in fact it gives you the bad shakes. I'm pretty sure I know what's wrong though.
noob-cheater
26th July 2004, 16:29
can ya make a fullscreen binoc?!
-Majic
26th July 2004, 16:42
that hould be kinda easy, just remove the overlay under the binocs thing
Rapid
26th July 2004, 18:02
Had to run up my own little server to test this out in MP and its not working, in fact it gives you the bad shakes. I'm pretty sure I know what's wrong though.
try something like false instead of 0 or maybe try 10 :) its all try and error in this sh!t
$ilent$talker
26th July 2004, 20:58
Here's my contribution to the MP part of devmode.
You can't change the scope of every gun that comes with a scope by default. It means that if you want to have a m24 scope ou your sf gun, you must leave the iron sight on your weapon mod.
No recoil function does NOT work on any sniper gun.
360 degrees supported rotation does NOT work.
Increased rate of fire IS heard by other players. So be carefull, you can be detected this way.
As many may know already, perfect accuracy does NOT work.
So there are basically 3 things that work and are usefull: no smoke, no recoil on rifles, and scope of choice on rifles.
So far, the only thing that can detect you is a pb ss (apart from the increased rof thingy).
EDIT: Remember, this is only true in MultiPlayer
Sorry to disagree with you but no recoil works on the M82 for me atleast on bridge (only map I tested it with the M82) and M24 works sometimes depending on how I execute my sets. Don't know about the other snipers yet but I'll follow up on that.
360 Degrees does work, try it one the M249 saw on mountain pass or radio towers (only gun and only two maps I tested it on).
And I tested the increased rate of fire, and you cant hear it as a different player. Either you hear a fully auto gun or 1-3 round bursts. So if you have the m16 and have fireadjust set to high rate of fire and have an auto fire on they'll know just by the fact that you're getting full auto. But they dont sence the high rate of fire.
I tested this out already.
Just to make sure when I get back from the doctor I'll test it out on different maps. Mabe it's like the perfect acc where I thought I had it cause of no recoil and testing it in SP so dont get me wrong. I may not know what I am talking about but do know about 360 degree and no recoil on M82.
-Majic
26th July 2004, 21:46
actually i could definately hear a saw with higher rate of fire, and i mean wow, that thing sounded like 3 or 4 ppl shooting at same time, so yes fire rate can be heard, on saw atleast. and yes ppl dying faster is a major factor, i got shot with the saw in leg, isntead of the little jerks it jerks u way back and ur screen is like unseeable cuz of all the hits..
noob-cheater
26th July 2004, 21:50
actually i could definately hear a saw with higher rate of fire, and i mean wow, that thing sounded like 3 or 4 ppl shooting at same time, so yes fire rate can be heard, on saw atleast. and yes ppl dying faster is a major factor, i got shot with the saw in leg, isntead of the little jerks it jerks u way back and ur screen is like unseeable cuz of all the hits..
Your right...2 days ago i was on bridge and i was spectating on a guy and hes saw shooted like 3 bulletes at the same times, i meen you see 3 fire shots at the same time instead of 1...
<edit>I have a n00b question, if i run my own server (i'm planning starting my own server)...can i use devmode on my server while im playing on it whitout any problems?!
JohnBLucky
26th July 2004, 23:15
No BlackOuts In Zoom (With Binoculars)!
Just add this to whichever text you use right under the "DevMode 1" line. I'll try to test and get a new "Complete" version out later today.
mpcheat binoc 1
set Scope_BinocM22_A tZoomOverlay Texture'None'
mpcheat binoc 2
set Scope_BinocM24_B tZoomOverlay Texture'None'
noob-cheater
26th July 2004, 23:17
No BlackOuts In Zoom (With Binoculars)!
Just add this to whichever text you use right under the "DevMode 1" line. I'll try to test and get a new "Complete" version out later today.
mpcheat binoc 1
set Scope_BinocM22_A tZoomOverlay Texture'None'
mpcheat binoc 2
set Scope_BinocM24_B tZoomOverlay Texture'None'
oke thx JBL
can you answer me this question?!
if i run my own server (i'm planning starting my own server)...can i use devmode on my server while im playing on it whitout any problems?!
JohnBLucky
26th July 2004, 23:22
oke thx JBL
can you answer me this question?!
if i run my own server (i'm planning starting my own server)...can i use devmode on my server while im playing on it whitout any problems?!
Nope, you can't use devmode, even with Cheats enabled. I'd talk to Killa about it, as he's quickly becoming the resident expert of cheat servers and hacked server settings.
temp2
27th July 2004, 04:32
I have it on good authority (and I have proof) that some server administrators are working on detecting our little devmode fun. However they are having problems:
They cannot detect changes to properties such as arrays, structures and object pointers.
If a class is not in memory a boolean of that class appears as of its false, float or integer as 0.
AA:O is very complex and only the [Dev] know what variables they are actively using or what they just leave default.
Doing checks on all the variables we are tweaking will lag both servers and clients very badly.
And here is how we can stay ahead:
Only modify the stuff in game that you are going to use. (if you have devmoded weapons that you are not going to use in game then stop it)
Only modify the lowest sub-class of object. (e.g. not Actor, not Weapon, not AGP_Weapon but only Weapon_M82_Sniper to modify a Weapon_M82_Sniper, etc...)
As many people as possible get using UTPT and contributing new set commands. I'm confident that there are so many variables in AA:O that we can tweak, that we can stay ahead if users here take active interest in improving the exploits.
What will happen if they get it working.
I'm informed it will be a 5 minute KICK. (they can't guarantee that the variables were not accidentally corrupted)
Why develop devmode commands.
Because even if the devmode exploit is closed in the next release (which i personally doubt as its using the newer engine) the information about how the game uses variable can be used in the next generation of game engine hack. I think you will all now appreciate that engine hacking is much more powerful than DirectX indeed some things can only be done this way.
importdrinker
27th July 2004, 04:47
so would this be similar then to the current AASA restrictions on .ini settings?...sounds like this would only apply to some servers and not the official ones...yes?
temp2
27th July 2004, 04:52
Thanks man. I'm gonna take the useless weapons off my modded weapons.
And another; if you are modifying an integer or a float do not user 100,000 or 180,000 use a random value near it. AA:O is quite buggy that random value must be data corruption!
temp2
27th July 2004, 04:56
so would this be similar then to the current AASA restrictions on .ini settings?...sounds like this would only apply to some servers and not the official ones...yes?
Non Official I hear, but there are big problems with false positives and as soon as they publish the protection mechanism it will be worked round. This exploit is very hard to beat.
temp2
27th July 2004, 05:08
...information about how the game uses