Download
(18 Kb)
Download
Updated: 05/04/15 05:39 PM
Pictures
File Info
Compatibility:
Update 6 (1.6.5)
Updated:05/04/15 05:39 PM
Created:03/01/15 08:34 PM
Monthly downloads:20
Total downloads:3,865
Favorites:8
MD5:
Zgoo with SavedVars and Delete
Version: 1.01d
by: merlight [More]
Zgoo with some modifications.

1) Added command with two aliases:
/zgoo sv
/zgoo savedvars
This will scan _G for tables that could be add-on SavedVars (it's a heuristic, not 100% reliable), and show what it finds in regular Zgoo window.

2) Added DEL button to expanded table data that is at least 3 levels deep. This can be used, among other things, to manually prune SavedVars. Use at your own risk

3) Changed COPY button so that it's at least partially useful without CopyAllTextToClipboard()

4) Internal loops use zo_insecureNext instead of pcall(next, ...)
Archived Files (3)
File Name
Version
Size
Uploader
Date
1.01c
18kB
merlight
03/31/15 08:42 PM
1.01b
18kB
merlight
03/02/15 06:54 PM
1.01a
17kB
03/01/15 08:34 PM


Post A Reply Comment Options
Unread 06/15/16, 09:58 AM  
Phinix
 
Phinix's Avatar
AddOn Author - Click to view AddOns

Forum posts: 186
File comments: 1779
Uploads: 32
Quintessential development tool.
Last edited by Phinix : 06/15/16 at 10:09 AM.
Report comment to moderator  
Reply With Quote
Unread 12/30/15, 06:46 PM  
BigM
 
BigM's Avatar

Forum posts: 16
File comments: 371
Uploads: 0
Thanks for this, really needed to get rid of a few characters I had from beta. Hope someone updates it one day.
Report comment to moderator  
Reply With Quote
Unread 11/20/15, 05:04 PM  
Mitsarugi
 
Mitsarugi's Avatar
AddOn Author - Click to view AddOns

Forum posts: 23
File comments: 225
Uploads: 12
Originally Posted by merlight
I don't use zgoo anymore. How does it not work? Last time I checked, it worked for me. See http://www.esoui.com/forums/showthre...ght=zgoo+mouse if you have trouble with keybinds
im using the slash commands >,> and /zgoo displays the menu but /zgoo mouse does nothing sadly...

EDIT: ignore all that restarted eso all seems fine now sorry ^^
Last edited by Mitsarugi : 11/20/15 at 05:16 PM.
Report comment to moderator  
Reply With Quote
Unread 11/20/15, 01:39 PM  
merlight
AddOn Author - Click to view AddOns

Forum posts: 671
File comments: 213
Uploads: 12
I don't use zgoo anymore. How does it not work? Last time I checked, it worked for me. See http://www.esoui.com/forums/showthre...ght=zgoo+mouse if you have trouble with keybinds
Report comment to moderator  
Reply With Quote
Unread 11/20/15, 06:33 AM  
Mitsarugi
 
Mitsarugi's Avatar
AddOn Author - Click to view AddOns

Forum posts: 23
File comments: 225
Uploads: 12
Could you fix /zgoo mouse? It doesn't seem to work , need it to find out node Id's for FastTravelToNode for my addon.
Report comment to moderator  
Reply With Quote
Unread 04/01/15, 08:42 AM  
Garkin
 
Garkin's Avatar
AddOn Author - Click to view AddOns

Forum posts: 832
File comments: 1097
Uploads: 33
Originally Posted by QuadroTony
any way to delete single item data from Master Merchant? i cannot found a way
I didn't try it in game but try:
Code:
/zgoo MasterMerchant
and then in "salesData" find & delete unwanted item (there should be a list of itemIDs, which you can get from itemLink).

If it does not work with Zgoo, just use:
Code:
/script MasterMerchant.salesData[itemID] = nil
Last edited by Garkin : 04/01/15 at 08:43 AM.
Report comment to moderator  
Reply With Quote
Unread 04/01/15, 07:49 AM  
merlight
AddOn Author - Click to view AddOns

Forum posts: 671
File comments: 213
Uploads: 12
Originally Posted by QuadroTony
any way to delete single item data from Master Merchant? i cannot found a way
No idea, I don't use it so don't know how it stores data.
Report comment to moderator  
Reply With Quote
Unread 04/01/15, 01:28 AM  
QuadroTony
Banned
 
