Пікірлер
@mark2524
@mark2524 3 күн бұрын
Hi, I want ALL grey text in the game to be white, can that be done?
@jodygalcano6958
@jodygalcano6958 5 ай бұрын
💞 *Promo sm*
@paulgrovex
@paulgrovex 6 ай бұрын
Nice to see you keep doing thoses videos. 6 months ago you were the one that motivate me trying to develop some guild addon thx
@terranaut_codes
@terranaut_codes 6 ай бұрын
Amazing stuff! Were you able to release it? What's the name of the addon? I would love to check out what you made.
@paulgrovex
@paulgrovex 6 ай бұрын
@terranaut_codes still private but nothing big, a little button near the chat windows to port into the guild house and an other to be group for the futur raid/pvp event
@MagicMoshroom
@MagicMoshroom 6 ай бұрын
Beginner friendly and well structured. The UTF8 thing might be a bit too technical, but makes sense in context of localisation. It's also nice that you're showing the upload and approval process.
@MagicMoshroom
@MagicMoshroom 6 ай бұрын
I like how the GitHub repo link in the description is automatically shortened to ESOUI-Simp 😀
@orion33
@orion33 7 ай бұрын
5:50 how to install intellisence for ESO API?
@jmnsts92
@jmnsts92 7 ай бұрын
2:38 he explains it there, search for ESO and it should be called ESO snippets
@terranaut_codes
@terranaut_codes 6 ай бұрын
Thank you for your helpfulness! I also just released a video regarding GUI XML autocomplete from .xsd files generated by members of the community. It’s really helpful, and compliments ESO Snippets very nicely!
@bombyvonbomberson3285
@bombyvonbomberson3285 Жыл бұрын
This is amazing! Keep them coming! I've been finding it difficult to come across resources to make addons for ESO
@yokidrift1720
@yokidrift1720 Жыл бұрын
Hey there. I just wanted to thank you for these videos. I barely started but I really like your pace and explanation for things.
@simonzakeyh6515
@simonzakeyh6515 Жыл бұрын
Good video man, thanks a lot
@clav4503
@clav4503 Жыл бұрын
Keep up the work look forward to more vids to come
@terranaut_codes
@terranaut_codes Жыл бұрын
I appreciate it, CLAV. Hopefully I'll get around to it as my schedule allows.
@dovaincarnate3262
@dovaincarnate3262 Жыл бұрын
yo did you delete the previous code local function updateClock() time = os.date("%a %b %d, %H: %M: %S") TimeOClockLabel:SetText(time) zo_callLater(function () updateClock() end, 1000) end because now my text isnt showing i deleted it and it still wont show
@terranaut_codes
@terranaut_codes Жыл бұрын
Hi DovaIncarnate, Nope, I didn't delete any code in the repository. If you're getting stuck, there's a couple of things I would recommend: 1. Install an addon that catches the error messages within your installed addons. 2. Comment your code to make it simpler - start with a static message (like "hello world") and then build up to the zo_callLater function. Testing early and often can mitigate future headache. 3. Go to esoui.com's forums and ask a question there - or better yet, they have a Glitter channel that has also been very receptive to people asking questions about addon development. Thanks so much for watching. I hope you enjoy the tutorial series so far.
@ScottWilliams009
@ScottWilliams009 Жыл бұрын
Hi, I cant thank you enough for this tutorial series. I've been looking for ages for vids on how to create eso addons and this guide is really well explained. Could you talk about how to create your own ui elements next? Things like combat metrics, descendants support set tracker all have unique ui. Would be great to understand how to create something like that. Thanks again!
@terranaut_codes
@terranaut_codes Жыл бұрын
Hi Scott, thanks so much for watching. I'm really glad you enjoy the videos so far. If there is continued interest in the series, which I believe there is, I think I'd like to dive into unique UIs, as well as localization support for multiple languages. I do this in my free time - and while the coding portion actually doesn't take up much time, the creation of the videos do. I'll see what I can do in the future!
@bombyvonbomberson3285
@bombyvonbomberson3285 8 ай бұрын
@@terranaut_codes Any update on when you are planning on continuing this series? Would be super helpful to see a deep dive into how to navigate the Docs for the API and you maybe set some challenges for us, little show how, little homework sort of thing?
@terranaut_codes
@terranaut_codes 8 ай бұрын
@@bombyvonbomberson3285 ​​⁠Bomby, thank you so much for the comment. I’m really glad you are interested in the series and learning more about the API. Frankly, I don’t know how to efficiently read the API, so I think it would be a good video topic to present how I (eventually) figure out how to do it myself. From what I remember, it’s a sort of “trial-and-error” learning about what the functions do, and you get better the longer you develop addons. This of course isn’t ideal, but Zenimax has yet to provide official user friendly support for the API, and I don’t think help is coming. I was thinking the other day about how I wanted to jump back into addon development and ESO in general. I’m trying to finish a side project right now, and this will be next on my list! Thanks for your continued interest, it really means a lot!
@bombyvonbomberson3285
@bombyvonbomberson3285 8 ай бұрын
@@terranaut_codes Thanks for the speedy response! I have a flurry of ideas I want to do addon wise, just LUA isn't a language I know all too well. And this seems to be the only source for anything related to making addons for ESO. Presented really well. I'm keen to see more from you when you have time!
@terranaut_codes
@terranaut_codes Жыл бұрын
Hello, everyone. Thanks for taking the time to watch. I made a few errors in the video, and I'd like to address them here to give you the best information possible: * wiki.esoui.com/API is outdated. The correct API documentation is found here: wiki.esoui.com/APIVersion#live_API_version. From here, click on the API TXT Documentation, which brings you to a text file download. Yes, the most up-to-date API documentation is in a text file - YIKES. I was aware of this before I recorded the video, but I was graciously pointed here by the administrators at esoui.com. See why I was hesitant on including the text file in the video? Didn't want to scare you away. * There are 2 APIs: the PTS API and the live API. PTS stands for "Public Test Server", and is the NEXT API to be released to the general game. You can play around with new features included in the PTS API in the PTS server, which you can get access by following these instructions: elderscrollsonline.info/public-test-server. The general game's API is the "live" API, which is what I was referring to in the video. * Apparently, as a general rule the wiki.esoui.com should be considered outdated and should only be used as an extra reference. * When I say "you should pause the video and learn git" it wasn't that we'd be using it - it's just excellent practice - and in the case that you accidentally delete your code (it's happened to me MANY times), you can just re-pull your repository from your latest push. GitHub has the extra functionality of downloading a .zip file directly from it. This was a beginner tutorial, I probably should have spent more time showing how you could set up a git repository and pushing it to your account. Let me know if there was anything else you noticed, I'll continually update this comment.