Lua Discussions

Plug-in related stuff can be discussed here.

Moderator: Plugin Moderators

User avatar
Bearbear76
Former Bearbear65
Reactions:
Posts: 5730
Joined: 10 Feb 2017, 14:53
Location: L2 cache
Plugins: Showcase Store

Plugin Creator

Platform

Lua Discussions

#1

Post by Bearbear76 »

Just for discussing Lua stuff :lua:

User avatar
THEMAX
Inhabitant of a Universe
Reactions:
Posts: 4314
Joined: 14 Sep 2017, 17:30
Location: Astrellia, UHAE
Plugins: Showcase Store
Version: Beta

Plugin Creator

Platform

Re: Lua Discussions

#2

Post by THEMAX »

:lua:

User avatar
ElephantEthan
Inhabitant of a Megacity
Reactions:
Posts: 294
Joined: 26 Aug 2018, 14:07
Plugins: Showcase Store

Platform

Re: Lua Discussions

#3

Post by ElephantEthan »

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?

User avatar
KINGTUT10101
1,000,000 inhabitants
Reactions:
Posts: 2220
Joined: 07 Jul 2016, 22:50
Location: 'Merica
Plugins: Showcase Store
Version: Beta
Contact:

Plugin Creator

Platform

Re: Lua Discussions

#4

Post by KINGTUT10101 »

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?

User avatar
ElephantEthan
Inhabitant of a Megacity
Reactions:
Posts: 294
Joined: 26 Aug 2018, 14:07
Plugins: Showcase Store

Platform

Re: Lua Discussions

#5

Post by ElephantEthan »

KINGTUT10101 wrote:
31 Oct 2018, 17:30
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?
This script checks the values of month and day everyday and shows a toast if they match.

Code: Select all

function script.nextDay()
if City.getDay() == City.getMonth()
then Debug.toast("These values match!", City.getDay(), City.getMonth())

end
end
Make sure to have two "="s. People usually put only one and the script won't work properly because of it.
Screenshot_20181031-165822.png

User avatar
KINGTUT10101
1,000,000 inhabitants
Reactions:
Posts: 2220
Joined: 07 Jul 2016, 22:50
Location: 'Merica
Plugins: Showcase Store
Version: Beta
Contact:

Plugin Creator

Platform

Re: Lua Discussions

#6

Post by KINGTUT10101 »

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.

User avatar
ElephantEthan
Inhabitant of a Megacity
Reactions:
Posts: 294
Joined: 26 Aug 2018, 14:07
Plugins: Showcase Store

Platform

Re: Lua Discussions

#7

Post by ElephantEthan »

KINGTUT10101 wrote:
01 Nov 2018, 01:56
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.
You can do it like this:

Code: Select all

function script.nextDay()
if City.getDay() == 24 and City.getMonth() >= 5 and City.getMonth() <= 10
then Debug.toast("Eureka!")

end
end
Result: Shows a notification if the current day is 24 and the month is bigger than 5 or equal and if it's smaller than 10 or equal (5, 6, 7, 8, 9, 10)
Screenshot_20181101-135309.png
Or

Code: Select all

function script.nextDay()
if City.getDay() == 24 and City.getMonth() > 5 and City.getMonth() < 10
then Debug.toast("Eureka!")

end
end
Result: Same as above except the month can't be 5 or 10. (6, 7, 8, 9)

There are probably other ways to do this that I can't think of right now.
Hope this helps! :)

User avatar
KINGTUT10101
1,000,000 inhabitants
Reactions:
Posts: 2220
Joined: 07 Jul 2016, 22:50
Location: 'Merica
Plugins: Showcase Store
Version: Beta
Contact:

Plugin Creator

Platform

Re: Lua Discussions

#8

Post by KINGTUT10101 »

Thanks! That helps a lot!

Post Reply Previous topicNext topic

Return to “Plug-In Discussion”