QuadroTony's Avatar
AddOn Author - Click to view AddOns

Forum posts: 828
File comments: 3866
Uploads: 3
any way to delete single item data from Master Merchant? i cannot found a way
Report comment to moderator  
Reply With Quote
Unread 03/31/15, 08:50 PM  
merlight
AddOn Author - Click to view AddOns

Forum posts: 671
File comments: 213
Uploads: 12
I was having trouble with metatables whose __index is _G (now skipped), or an auto-vivifying function (avoided via rawget).

In the process I changed _G scans to use zo_insecureNext, optimized collapsing tables, and a few other tweaks here and there. Hopefully not breaking anything.
Report comment to moderator  
Reply With Quote
Unread 03/17/15, 03:05 PM  
Mitsarugi
 
Mitsarugi's Avatar
AddOn Author - Click to view AddOns

Forum posts: 23
File comments: 225
Uploads: 12
Thanks for the update , could use it while making addons
Report comment to moderator  
Reply With Quote
Unread 03/02/15, 06:57 PM  
merlight
AddOn Author - Click to view AddOns

Forum posts: 671
File comments: 213
Uploads: 12
Ok there you go. As for the keybind, I added another one for /zgoo mouse, leaving the original as is.
The COPY button... hope you'll figure that out, there's a short description in README
Report comment to moderator  
Reply With Quote
Unread 03/02/15, 02:52 PM  
merlight
AddOn Author - Click to view AddOns

Forum posts: 671
File comments: 213
Uploads: 12
Well, I thought this would be a one-off thing, I don't intend to maintain Zgoo. But I can add these small things, with the exception of copy they're all trivial.
Report comment to moderator  
Reply With Quote
Unread 03/02/15, 01:03 PM  
Ayantir
 
Ayantir's Avatar
AddOn Author - Click to view AddOns

Forum posts: 1019
File comments: 1531
Uploads: 31
Could we get a copy button for each line? I think to masscopy can be difficult but 1 line is easy to do.

to help:

Lua Code:
  1. -- Set copied text into text entry, if possible
  2. local function copy(message)
  3.  
  4.     -- Max of inputbox is 351 chars
  5.     if string.len(message) < 351 then
  6.         if CHAT_SYSTEM.textEntry:GetText() == "" then
  7.             CHAT_SYSTEM.textEntry:Open(message)
  8.             ZO_ChatWindowTextEntryEditBox:SelectAll()
  9.         end
  10.     end
  11.  
  12. end
Last edited by Ayantir : 03/02/15 at 01:04 PM.
Report comment to moderator  
Reply With Quote
Unread 03/02/15, 12:46 PM  
Halja
 
Halja's Avatar
AddOn Author - Click to view AddOns

Forum posts: 111
File comments: 43
Uploads: 1
^ +1

I had made the GetTradingHouseSearchResultItemLink change to my local one sometime back. The editbox with select is a great idea. I toyed with routing to savedvars as a hack but editbox is a better way to go.
Report comment to moderator  
Reply With Quote
Unread 03/02/15, 06:15 AM  
Garkin
 
Garkin's Avatar
AddOn Author - Click to view AddOns

Forum posts: 832
File comments: 1097
Uploads: 33
Thank you for this change to Zgoo, new function will be useful.

I'd like just to ask if you can also update a few other things:
- API Version
- There is another dangerous function which can cause crash to desktop: GetTradingHouseSearchResultItemLink. Please add it to the BLACKLIST table.
- Fonts in table FUNCTIONGROUPS doesn't always start just with ZoFont, so I'd suggest chaging the line to: Fonts = {"ZoFont","ZoInteractionPrompt","ZoLargeFontEdit",string_matching = true},
- I use binding not just to show Zgoo window, but for inspecting mouse over control. If you want to make the same change, modify binding to <Down>Zgoo.CommandHandler("mouse")</Down>
- CopyAllTextToClipboard is private, so it should be probably disabled or changed to editbox with selected text
- Modifications to ZO_UIErrors are no longer needed (and wanted)
Report comment to moderator  
Reply With Quote
Post A Reply



Category Jump: