AutoHotkey Community

It is currently May 27th, 2012, 8:02 am

All times are UTC [ DST ]




Post new topic Reply to topic  [ 1913 posts ]  Go to page Previous  1 ... 41, 42, 43, 44, 45, 46, 47 ... 128  Next
Author Message
 Post subject:
PostPosted: December 20th, 2006, 12:10 pm 
Offline

Joined: December 9th, 2006, 6:38 pm
Posts: 42
im not sure cause on that video he proned rolld then rolled the other way and then back again, when i see people in game and they move sidewards they just shuffle along the floor not rolling so maybe this was stopped in 1.4 i dont know as i only started playing the game 1 day before the release of 1.4


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: December 20th, 2006, 12:13 pm 
Offline

Joined: December 9th, 2006, 6:38 pm
Posts: 42
also is their a way of going 3rd person veiw of myself in a single player game or something or a demo i was told to record myself so i followed the instructions of a site and it recorded fine im guessing but i have no was of playing the thing back to myself as far as im aware
i recorded it useing bf2 itself if anyone could tell me how to playback the recording that would be great


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: December 20th, 2006, 12:28 pm 
Offline

Joined: December 9th, 2006, 6:38 pm
Posts: 42
im not quite sure what you mean ghosty but if your trying to toggle something i found the best way to do so is to have
$"anykey"::Suspend
say if it was for tv guided repeat you would have

#InstallMouseHook
#InstallKeybdHook

$"anykey"::Suspend
loop
{
GetKeyState, LButtonState, LButton, P
if LButtonState = U
break
sendinput {Click down}
sleep 50
sendinput {Click up}
}
return

what this should do is toggle automatic fire when you press whatever key you assigned it to(it will automatic fire when you press {LButton})


or another way of toggleing is to have

#InstallMouseHook
#InstallKeybdHook

$"anybutton":: ;this will be the toggle
Period := Period = 160 ? "OFF" : 160
SetTimer Click, %Period%
Return

Click: ; this is just the name of the timer
Loop
{
GetKeyState, State, "youchooseabutton", P
if State = U
break
(insert your script here)
}
return


sorry if this didnt help you at all ;)


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: December 20th, 2006, 2:15 pm 
Offline

Joined: December 20th, 2006, 1:54 am
Posts: 8
im getting somewhere now i have to hold shift on lol :S

see what it is Shift is my crouch key, but so is the autofire enable key so i need it as Alt instead of shift


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: December 20th, 2006, 8:13 pm 
mr.miagi wrote:
also is their a way of going 3rd person veiw of myself in a single player game or something or a demo i was told to record myself so i followed the instructions of a site and it recorded fine im guessing but i have no was of playing the thing back to myself as far as im aware
i recorded it useing bf2 itself if anyone could tell me how to playback the recording that would be great


man...
try www.google.com

it took me 15 seconds to get this:
http://classroom.jernriddare.se/ingame.htm
(read below Community)


Report this post
Top
  
Reply with quote  
 Post subject:
PostPosted: December 23rd, 2006, 7:58 am 
Offline

Joined: September 13th, 2006, 11:05 am
Posts: 31
How can I get this the keep running untill I press F5 Again ?

$F5::

Loop
{
Send, {6 down}
Sleep 1
Send, {6 up}
Sleep 1
MouseClick, Left, , , , , D
sleep 1
MouseClick, Left, , , , , U
Sleep 1
send,{G Down}
sleep 1
send,{G up}
sleep 1
return
}

Oh and is there a Key map out there somewere what tells you what you put in for all the keys like Ctrl,Enter,tAb and so on


Report this post
Top
 Profile  
Reply with quote  
 Post subject: TV Missiles
PostPosted: December 23rd, 2006, 1:05 pm 
Ok...all i want is a step by step guide of how to get an attack chopper in bf2 to do the following when i press the right mouse button:

1. Press f2 to change to gunner seat
2. Press right click to change to TV Missile view
3. Press Left click to fire missile (with cursor centred on screen)

that is all....i know this has been covered before but i have read all the previous topics on this forum about it and tried all the scripts in AutoHotKey but none of them seem to work.

i know nothing about the program at all or any form of scripting and i do not wish to learn...all i want is a step by step guide....as detailed as 'open up AHK' then go to 'blah blah' etc. because i dont even know how to get someones script that they posted on here to work....so please help me.

i would appreciate this very much, thankyou for your time.


Report this post
Top
  
Reply with quote  
 Post subject: HELP?
PostPosted: December 24th, 2006, 1:09 am 
IDK what im doing, sorry for being a noob, but I have the autohotkey thingy, I just want a pistol macro thing (which I have
~RButton::
Loop
{
Sleep 100 ; This is the delay between clicks, in milliseconds.
GetKeyState, RButtonState, RButton, P
if RButtonState = U ; User has physically released the button, so end the loop.
break
MouseClick, Right
}
return

,but i dont know how to use it with the thing let alone get it started haha) ANY HELP? PLEASE?


