Page 2 of 7

Re: Mod Authors - Resource Register

Posted: Mon Oct 05, 2020 11:30 pm
by azimovhaas8
I want to reserve 901 - 921 item template index numbers for my future mods.

Re: Mod Authors - Resource Register

Posted: Thu Oct 08, 2020 3:58 pm
by Hazelnut
haloterm wrote: Thu Oct 01, 2020 8:07 am In my Black Horse Courier quest mod, I add a few new locations. I want to use the following location IDs:

50500 to 50599.

I think we should also register the latitude/longitude coordinates of added locations, to avoid creating overlaps. As of October 8th 2020 I use:

lat 47232, lon 9344
lat 47104, lon 9344
lat 45440, lon 7680

And here the IDs of custom books. I use the following:

155968041
2086854367
966925611
967497446
33756280
1025470710
965999096

Finally, I use one global variable to be able to check in all quests if the player is "reporter" or "not reporter":

50 (= Unused25)

I will keep this post updated if I use anything more.
I don't want to add location coords to the OP but if people document it in the thread that would be okay. I would suggest using the standard map pixel coords rather than world coords though.

Custom book id's are not restricted by any DF constraints, so collisions should be very unlikely, so not going to register those.

Lastly, regarding the global variable you want to use - since you're giving players a book that indicates that they are a reporter you could check the presence of that item maybe?

Re: Mod Authors - Resource Register

Posted: Thu Oct 08, 2020 4:36 pm
by haloterm
Hazelnut wrote: Thu Oct 08, 2020 3:58 pm since you're giving players a book that indicates that they are a reporter you could check the presence of that item maybe?
No, unfortunately not, see my answer in my other thread for details.


I added latitude/longitude because that's what we have to calculate anyway and I was actually too lazy to calculate it back to X/Y from my .json files...

Re: Mod Authors - Resource Register

Posted: Tue Jan 19, 2021 5:19 pm
by XJDHDR
May I please have two Model IDs. I'll take 80001 and 80002.

Re: Mod Authors - Resource Register

Posted: Mon Feb 22, 2021 10:31 pm
by Asesino
hi Hazelnut,
Could I please reserve three spots in custom items. I am finally getting around to updating the telescope mod.
830-832 please.
thank you
a

Re: Mod Authors - Resource Register

Posted: Sun Jun 13, 2021 5:54 pm
by DunnyOfPenwick
Currently using Item Template #1776 for Delver Compass.

Re: Mod Authors - Resource Register

Posted: Sat Sep 25, 2021 5:37 pm
by Ralzar
Hi

Please extend this:

ItemTemplate Index
530-549: Ralzar

to

530-559: Ralzar

And the same for Image Archive.

Re: Mod Authors - Resource Register

Posted: Sun Sep 26, 2021 2:31 am
by l3lessed
Please add a category for render layer masks. My minimap mod is now officially using its own render layer mask, and if other mods in the future try to use the same render layer, they will pick up my mods objects in their view.

l3lessed's Enchanted Compass - A Minimap Mod is using Layer Mask "ReservedforMods31". This layer mask is using layer/int 31.

Re: Mod Authors - Resource Register

Posted: Mon Sep 27, 2021 2:50 pm
by TheLacus
l3lessed wrote: Sun Sep 26, 2021 2:31 am Please add a category for render layer masks. My minimap mod is now officially using its own render layer mask, and if other mods in the future try to use the same render layer, they will pick up my mods objects in their view.

l3lessed's Enchanted Compass - A Minimap Mod is using Layer Mask "ReservedforMods31". This layer mask is using layer/int 31.
There is a limited number of layers so it's better to reserve them at runtime using ModReservedLayer class.

Re: Mod Authors - Resource Register

Posted: Mon Sep 27, 2021 4:21 pm
by l3lessed
Always teaching me something new Lucas. Thanks for all the wisdom. Will do.