Jump to content

Deleting specific meteor spawners?


Recommended Posts

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

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

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.

×
  • Create New...