aStiffSausage Posted September 13, 2012 Share Posted September 13, 2012 (edited) Is there a way to force player to shoot second round after shooting first one? Most of you know three-round burst or two-round burst, from either CoD or BF or some other game, would it be possible for SA? One click and three shots. EDIT: Also, how I can check if player is aiming? A way which doesn't just check if aim-key is pressed, something that is as accurate as possible. Edited September 14, 2012 by oksa8 Link to comment Share on other sites More sharing options...
aStiffSausage Posted September 21, 2012 Author Share Posted September 21, 2012 Blah let's give this a nice little bumpy-bump. Link to comment Share on other sites More sharing options...
TheGodfather. Posted September 21, 2012 Share Posted September 21, 2012 Is there a way to force player to shoot second round after shooting first one? Most of you know three-round burst or two-round burst, from either CoD or BF or some other game, would it be possible for SA? One click and three shots I think it may be possible but it would need some memory coding I think.. & I ain't good at memory coding.. Link to comment Share on other sites More sharing options...
Michael-Knight1 Posted September 21, 2012 Share Posted September 21, 2012 (edited) Is there a way to force player to shoot second round after shooting first one? Most of you know three-round burst or two-round burst, from either CoD or BF or some other game, would it be possible for SA? One click and three shots I think it may be possible but it would need some memory coding I think.. & I ain't good at memory coding.. wow , it's very helpful I am not sure http://www.gtaforums.com/index.php?showtop...st&p=1059761036 Or i thinks so that will help http://www.gtaforums.com/index.php?showtop...st&p=1057687159 Edited September 21, 2012 by Michael-Knight1 Link to comment Share on other sites More sharing options...
Silent Posted September 21, 2012 Share Posted September 21, 2012 Is there a way to force player to shoot second round after shooting first one? Most of you know three-round burst or two-round burst, from either CoD or BF or some other game, would it be possible for SA? One click and three shots. Possibly the easiest way is to take control over player's CPad and 'hold the key' until all the bullets are fired. @up Obviously, your link is not going to help. Link to comment Share on other sites More sharing options...
TheGodfather. Posted September 21, 2012 Share Posted September 21, 2012 Right Silent..Pretty right... Link to comment Share on other sites More sharing options...
aStiffSausage Posted September 21, 2012 Author Share Posted September 21, 2012 @arijitsen I love your constructive posts. @Michael-Knight1 Hmm, as SilentPL said, I think won't help, thanks anyway. @SilentPL Oh. Just did a little research and found... Pretty much nothing. I guess I can bury that idea... At least for now. But, how about checking if player is aiming? I think relying on animation-based checking isn't reliable as some users might use custom-animations with custom names, assigned for different weapons. Link to comment Share on other sites More sharing options...
Silent Posted September 21, 2012 Share Posted September 21, 2012 I'd go for a keypress check again. Cheap way though. Link to comment Share on other sites More sharing options...
aStiffSausage Posted September 21, 2012 Author Share Posted September 21, 2012 Yeah I noticed that too. I did few checks so I can check if player is aiming, but it still returns true whenever animation changes, is there any function in memory which draws the crosshair and then check if it's called? And, I'm still wondering how I may fix the problem with all TC's, fastman92 posted something but not sure how to use it.., Link to comment Share on other sites More sharing options...
Silent Posted September 21, 2012 Share Posted September 21, 2012 And, I'm still wondering how I may fix the problem with all TC's, fastman92 posted something but not sure how to use it.., Impossible in CLEO. Either direct EXE edit or an ASI plugin. Link to comment Share on other sites More sharing options...
aStiffSausage Posted September 22, 2012 Author Share Posted September 22, 2012 Oh snap. Well, how about this: Can I re-draw some HUD-elements by CLEO-functions after disabling HUD with opcode 0826? And, can I somehow check if another script is using 0826 to disable HUD? Link to comment Share on other sites More sharing options...
Link2012 Posted September 22, 2012 Share Posted September 22, 2012 (edited) 0A8D: [email protected] = read_memory 0xA444A0 size 1 vp 0// [email protected] = IsHUDEnabled? Also, if you're trying to remove the game hud to put your hud, it's cool to really disable the original HUD and then do it's work, I mean, your HUD can check if the HUD is disabled etc. // Disable The Health\Armour\etc panel0A8C: write_memory 0x58FBD6 size 1 val 0x90 vp 10A8C: write_memory 0x58FBD7 size 4 val 0x90909090 vp 1// Disable Wanted Stars Drawing0A8C: write_memory 0x58FBDB size 1 val 0x90 vp 10A8C: write_memory 0x58FBDC size 4 val 0x90909090 vp 1 If you also want to gain control over the radar and the stats displayer: [bYTE] 0xBAA3FB = bShowRadar // If any script disabled the radar drawing, this will be false[bYTE] 0xBAB1DE = bShowingPlayerStats // Use to determin if you should draw the radar or the stats // Disable Radar Drawing0A8C: write_memory 0x58FC53 size 1 val 0x90 vp 00A8C: write_memory 0x58FC54 size 4 val 0x90909090 vp 0// Disable Player Stats Drawing - I guess you don't want to draw your own stats displayer, yeah? Then you shouldn't NOP this0A8C: write_memory 0x58FC45 size 1 val 0x90 vp 00A8C: write_memory 0x58FC46 size 4 val 0x90909090 vp 0 Edited September 22, 2012 by Link2012 Link to comment Share on other sites More sharing options...
Michael-Knight1 Posted September 22, 2012 Share Posted September 22, 2012 @Link2012 , This Address Will Disable The Hud Forever without return it if use 0826 ?? Also When The Player Dead the hud will enable and when player get out from hospital he will disable ... Link to comment Share on other sites More sharing options...
aStiffSausage Posted September 22, 2012 Author Share Posted September 22, 2012 @Link2012 Thanks, I especially needed something to keep wanted stars as I thought it would be easier to just use original starts than trying to emulate them, otherwise all worked well but didn't get them to flash, so... Though there's one little problem. How I can display weapon icons? Link to comment Share on other sites More sharing options...
Michael-Knight1 Posted September 22, 2012 Share Posted September 22, 2012 @Link2012 Thanks, I especially needed something to keep wanted stars as I thought it would be easier to just use original starts than trying to emulate them, otherwise all worked well but didn't get them to flash, so... Though there's one little problem. How I can display weapon icons? he give them for you // Disable The Health\Armour\etc panel0A8C: write_memory 0x58FBD6 size 1 val 0x90 vp 10A8C: write_memory 0x58FBD7 size 4 val 0x90909090 vp 1 Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now