IcyBlade Posted January 12, 2021 Share Posted January 12, 2021 As the topic name implies, is there a way to specifically delete the meteor spawner of an area using console or commands? Most commands I've found nuke your world of meteor spawners... Link to comment Share on other sites More sharing options...
ADM Posted January 12, 2021 Share Posted January 12, 2021 Sure, just made one to find and delete a spawner around you : spawner = FindEntity(ThePlayer, 5, nil, nil, nil, {"CLASSIFIED"}) if spawner ~= nil and spawner.components.meteorshower ~= nil then spawner:Remove() end The radius is set to 5, this should be a very short distance, so teleport to a spawner with c_gonext("meteorspawner") and execute the command on top of the one you don't want. Link to comment Share on other sites More sharing options...
IcyBlade Posted January 12, 2021 Author Share Posted January 12, 2021 15 minutes ago, ADM said: Sure, just made one to find and delete a spawner around you : spawner = FindEntity(ThePlayer, 5, nil, nil, nil, {"CLASSIFIED"}) if spawner ~= nil and spawner.components.meteorshower ~= nil then spawner:Remove() end The radius is set to 5, this should be a very short distance, so teleport to a spawner with c_gonext("meteorspawner") and execute the command on top of the one you don't want. Thanks a ton! Link to comment Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.
Please be aware that the content of this thread may be outdated and no longer applicable.