[INACTIVE][ADMN] CreatureSpawner v1.0 - Spawn creatures easily [803]

Discussion in 'Inactive/Unsupported Plugins' started by Xstasy, Apr 30, 2011.

  1. Offline

    Xstasy

    CreatureSpawner v1.0
    Built against CraftBukkit 740.

    This is my first plugin that I release for the public.
    The plugin offers the ability to spawn creatures easily, it has Permission support (although it's not a necessity!)

    Features:
    • Spawning creatures.
    Available Creatures:
    • Cow
    • Creeper
    • Ghast
    • Giant
    • Monster
    • Pig
    • Pig_Zombie (Currently not working, looking into it)
    • Sheep
    • Skeleton
    • Slime
    • Spider
    • Squid
    • Wolf
    • Zombie
    Download:
    CreatureSpawner.jar (Source soon to be available on Github)

    Commands:
    • /cspawn [creature] [amount]
    Permissions:
    Code:
    creaturespawner.spawn
    Changelog:
    • Initial release v1.0 (Ability to spawn creatures)
    • Version v1.1 fixed minor bugs, all creatures except of Pig_Zombies are confirmed working.
     
    Manji and JWhy like this.
  2. Offline

    JWhy

  3. Offline

    hiphopgamer

    this is just what i wanted, unfortunately pig zombie doesnt work
     
  4. Offline

    Xstasy

    I'll fix that in the next release.
     
  5. Offline

    dfduck

    When I start my server (with CreatureSpawner.jar in the plugins folder), I get an error saying the file could not load:
    Code:
    2011-05-01 15:34:00 [INFO] Starting minecraft server version Beta 1.5_02
    2011-05-01 15:34:00 [INFO] Loading properties
    2011-05-01 15:34:00 [INFO] Starting Minecraft server on *:25565
    2011-05-01 15:34:00 [INFO] This server is running Craftbukkit version git-Bukkit-0.0.0-706-gf53e007-b740jnks (MC: 1.5_02)
    2011-05-01 15:34:00 [INFO] Preparing level "world"
    2011-05-01 15:34:00 [INFO] Preparing start region
    2011-05-01 15:34:01 [SEVERE] Could not load 'plugins\CreatureSpawner.jar' in folder 'plugins':
    java.util.zip.ZipException: error in opening zip file
        at java.util.zip.ZipFile.open(Native Method)
        at java.util.zip.ZipFile.<init>(Unknown Source)
        at java.util.jar.JarFile.<init>(Unknown Source)
        at java.util.jar.JarFile.<init>(Unknown Source)
        at org.bukkit.plugin.java.JavaPluginLoader.loadPlugin(JavaPluginLoader.java:55)
        at org.bukkit.plugin.SimplePluginManager.loadPlugin(SimplePluginManager.java:160)
        at org.bukkit.plugin.SimplePluginManager.loadPlugins(SimplePluginManager.java:108)
        at org.bukkit.craftbukkit.CraftServer.loadPlugins(CraftServer.java:85)
        at net.minecraft.server.MinecraftServer.e(MinecraftServer.java:217)
        at net.minecraft.server.MinecraftServer.a(MinecraftServer.java:204)
        at net.minecraft.server.MinecraftServer.init(MinecraftServer.java:144)
        at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:259)
        at net.minecraft.server.ThreadServerApplication.run(SourceFile:394)
    2011-05-01 15:34:01 [INFO] [Permissions] (Phoenix) was Initialized.
    2011-05-01 15:34:01 [INFO] Loading BukkitPiston 0.43
    2011-05-01 15:34:01 [INFO] [Permissions] version [2.7.2] (Phoenix)  loaded
    2011-05-01 15:34:01 [INFO] Loading map 'org.dynmap.kzedmap.KzedMap'...
    2011-05-01 15:34:01 [INFO] Loading renderer 'org.dynmap.kzedmap.DefaultTileRenderer'...
    2011-05-01 15:34:01 [INFO] Activated world 'world' in Dynmap.
    2011-05-01 15:34:01 [INFO] Dynmap WebServer started on null:25560
    2011-05-01 15:34:01 [INFO] [SimpleAwaySleep] Version 1.0.0
    2011-05-01 15:34:01 [INFO] [SimpleAwaySleep] Plugin Enabled
    2011-05-01 15:34:01 [INFO] [Tele++] version [1.3.3a] loaded
    2011-05-01 15:34:01 [INFO] [WeatherControl] Loaded configuration for world 'world'
    2011-05-01 15:34:01 [INFO] [WeatherControl] version 0.4.2 is enabled!
    2011-05-01 15:34:01 [INFO] Done (0,111s)! For help, type "help" or "?"
     
  6. Offline

    John Lundblad

    I can spawn all animals but when i spawn any type of monster (exept slime) they pop up in me and they dissapear the same moment... Whats wrong?
     
  7. Offline

    simlempaq

    the ghasts does not work...
     
  8. Offline

    zerstreut

  9. Offline

    choules

    YES! I cant thank you enough for this plugin :D Thank you!
     
  10. Offline

    mariofan765

    You probably have monsters set as false inside of server.properties.

    Change that, reload the server, and try to spawn a monster.
     
  11. Offline

    Xstasy

    I've been using that site forever, never ran into any problems, but sure. I uploaded it to my private webserver.
     
  12. Hello there. If you based your plugin on my freely available source code (which is perfectly ok) I would appreciate some credit (even just a passing reference is fine). If it's just a coincidence, and of course that's not impossible, nevermind me ;)

    Your code:

    Code:
          CreatureType creature = CreatureType.fromName(result.toString());
          if (creature == null) return true;
          int amount = 1;
          if (args.length > 1) amount = Integer.parseInt(args[1]);
          for (int i = 0; i < amount; i++)
            player.getWorld().spawnCreature(player.getLocation(), creature);
          return true;
    My code:

    Code:
                CreatureType ct = CreatureType.fromName(args[0]);
                if (ct == null) return true;
                int amount = 1;
                if (args.length > 1) amount = Integer.parseInt(args[1]);
                for (int i = 0; i < amount; i++)
                    player.getWorld().spawnCreature(player.getLocation(), ct);
                return true;
     
    jordanneil23 likes this.
  13. Offline

    DemonCraft

    Bud you should make Monster spawner items for each one.
    Like make it where you can spawn a monster spawner with that monster in it to your inventory.
     
  14. Offline

    Drei Gyuu

    Is there a way maybe you can enable a interface to let you select what mob to spawn with a mob spawner
     
  15. Offline

    Jebub

    So I can only spawn animals, not monsters. I have no idea why. I get no errors and I have allowed monsters to spawn on the server. I managed to spawn a zombie 1 second after I logged in but after that nothing happens when I try to spawn monsters.
     
  16. Offline

    jordanneil23

    IMO to many people have made plugins to spawn mobs. That's just my opinion though. :p
     
  17. Offline

    Cowmaster

    Can u make it so that it spawns on your target and not around yourself?
     
  18. Offline

    spunkiie

    REQ: Specify spawn location (x,y,z) for use with scripts.

    :)
     
  19. Offline

    jakobb987

    God damn... I installed your plugin, and then I figured that I wouldn't really need it, so why even have it. Then I uninstalled it again. Now ALL the creatures on my server have infinite health. This is a huge problem, since spiders stay aggressive in the day. So many people have complained about it, and some even left my server due to it.
    Please fix this, or I will report your plugin. I even made this account to tell you.
    What can I do about it?
     
  20. Offline

    Xstasy

    This plugin does not change creature health, try removing other plugins that may interfere.
     
    arpey, jordanneil23 and Manji like this.
  21. Offline

    Zerkion

    LOLZ HEY Xstasy /cspawn monster = spawning zombies with players skin its a zombie but it has players skin, it does groan its just a normal player without a name but if u attack it it attacks back ITS SO COOL! :D best part of this mod! DO NOT FIX IT :O

    you might considering puttng it on the list

    EDIT by Moderator: merged posts, please use the edit button instead of double posting.
     
    Last edited by a moderator: May 14, 2016
  22. Offline

    Xstasy

    Thats actually just what monsters look like.... Check the minecraftwiki.net :p
     
  23. Offline

    shaggieh

    /cspawn pigZombie 1 works for me
     
  24. Offline

    kazzy

    when ever i spawn a animal/monster i dont get an error,but they dont appear, in the console it just says the name of the creature i wanted to put
     
  25. Offline

    creeperfan123

    link down?
     
  26. Offline

    SirPole

    Hi, what about #818 support? Have anybody tested that? Thanks.
     
  27. Offline

    antonplopp

    Link ain't working m8!
     
  28. Offline

    Plague

    please update to latest recommended CB
     
  29. Offline

    ChrizC

    Please update to the latest RB.

    Chris
     
  30. Offline

    Plague

    inactive then
     

Share This Page