Showing results 1 to 21 of 21
Search took 0.00 seconds.
Search: Posts Made By: tomtomhotep
Forum: General Authoring Discussion 04/28/18, 01:37 PM
Replies: 0
Views: 2,252
Posted By tomtomhotep
Question EVENT_INVENTORY_SINGLE_SLOT_UPDATE at crafting stations

I'm not getting an EVENT_INVENTORY_SINGLE_SLOT_UPDATE firing after crafting an item of armor at a crafting station anymore.

I used to, until the last patch.

Has anyone else noticed this?
Forum: Wish List 02/04/18, 08:46 AM
Replies: 8
Views: 4,927
Posted By tomtomhotep
Ayantir, you are not telling me anything I don't...

Ayantir, you are not telling me anything I don't already know. There's no way for API function(s) to generate item links for ALL of those item types you listed. That's why my proposal focused on...
Forum: Wish List 02/03/18, 02:20 PM
Replies: 8
Views: 4,927
Posted By tomtomhotep
That's just as fine with me. I only rolled it...

That's just as fine with me. I only rolled it into one function for the post because the sticky-topic says one wish per thread.
Forum: Wish List 02/03/18, 02:11 PM
Replies: 8
Views: 4,927
Posted By tomtomhotep
On May 22, 2017, ALL ItemID's in the game...

On May 22, 2017, ALL ItemID's in the game changed, and everyone using FCOItemsaver lost ALL of their FCO markers.

Hard-coding ItemID's is totally unacceptable.
Forum: Wish List 02/03/18, 01:28 PM
Replies: 8
Views: 4,927
Posted By tomtomhotep
[outdated] Need for an API function GenerateItemLink()

Hello.

I believe there is a need for a function GenerateItemLink(...) that would take all of the necessary info and return an itemLink.

The parameters could be:


ITEMTYPE_xxx constant
...
Forum: General Authoring Discussion 01/26/18, 03:31 PM
Replies: 7
Views: 5,984
Posted By tomtomhotep
Thanks. :)

Thanks. :)
Forum: Alpha/Beta AddOns 01/26/18, 03:29 PM
Replies: 1
Views: 7,359
Posted By tomtomhotep
Please Delete

Please delete this thread. It is no longer a thing.
Forum: General Authoring Discussion 01/26/18, 03:17 PM
Replies: 7
Views: 5,984
Posted By tomtomhotep
So YOU'RE the one!

I freeek'n hate this pop up. How do i disable it from ever popping up again ever.

I have "outdated" addons that are no longer being maintained, but still work perfectly for me.

I do not want to...
Forum: General Authoring Discussion 08/11/17, 08:26 PM
Replies: 2
Views: 2,726
Posted By tomtomhotep
Ok. Didn't think so. :( Thanks.

Ok. Didn't think so. :(

Thanks.
Forum: General Authoring Discussion 08/11/17, 06:37 PM
Replies: 2
Views: 2,726
Posted By tomtomhotep
Question Generating an Item Link

Hello.

Are there any API functions or any way to generate an itemLink for an equipment item if you have the following:


Required Level
Required CP (or 0)
ARMORTYPE_xxx constant (or nil for...
Forum: Alpha/Beta AddOns 04/12/17, 03:34 PM
Replies: 1
Views: 7,359
Posted By tomtomhotep
Arrow Hotep® Crafting Guild Service [Alpha/WIP] - need Alpha Testers

Hello.

I need a GUILD to Alpha-Test my new Addon.

Basically, this add-on allows a GUILD to be a "Crafting Guild" and run a "special-order equipment store".

The addon is meant to be used...
Forum: AddOn Search/Requests 03/01/17, 04:06 PM
Replies: 1
Views: 1,709
Posted By tomtomhotep
Save Chat Colors Locally

I just got all my carefully-customized chat colors accidentally reset to defaults. Then I found out these options are stored server-side and not in an .ini file on our machine.

Could someone write...
Forum: General Authoring Discussion 02/24/17, 11:37 AM
Replies: 7
Views: 4,680
Posted By tomtomhotep
Ok. But, just for the record, I have been...

Ok.

But, just for the record, I have been using
savedvars.items[i].uniqueid = tostring(GetItemUniqueId(bag, slot))
and
if (AreId64sEqual(tonumber(savedvars.items[i].uniqueid), GetItemUniqueId(bag,...
Forum: General Authoring Discussion 02/24/17, 05:46 AM
Replies: 7
Views: 4,680
Posted By tomtomhotep
Then what is the API function AreId64sEqual() for?

Then what is the API function AreId64sEqual() for?
Forum: General Authoring Discussion 02/23/17, 10:33 PM
Replies: 7
Views: 4,680
Posted By tomtomhotep
Here are 3 of my inventory Items that I crafted...

Here are 3 of my inventory Items that I crafted today:

iron...
Forum: General Authoring Discussion 02/23/17, 09:52 PM
Replies: 7
Views: 4,680
Posted By tomtomhotep
No. I've never used Id64ToString(). It...

No. I've never used Id64ToString(). It generates a hash. I just use the number itself. I have no need to "hash" it. Once you use that function to generate a hash string, there is no function...
Forum: General Authoring Discussion 02/23/17, 05:03 PM
Replies: 7
Views: 4,680
Posted By tomtomhotep
GetItemUniqueId

Anyone notice that GetItemUniqueId(bag, slot) doesn't work anymore?


I crafted a lvl 26 axe and shield, and the game gave them both the same UniqueID. I double-checked this by mousing over the 2...
Forum: Tutorials & Other Helpful Info 10/10/16, 03:11 PM
Replies: 9
Views: 19,722
Posted By tomtomhotep
Making Statements that require assumptions

You almost gave me a heart attack when I read that!!

After experimenting with:


local s = string.rep("1234567890", 50)
local t = string.rep("1234567890", 50)

for i = 1,1000 do
s = s .....
Forum: Lua/XML Help 09/13/16, 03:55 PM
Replies: 3
Views: 3,939
Posted By tomtomhotep
Praise the Three, I got it!!

After many trials and tribulations, I finally got it working. Thanks to the 8 divines and the Three.

I read the little tuto you linked to me, and changed my Lua to match, but that was no help. I...
Forum: Lua/XML Help 09/12/16, 08:43 PM
Replies: 3
Views: 3,939
Posted By tomtomhotep
OK, Ayantir, I did everything you...

OK, Ayantir, I did everything you said:



UI_OrdersList = ZO_SortFilterList:Subclass()

UI_OrdersList.defaults = {}

UI_OrdersList.SORT_KEYS = {
["name"] = {},
Forum: Lua/XML Help 09/12/16, 05:51 PM
Replies: 3
Views: 3,939
Posted By tomtomhotep
Question ZO_SortFilterList -- What am i doing wrong??? :(

I'm trying to make a scroll list with columns.
I started by downloading "ScrollListExample" addon, which didn't work.
I fixed it by comparing it's code to MailR. Then it worked.

Then I copied...
Showing results 1 to 21 of 21