Report this post
Top
  
Reply with quote  
 Post subject:
PostPosted: December 24th, 2006, 2:43 am 
Offline

Joined: December 11th, 2006, 4:54 pm
Posts: 5
Is there a macro that makes me run a bit then jump and lay down in the air plus strafe left/right at the same time really fast?


Report this post
Top
 Profile  
Reply with quote  
 Post subject: Re: ?
PostPosted: December 24th, 2006, 11:11 am 
Offline

Joined: October 14th, 2006, 8:46 am
Posts: 18
Chris543 wrote:
How can i use this macros????


Here are some instructions that should help.


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: December 24th, 2006, 11:49 am 
Offline

Joined: October 14th, 2006, 8:46 am
Posts: 18
Envelo wrote:
mr.miagi wrote:
also is their a way of going 3rd person veiw of myself in a single player game or something or a demo i was told to record myself so i followed the instructions of a site and it recorded fine im guessing but i have no was of playing the thing back to myself as far as im aware
i recorded it useing bf2 itself if anyone could tell me how to playback the recording that would be great

fraps is really good for game recording.

If you're talkin bout recording you using the bf2 recording, you need to actually move the recorded file after your finished recording.

<bf2 installfolder>\mods\bf2\profiles\demo (if memory serves)..or just use windows search in bf install folder to get the files with extension '.demo'

Next you copy those demo files to your %userprofile%\BF2\Default\Demos <create the folder if not existing>

Then you start bf and look in the community tab to see your vids.

(k, this is from memory but the general steps are ther3)


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: December 24th, 2006, 8:06 pm 
Is there a way to make the really fast mouse thing and the recoil thing work together? If so can someone please post the code (im new to this so I dont know what to do) I know how to put the code and stuff in now, just dont no how to code:D)...I like the really fast mouse thing being just left click, so leave it at that please, the recoil thing could be the same I guess if you can do that. Thanks to whoever helps.


Report this post
Top
  
Reply with quote  
 Post subject:
PostPosted: December 24th, 2006, 8:32 pm 
hello all the world i seek to sript for bf2142 witch make if possible to withdraw the retreat of the weapons tank you to help me :wink:


Report this post
Top
  
Reply with quote  
 Post subject:
PostPosted: December 26th, 2006, 9:00 am 
Hey guys sup ok well heres what i would like to know


Anyone can make a script that will drop a vehicle on your crosshair real fast with the push of a button? no i dont want that msx style hack that rains cars but i do have a hack im going to use it for so if u cant make it fast can u make it drop say..... 10 at once? thx guys


Report this post
Top
  
Reply with quote  
 Post subject:
PostPosted: December 26th, 2006, 1:07 pm 
;;;;;;
;; Autofire + Aim Correction
;;;;;;
;;
;; Pressing the left mouse button causes an "automatic fire effect"
;; to happen by sending mouse up/down events at regular intervals
;; Also, correction to recoil deviation is done during that interval by
;; lowering the gun a bit.
;;
;; This is good for semi-automatic guns, i.e. pistols and M16.
;;
;; Works well with automatic guns too. Play with the intervals for
;; holding down fire while on a machine gun to prevent overheating.
;;
;; Usage:
;; - In game, press left mouse button for automatic fire
;; - Press Shift key AND left mouse button to enable/disable automatic fire
;; - Press Shift key AND right mouse button to quit the script
;;;;;;

#NoEnv
SendMode Input

_auto := true

~LButton::autofire()
+LButton::_auto := ! _auto
+RButton::ExitApp

autofire()
{
global _auto
if _auto
{
Loop
{
if GetKeyState("LButton", "P")
{
SendInput {LButton DownTemp}
Sleep 85
mouseXY(0, 6)
SendInput {LButton Up}
Sleep 45
}
else
break
} ;; loop
} ;; if
} ;; autofire()

mouseXY(x,y)
{
DllCall("mouse_event",uint,1,int,x,int,y,uint,0,int,0)
}

;;;;;;
;;; End script
;;;;;;







Enybody can change this script for me.. Please delete Shift+Mause Button Exit..


Report this post
Top
  
Reply with quote  
Display posts from previous:  Sort by  
Post new topic Reply to topic  [ 1913 posts ]  Go to page Previous  1 ... 41, 42, 43, 44, 45, 46, 47 ... 128  Next

All times are UTC [ DST ]


Who is online

Users browsing this forum: No registered users and 10 guests


You can post new topics in this forum
You can reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot post attachments in this forum

Search for:
Powered by phpBB® Forum Software © phpBB Group