| View previous topic :: View next topic |
| Author |
Message |
TJElem How do I cheat?
Reputation: 0
Joined: 26 Jul 2012 Posts: 2
|
Posted: Thu Jul 26, 2012 5:09 pm Post subject: Exporting String Map |
|
|
I've already done a search and I haven't found anything, nor did Google. I was wondering if it is possible to export the strings from my generated string map.[/img]
| Description: |
|
| Filesize: |
38.75 KB |
| Viewed: |
6135 Time(s) |
![LZEG[1].png](files/lzeg_1__416.png)
|
_________________
Weoah |
|
| Back to top |
|
 |
Dark Byte Site Admin
Reputation: 471
Joined: 09 May 2003 Posts: 25830 Location: The netherlands
|
Posted: Thu Jul 26, 2012 5:19 pm Post subject: |
|
|
Hmm, not currently.
It's possible to do it with lua, but will require quite a bit of code (find window, find listview object, get strings and subitems)
_________________
Do not ask me about online cheats. I don't know any and wont help finding them.
Like my help? Join me on Patreon so i can keep helping |
|
| Back to top |
|
 |
TJElem How do I cheat?
Reputation: 0
Joined: 26 Jul 2012 Posts: 2
|
Posted: Thu Jul 26, 2012 5:26 pm Post subject: |
|
|
Thanks for the quick reply Dark Byte.
_________________
Weoah |
|
| Back to top |
|
 |
Dark Byte Site Admin
Reputation: 471
Joined: 09 May 2003 Posts: 25830 Location: The netherlands
|
Posted: Fri Jul 27, 2012 3:29 am Post subject: |
|
|
If you execute the following script the results of that window will be placed in your clipboard
| Code: |
c=getFormCount()
result=""
for i=0, c-1 do
f=getForm(i)
if object_getClassName(f)=="TfrmStringMap" then
c2=component_getComponentCount(f)
for j=0, c2-1 do
o=component_getComponent(f,j);
if component_getName(o)=="ListView1" then
lvi=listview_getItems(o)
lvc=listitems_getCount(lvi)
for k=0, lvc-1 do
li=listitems_getItem(lvi,k)
address=listitem_getCaption(li)
s=listitem_getSubItems(li)
string=strings_getString(s,0)
result=result..address.." - "..string.."\n\r\n\r"
writeToClipboard(result)
end
break
end
end
break
end
end
|
_________________
Do not ask me about online cheats. I don't know any and wont help finding them.
Like my help? Join me on Patreon so i can keep helping |
|
| Back to top |
|
 |
|