На форуме Ронин написали, как сделать макросы (скрипты) для быстрого писания в игре (автор- Чиз). Привожу тут без перевода, в конце- более простой способ Сетерниса (я все равно ничего не поняла, кто знает и хочет- напишите инструкцию по-русски).
Post from Cheese
Hi, i tried the tool AutoHotKey from
http://www.autohotkey.com
It actually lets you assign hotkeys or short terms, that will type a whole sentence for you. For example i type
CODE
pants0
and it types
CODE
Pirates, you are under arrest. Leave the cockpit with your pants down.
Instructions.
Install the tool
a green tray icon with a big H will apear in your tray list
rightclick it and choose "Edit this script"
Paste the text that you find at the end of the article
Edit the script as you believe etc, you should see how it works
now save the script
rightclick on the big H in the tray and chose "reload the script"
Now, when u write one thing that stands in ::TEXT:: it will type what stands behind the ::
In the 2nd section you will find Text that will appear when u hit a Key combination,
the ! stands for the Key ALT.
Note: This program is very mighty. You could even script maneuvers with it and feel like Captain Picard saying: No1, Maneuver Delta-9 NOW!
CODE
; SAMPLE HOTKEYS: Below are two sample hotkeys. The first is Win+Z and it
; launches a web site in the default browser. The second is Control+Alt+N
; and it launches a new Notepad window (or activates an existing one). To
; try out these hotkeys, run AutoHotkey again, which will load this file.
#z::Run,
http://www.autohotkey.com
;THIS IS THE CHEESE SECTION.WHEN YOU TYPE THE STUFF LEFT THE TEXT RIGHT OF THE :: WILL APPEAR.;
;
::cargo0::This is a routine cargo scan.STOP your engines and coorporate.{Enter}{Enter}
::clear0::You are clear to go.Thanks for your coorperation.Travel safe.{Enter}{Enter}
::cardy0::You carry illegal goods.Stop your engines and drop it or get shot.{Enter}{Enter}
::50k0::Pirate pay 50K fine and leave the system.Otherwise you will die.{Enter}{Enter}
::100k0::Pirate pay 100K fine and leave the system.Otherwise you will die.{Enter}{Enter}
::pants0::Pirates,you are under arrest. Leave the cockpit with your pants down.{Enter}{Enter}
::ronin0::This is Ronin territory.Pirates are not welcome.Leave or get shot.{Enter}{Enter}
::hopeless0::Your situation is hopeless.To prevent further slaughter, give up.{Enter}{Enter}
::welcome0::Welcome in Ronin territory.Enjoy your stay.Remember that smuggling is illegal.{Enter}{Enter}
::trading0::Trading cardamine or artifacts is seen as offence. Please refrain from doing.{Enter}{Enter}
;
;CHEESE SECTION N02, WHEN YOU HIT ALT+Numpad0, IT PRINTS THE TEXT ON THE SCREEN
!Numpad0::
Send, Leave the system, pirate.
return
!Numpad1::
Send, Go away, Rogue, you are not welcome here!
return
;
IfWinExist, Untitled - Notepad
WinActivate
else
Run, Notepad
return
; Note: From now on whenever you run AutoHotkey directly, this script
; will be loaded. So feel free to customize it to suit your needs.
Сетернис:
IMO, cheese's explaination is a bit too complex than necessary.
It really starts with a few scripts after you install. shift+F9/F10/F11/F12 are usual scripts. To change them, just go to your folder whereever it might be, load the script ini file and replace the text there.
I think that some of the standard scripts are "Yeah Whatever" and "What flava?:D" To make your new scripts, just replace the text with your own and create new scrits by mimicing the little code before the text itself. I found out after 5 mins without instructions, and belive me.. Im NOT a technical person when it comes to computers/programs. Hell, if I can do then you shouldn't have a problem.