Showing results 1 to 24 of 24
Search took 0.00 seconds.
Search: Posts Made By: Terrillyn
Forum: Lua/XML Help 03/07/16, 02:06 AM
Replies: 0
Views: 3,197
Posted By Terrillyn
Question EVENT_CHATTER_BEGIN doesn't always fire

I've noticed some dialogs in Eastmarch are not triggering the EVENT_CHATTER_BEGIN event,
is this a known bug or unknown that needs reporting or do some special dialogs that not trigger...
Forum: Lua/XML Help 03/02/16, 06:38 PM
Replies: 2
Views: 3,544
Posted By Terrillyn
:eek: Ok, Wiki doesn't state what version,...

:eek: Ok, Wiki doesn't state what version, thanks.
Still a little confused as to why newSubZone is always false.
Forum: Lua/XML Help 03/02/16, 03:30 PM
Replies: 2
Views: 3,544
Posted By Terrillyn
correct usage EVENT_ZONE_CHANGED?

I'm currently trying to use EVENT_ZONE_CHANGED, dumping out the params every time its called and its giving me unexpected results

wiki definition:
EVENT_ZONE_CHANGED (integer eventCode, string...
Forum: Wish List 03/01/16, 04:06 PM
Replies: 3
Views: 4,654
Posted By Terrillyn
[outdated] GetUnitSubZoneIndex() & GetSubZoneNameByIndex()

In looking for a way to get the characters current subzone (in order to determine if we are in a city or not) there doesn't seem to be a way to even get the subzone index the best I can do is create...
Forum: Wish List 03/01/16, 03:57 PM
Replies: 3
Views: 4,359
Posted By Terrillyn
Thumbs up IsWeaponSheathed() definitely and an...

IsWeaponSheathed() definitely and an event.


AFAIK there isn't I looked through the source quite extensively myself and couldn't find anything relating.
Forum: General Authoring Discussion 02/12/16, 01:37 PM
Replies: 4
Views: 4,969
Posted By Terrillyn
That's what I figured, it wasn't really important...

That's what I figured, it wasn't really important enough for me to edit other addons, I was mostly trying to find which addon was causing long load times, I ended up narrowing it down to craftstore...
Forum: General Authoring Discussion 02/12/16, 02:40 AM
Replies: 4
Views: 4,969
Posted By Terrillyn
Measuring addon load times?

I'm wondering if there is a way (maybe built-in) to measure the load time of all addons, I've tried measuring the time between EVENT_ADD_ON_LOADED calls, but results seem to be wrong (maybe due to...
Forum: Translation Help 02/03/16, 06:20 PM
Replies: 5
Views: 6,589
Posted By Terrillyn
I forgot to thank you for this. Shoul I put your...

I forgot to thank you for this.
Shoul I put your name here in SXPB_TRANS_AUTHOR = "" ?
Also text lengths are fine, Just not releasing this update until I can get some setting menus issues sorted out....
Forum: Translation Help 02/02/16, 06:27 AM
Replies: 5
Views: 6,589
Posted By Terrillyn
Hi thanks for looking into this. About the...

Hi thanks for looking into this.

About the anchor points, yes those values are only displayed in the settings menu, and mapped to the correct values in code, so translating them is fine.
As for the...
Forum: Translation Help 02/01/16, 04:06 PM
Replies: 5
Views: 6,589
Posted By Terrillyn
Smile LF Translations (FR/DE/Any)

Hi, I'm looking for translations for the following:

--leave blank if you dont want it shown.
SXPB_TRANS_AUTHOR = "",
SXPB_TRANS_BY = "Translated by",

---------------------
----- SETTINGS...
Forum: Lua/XML Help 01/30/16, 03:19 AM
Replies: 34
Views: 21,824
Posted By Terrillyn
Thank you for your patience, I get it now. I...

Thank you for your patience, I get it now.

I also see were some of my confusion was coming from, there must be a bug with the DeveloperSuite*, as its giving old data until I actually access said...
Forum: Lua/XML Help 01/30/16, 01:28 AM
Replies: 34
Views: 21,824
Posted By Terrillyn
I actually went into the settings panel changed a...

I actually went into the settings panel changed a setting, then typed /explorer (from DevTools) (which should have been uptodate as I've seen in other tables), opened the <addonname>_Settings table...
Forum: Lua/XML Help 01/29/16, 02:23 PM
Replies: 34
Views: 21,824
Posted By Terrillyn
It doesn't seem like you read any of the posts...

It doesn't seem like you read any of the posts here:


I didn't need to copy the metatable, I needed to copy through the metatable without effecting it, this is solved.
...
Forum: Lua/XML Help 01/27/16, 03:31 PM
Replies: 34
Views: 21,824
Posted By Terrillyn
I know, I did this at the time to see if it was...

I know, I did this at the time to see if it was something wrong with the character name.


This was definaetly a mistake, however if I change it now this will cause users pain, so I'll just keep it...
Forum: Lua/XML Help 01/26/16, 06:12 PM
Replies: 34
Views: 21,824
Posted By Terrillyn
Yea, I deleted the savedvars file and then...

Yea, I deleted the savedvars file and then enabled the addon to check, its corrupting on the first-run.
If you'd like I can send you the current addon zip to test?


Sorry about that, idk how I...
Forum: Lua/XML Help 01/26/16, 03:30 PM
Replies: 34
Views: 21,824
Posted By Terrillyn
I tried what you said before votan, and its...

I tried what you said before votan, and its actually just corrupting the table, even a fresh one.

first we call
SimpleXPBar.AWSV = ZO_SavedVars:New("SimpleXPBar_Settings", "1", nil,...
Forum: Lua/XML Help 01/26/16, 06:30 AM
Replies: 34
Views: 21,824
Posted By Terrillyn
you mean like --pseudo-code CharSV.setting =...

you mean like

--pseudo-code
CharSV.setting = newval
if account_wide then
AWSV.setting = newval
end
when ever a setting is set?
Forum: Lua/XML Help 01/26/16, 01:55 AM
Replies: 34
Views: 21,824
Posted By Terrillyn
This is what I figured was happening which is why...

This is what I figured was happening which is why I was trying to set the values and not just make a copy, but idk how serialization or metatables really work in this case and tbh I'm having trouble...
Forum: Lua/XML Help 01/25/16, 08:22 PM
Replies: 34
Views: 21,824
Posted By Terrillyn
Well I spoke too soon, it wouldn't let me set...

Well I spoke too soon, it wouldn't let me set accountwide settings when I did that, seems nothing I try lets me copy over another table, aside from writing a large function to manually copy over all...
Forum: Lua/XML Help 01/25/16, 07:02 PM
Replies: 34
Views: 21,824
Posted By Terrillyn
!! I think I may have come up with a solution...

!! I think I may have come up with a solution finally, I'll need to test it abit more but its working so far.
here it is

checkbox
setFunc = function(val)
SimpleXPBar.AWSV.general.account_wide =...
Forum: Lua/XML Help 01/25/16, 06:32 PM
Replies: 34
Views: 21,824
Posted By Terrillyn
I still cant get these accountwide settings to...

I still cant get these accountwide settings to work the way I want.

there seems to be something weird going on with the references, if I try to change a an accountwide setting via console...
Forum: Lua/XML Help 01/25/16, 02:49 PM
Replies: 34
Views: 21,824
Posted By Terrillyn
Thumbs up Apparently the issue was unrelated to...

Apparently the issue was unrelated to ZO_DeepTableCopy, I must not have been paying attention when I wrote the colorpicker tables heres what the problem was:


getFunc = function()
return...
Forum: Lua/XML Help 01/25/16, 06:20 AM
Replies: 34
Views: 21,824
Posted By Terrillyn
the prototype is ZO_DeepTableCopy(source, dest);...

the prototype is ZO_DeepTableCopy(source, dest); I have SimpleXPBar.CharSV get overwritten if accountwide is chosen so that the individual characters will have there settings overwritten, this was...
Forum: Lua/XML Help 01/25/16, 02:35 AM
Replies: 34
Views: 21,824
Posted By Terrillyn
Having issues creating an account-wide settings toggle

Hi, I'm having trouble create an 'account-wide settings' toggle for one of my addons, well actually I've got it working but its causing weird behavior with the colorpicker controls and some of the...
Showing results 1 to 24 of 24