You can now write your own text onto the ESP. This done via the new "esp %" script commands:
- "esp % add,[group ID],[text ID],[text],[x],[y],[font size],[font color]" — Writes "text" to "x," "y" on your screen. "Group ID" can be any number and refers to a group of text elements that all have the same font size. For example, if you want all text to be the same size, you only need a single "group ID." "Text ID" can be any number and refers to the ID of individual text elements. This ID is necessary if you wish to adjust the text element in the future with other esp commands. Example:
- keys=esp % add,1,1,THIS IS A TEST,100,100,50,120000
- "esp % edit,[group ID],[text ID],[text]" — Changes the text displayed by text element "text ID" in "group ID" to "text." Example:
- keys=esp % edit,1,1,THIS IS ANOTHER TEST
- "esp % move,[group ID],[text ID],[x],[y]" — Moves the text element "text ID" in "group ID" to "x," "y" on your screen. Example:
- keys=esp % move,1,5,500,750|dbg % moving text element 5 in group 1 to 500,750
- "esp % size,[group ID],[size]" — Resizes all text elements in "group ID" to "size." Example:
- keys=esp % size,1,100|dbg % resizing all text elements in group 1 to 100
- "esp % color,[group ID],[text ID],[color]" — Changes the font color for "text ID" in "group ID" to "color." Color values can be found here. Example:
- keys=esp % color,1,3,60000|dbg % changing text element 3 in group 1 to green
- "esp % redraw" — Erases everything on the ESP and redraws it.
It is now possible to have Speeder read multiple macro files. This is useful if you have purchased an encrypted macro file but still want to create your own macros. All you have to do is separate each file with the "|" character on line 5 of config.txt, such as filename1.ini|filename2.ini.
The "-displayaid p" console command will now also display attacks from your current target even if they are not targeting you.
The following console command has been added:
- -displaystatus — Toggles the display of status effects on/off.
The following script command has been added:
- "get % party" — Populates the following global variables: PT_NAME_#, PT_ID_#, and PT_TOTAL, where "#" is a number from 1 to PT_TOTAL (the total number of players in your party). PT_ID_# is the ID of the player and can be used for targeting purposes. Example:
- [113]
keys=get % party|store % iter,0
keys2=!cmp(VAR % iter),(VAR % PT_TOTAL)|gt4
keys3=add % iter,1|dbg % (VAR % PT_NAME_(VAR % iter)) is in my party|gt2
keys4=nop
repeat=0 - Press F2 to display the names of all players in your party.
- [113]
It is now possible to encrypt the fury attack ID files used on lines 36 & 37 in config.txt. This allows you to share/sell them to other Speeder users without someone stealing your work. The process for encrypting them is exactly the same as macros and waymarks.
These changes require Speeder version 110.