Showing results 1 to 9 of 9
Search took 0.00 seconds.
Search: Posts Made By: zamalek
Forum: General Authoring Discussion 05/29/14, 04:51 AM
Replies: 14
Views: 9,449
Posted By zamalek
Gotta love those Lua docs! So, in the spirit of...

Gotta love those Lua docs! So, in the spirit of DRY (donot repeat yourself):

local function Property(get, set)
local prop = function(...)
if select('#', ...) == 1 then set(({...})[1])...
Forum: General Authoring Discussion 05/29/14, 04:16 AM
Replies: 8
Views: 6,272
Posted By zamalek
To write any form of executable code for consoles...

To write any form of executable code for consoles you need to sign up for the SDK - which is extremely expensive. Console games are not allowed to be moddable, because the modders would need to go...
Forum: General Authoring Discussion 05/29/14, 03:51 AM
Replies: 14
Views: 9,449
Posted By zamalek
This is quite common in Javascript (JQuery uses...

This is quite common in Javascript (JQuery uses it a lot). Not a big fan of "gs" as it's a bit redundant :) - if you want to allow people to set properties to nil you can use varargs (which, again,...
Forum: AddOn Search/Requests 05/29/14, 01:42 AM
Replies: 8
Views: 11,641
Posted By zamalek
Sadly this isn't possible. I really, really tried...

Sadly this isn't possible. I really, really tried (before they released the leader icon).

The first issue is that the party icons are not part of the UI (don't believe me? Get into a party and hide...
Forum: General Authoring Discussion 05/29/14, 01:34 AM
Replies: 3
Views: 4,071
Posted By zamalek
Try forcing the texture to load first (by...

Try forcing the texture to load first (by creating and then hiding a UI element that contains the texture you are replacing).
Forum: General Authoring Discussion 05/27/14, 05:46 AM
Replies: 27
Views: 22,568
Posted By zamalek
I wonder if it's possible to load Binary...

I wonder if it's possible to load Binary Extension Modules (http://lua-users.org/wiki/CreatingBinaryExtensionModules) into ESO, it's very likely ZOS disabled that.

If they didn't, you could then use...
Forum: Tutorials & Other Helpful Info 05/27/14, 02:04 AM
Replies: 7
Views: 9,875
Posted By zamalek
I'll try set up that test case tonight - I was...

I'll try set up that test case tonight - I was running trials last night :banana:

Edit: also a bit curious as to which Lua version ESO uses and how this is a bit strange:...
Forum: Tutorials & Other Helpful Info 05/26/14, 01:18 PM
Replies: 7
Views: 9,875
Posted By zamalek
table.insert also does a setn for you, so I think...

table.insert also does a setn for you, so I think that may be it.

Hey, it fixed my plugin, so...
Forum: Tutorials & Other Helpful Info 05/26/14, 11:41 AM
Replies: 7
Views: 9,875
Posted By zamalek
The Cause of The ESC Bug

It looks like the interface runtime is expecting us to use table.insert and not "key in" array entries directly.

Here is the offending function in my code:...
Showing results 1 to 9 of 9