Created
May 28, 2017 01:53
-
-
Save bigfoot547/883f34a8e499f3b3d03cdc2a3e3e2039 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
local name, count | |
for name in pairs(minetest.luaentities) do | |
if name = "mobname" then -- Replace mobname with the name of the mob | |
count = count + 1 | |
end | |
end | |
if count >= mobcap then return end -- Replace mobcap with the number of mobs at a time. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Small error:
if name = "mobname" then -- Replace mobname with the name of the mob
should be:
if name == "mobname" then -- Replace mobname with the name of the mob