AutoHotkey Community

It is currently May 27th, 2012, 6:46 am

All times are UTC [ DST ]




Post new topic Reply to topic  [ 12 posts ] 
Author Message
 Post subject: FIFA 11
PostPosted: August 19th, 2011, 1:47 pm 
Offline

Joined: August 19th, 2011, 1:37 pm
Posts: 7
I'm looking for a script which can be run in fifa 11 for making special tricks with one key.I'm trying to beat the PC but it's pretty hard without tricks.I need a script which holds shift and press
1,2 and 3. :D


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: August 19th, 2011, 1:53 pm 
Offline

Joined: March 28th, 2010, 1:32 am
Posts: 681
Location: United States
It must be hard to hold shift and press one key... I feel your pain. :roll:

Code:
Send, {Shift Down}{1}{Shift Up}


Edit: I just wanted to add that my above comment was a friendly joke -- you know, just in case someone was offended. :-)


Last edited by TheDewd on August 19th, 2011, 3:49 pm, edited 1 time in total.

Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: August 19th, 2011, 1:57 pm 
Offline

Joined: August 19th, 2011, 1:37 pm
Posts: 7
I can't run it.


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: August 19th, 2011, 1:57 pm 
Offline

Joined: August 19th, 2011, 1:37 pm
Posts: 7
and the script has to hold shift and press 1,2 and 3 one after another.


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: August 19th, 2011, 2:00 pm 
Offline

Joined: July 8th, 2011, 7:24 pm
Posts: 17
Well, that's just the Send command. You might want to assign a hotkey to it. As for the other numbers - just add them after {1} in the same manner.


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: August 19th, 2011, 2:18 pm 
Offline

Joined: August 19th, 2011, 1:37 pm
Posts: 7
maybe i did something wrong, but it's not working :cry:


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: August 19th, 2011, 2:19 pm 
Offline

Joined: August 19th, 2011, 1:37 pm
Posts: 7
i tried it in the notepad and i worked but in fifa it failed.


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: August 19th, 2011, 3:52 pm 
Offline

Joined: March 28th, 2010, 1:32 am
Posts: 681
Location: United States
Maybe this will work?

Code:
F12:: ; Press F12 to execute
    SendPlay, +1 ; Shift + 1
    ;Sleep, 50 ; Short delay. Uncomment to use.
    SendPlay, +2 ; Shift + 2
    ;Sleep, 50 ; Short delay. Uncomment to use.
    SendPlay, +3 ; Shift + 3
return


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: August 19th, 2011, 4:01 pm 
Offline

Joined: August 19th, 2011, 1:37 pm
Posts: 7
No it does not work :cry:


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: August 20th, 2011, 12:46 am 
Offline

Joined: November 29th, 2008, 12:35 am
Posts: 111
Location: United Kingdom
Hello, try this
Code:
F12::
{
Send {Shift Down}
Send 123
Send {Shift Up}

}


press F12 to send the keys

_________________
Adam
http://moourl.com/8w0tx
Image


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: August 20th, 2011, 12:47 am 
Offline

Joined: November 29th, 2008, 12:35 am
Posts: 111
Location: United Kingdom
or ofcourse if that doesn't work you could try this one with small sleeps inbetween lines

Code:
F12::
{
Send {Shift Down}
Sleep 60
Send 123
Sleep 60
Send {Shift Up}

}

_________________
Adam
http://moourl.com/8w0tx
Image


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: August 20th, 2011, 10:17 am 
Offline

Joined: August 19th, 2011, 1:37 pm
Posts: 7
it fails again :cry: but works for other games.I thing it's because of my fifa.


Report this post
Top
 Profile  
Reply with quote  
Display posts from previous:  Sort by  
Post new topic Reply to topic  [ 12 posts ] 

All times are UTC [ DST ]


Who is online

Users browsing this forum: batto, sjc1000, Yahoo [Bot] and 59 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