Showing results 1 to 1 of 1
Search took 0.00 seconds.
Search: Posts Made By: Urtgard
Forum: Lua/XML Help 10-16-19, 03:49 AM
Replies: 11
Views: 3,136
Posted By Urtgard
break stops the loop. You stop the loop if id ~=...

break stops the loop.

You stop the loop if id ~= factionID but you want to stop it when you found the correct id.

if id == factionID then
--do stuff with id
break
end
Showing results 1 to 1 of 1