Spawns Database

Spawns database plugin for external plugins

Total Downloads: 11,169 - First Release: Nov 14, 2014 - Last Update: Jul 18, 2017

4.95833/5, 24 likes
  1. or maybe you just didnt make a spawn file and that's why the jail is mad as it cant find spawns to jail people
     
  2. Hi i got an old one do you mean i must redo one new? i must admit i have no thinked to that cause it was already do
     
  3. Apologies if this has been asked already, but when you enable custom spawns using this along with the Custom Spawn Point plugin, does it disable the vanilla spawns or are those still persistent?
     
  4. I've create a spawn town, and the spawn point work, but when I restart the server it dosen't. Any idea to fix it?
     
  5. hello,
    I'm a bit confused I want to have a random spawns in the deathmatch
    if I understand I need this

    To get a random spawn point use: (count being the number you got from GetSpawnsCount)
    Code (Text):
    local spawn point, err = spawn plugin: GetRandomSpawn (spawn file, count)
    if (not spawn point) then print (err) return end
    player.transform.position.x = spawnpoint.x
    player.transform.position.y = spawnpoint.y
    player.transform.position.z = spawnpoint.z

    but I do not understand where to place or whether creating this or...?
     
  6. Is this still working for anyone since the last update?
     
  7. no this code is totally wrong.
    look at the plugins that use it to understand.
     
  8. need help , in gun game when sometimes i spawn or other ppl they are stuck in floor .. how to fix it ?
     
  9. Hi there @Reneb .
    I have noticed a bug on my server related to your mod, When players spawn at a spawn point set via this mod the character behaves incorrectly with water.
    What I mean by this is that if you are standing just above water you are at 70% wet instead of around 5%, when you are in the water but only deep enough to have the feet under water the drowning warning comes up.
    2016-01-27_00001.jpg 2016-01-27_00002.jpg
     
  10. Also wondering... can i even get like a hint? like a GetRandomNumber(int min, int max) in the json file or something?
    [DOUBLEPOST=1453953213][/DOUBLEPOST]
    [DOUBLEPOST=1453963474,1453953197][/DOUBLEPOST]nm found the answer. you just add multiple spawns to the spawnfile so /spawns_new /spawns_add (a few times) /spawns_save (filename) then just use what you showed me above and it works!
     
  11. Hi Friends. If i want to set a mandatory starting spawning point, how would I do that with this plugin?
     
  12. Disable your noclip while making the spawnpoint
    [DOUBLEPOST=1454427892][/DOUBLEPOST]Hey. I have a issue with my gungame events. Totaly random, after they get killed they spawn on the beach outside the arena. Anyone got any ideas? I have also adressed this issue to the eventmanager plugin.
     
  13. Can confirm. This issue is quite bad. If you barely touch water you are drowning. Its almost like it thinks your head is below your feet or the modeling is messed up somehow.

    @Wulf any thoughts?
    [DOUBLEPOST=1454523990,1454497680][/DOUBLEPOST]The reason they were drowning was in fact due to a positioning error.

    Was able to get this to work using @[KOS]Slaythar_Silcom fix on page 1 here Custom Spawn Points | Oxide .

    I have uploaded the fixed file below. Enjoy!

    This is a fix for the plugin Custom Spawn Points for Rust | Oxide to Spawns Database for Rust | Oxide
     

    Attached Files:

  14. how do i make the spawns random for deathmatch free for all??
    i have 10 spawn points
     
  15. It should be random based on the number of spawn points you make.
     
  16. Is there a way that I can make events use different spawn points for each player? For example if i configure 8 spawn points and I run an event which has 8 players there is a very large chance of some playing spawning inside each other at the same spawn point.

    I can create more spawns but there is always a chance of people spawning inside each other.
     
  17. How would i randomise the spawns? Im using GunGame plugin with the event manager,zone & spawn plugin. I have created 15 spawn points saved the file loaded it with the event but its only using 2 spawn points?
     
  18. Hey can you please add a way to remove whole spawn file so that i don not have to remove each one at a time
     
  19. local spawnpoint, err = spawnsplugin:GetRandomSpawn( spawnfile, count )
    if(not spawnpoint) then print(err) return end
    player.transform.position.x = spawnpoint.x
    player.transform.position.y = spawnpoint.y
    player.transform.position.z = spawnpoint.z

    Tell me where to insert the code to the plugin worked randomly spawns in the zone
     
  20. setting up a deathmatch arena and when players spawn in they are drowning. any idea y this is happening?