
Lua Discussions
Moderator: Plugin Moderators
- THEMAX
- Inhabitant of a Universe
- Reactions:
- Posts: 4216
- Joined: Thu Sep 14, 2017 17:30
- Location: Astrellia, UHAE
- Plugins: Show
- Version: Beta
Re: Lua Discussions

Emperor of Atlantean federated empire

Founder state of Internationxal council
Leader of AEOY and steel pact

Founder state of Internationxal council
Leader of AEOY and steel pact
-
- Inhabitant of a Megacity
- Reactions:
- Posts: 294
- Joined: Sun Aug 26, 2018 14:07
- Plugins: Show
Re: Lua Discussions
Is it possible for a moving car to get a new target without despawning? Also, how would one get the x and y of the building that uses the lua script?
- KINGTUT10101
- 1,000,000 inhabitants
- Reactions:
- Posts: 1943
- Joined: Thu Jul 07, 2016 22:50
- Location: 'Merica
- Plugins: Show
- Version: Beta
- Phone model: Moto x4
Re: Lua Discussions
What would the code for something that checks for two specific values and requires them to both match (like month and day for example) look like? Also, is it possible to have a condition that is only true a random part of the time?
All of my plug-ins, maps and more:
https://sites.google.com/site/theotownmaps/home
YouTube channel:
https://m.youtube.com/c/kingtut-101
https://sites.google.com/site/theotownmaps/home
YouTube channel:
https://m.youtube.com/c/kingtut-101
-
- Inhabitant of a Megacity
- Reactions:
- Posts: 294
- Joined: Sun Aug 26, 2018 14:07
- Plugins: Show
Re: Lua Discussions
This script checks the values of month and day everyday and shows a toast if they match.KINGTUT10101 wrote: ↑Wed Oct 31, 2018 17:30What would the code for something that checks for two specific values and requires them to both match (like month and day for example) look like?
Code: Select all
function script.nextDay()
if City.getDay() == City.getMonth()
then Debug.toast("These values match!", City.getDay(), City.getMonth())
end
end
- KINGTUT10101
- 1,000,000 inhabitants
- Reactions:
- Posts: 1943
- Joined: Thu Jul 07, 2016 22:50
- Location: 'Merica
- Plugins: Show
- Version: Beta
- Phone model: Moto x4
Re: Lua Discussions
What if you wanted two something like "if x value is 24 and y value is 5-10"? Thanks for the help with the previous post tho.
All of my plug-ins, maps and more:
https://sites.google.com/site/theotownmaps/home
YouTube channel:
https://m.youtube.com/c/kingtut-101
https://sites.google.com/site/theotownmaps/home
YouTube channel:
https://m.youtube.com/c/kingtut-101
-
- Inhabitant of a Megacity
- Reactions:
- Posts: 294
- Joined: Sun Aug 26, 2018 14:07
- Plugins: Show
Re: Lua Discussions
You can do it like this:KINGTUT10101 wrote: ↑Thu Nov 01, 2018 1:56What if you wanted two something like "if x value is 24 and y value is 5-10"? Thanks for the help with the previous post tho.
Code: Select all
function script.nextDay()
if City.getDay() == 24 and City.getMonth() >= 5 and City.getMonth() <= 10
then Debug.toast("Eureka!")
end
end
Code: Select all
function script.nextDay()
if City.getDay() == 24 and City.getMonth() > 5 and City.getMonth() < 10
then Debug.toast("Eureka!")
end
end
There are probably other ways to do this that I can't think of right now.
Hope this helps!

- KINGTUT10101
- 1,000,000 inhabitants
- Reactions:
- Posts: 1943
- Joined: Thu Jul 07, 2016 22:50
- Location: 'Merica
- Plugins: Show
- Version: Beta
- Phone model: Moto x4
Re: Lua Discussions
Thanks! That helps a lot!
All of my plug-ins, maps and more:
https://sites.google.com/site/theotownmaps/home
YouTube channel:
https://m.youtube.com/c/kingtut-101
https://sites.google.com/site/theotownmaps/home
YouTube channel:
https://m.youtube.com/c/kingtut-101
Who is online
Users browsing this forum: No registered users and 4 guests