03-22-2017, 05:28 PM
Hello, i need a plugin to random spawn items in the zones of the world
Random spwn items
|
03-22-2017, 05:28 PM
Hello, i need a plugin to random spawn items in the zones of the world
05-14-2017, 04:38 AM
can any help ? need to make random spawner items, how to do this ??
05-14-2017, 04:49 AM
You can use cWorld:SpawnItemPickups to spawn items at passed coords.
When do you want to spawn the items? Command, hook, scheduler?
05-14-2017, 04:51 AM
i want to spawn random item list in random places of the world. where i set random spawner item
05-14-2017, 05:01 AM
There's nothing in Cuberite that would spawn random items at regular intervals. You need to implement that. So you need to:
1. Create a function that is called regularly, using cWorld:ScheduleTask() 2. In that function, decide on the random coords and item type (math.random()) and spawn the pickup (cWorld:SpawnItemPickups())
05-14-2017, 05:17 AM
(This post was last modified: 05-14-2017, 05:19 AM by Seadragon91.)
@xoft I just see that SpawnItemPickups doesn't return anything. Could be useful for minigames.
Returning a table of entity ids should be okay. This could be useful for plugin that wants to know when a player collects a pickup with a specific item. Also for example changing the life time of a pickup. Edit: Just see that there is a hook named HOOK_COLLECTING_PICKUP that is triggered when a pickup is collected. @Boo If you want I could write that plugin. Thanks given by: Boo
05-14-2017, 07:08 PM
(05-14-2017, 05:17 AM)Seadragon91 Wrote: @Boo If you want I could write that plugin. Please, can you? i dont know programmins, and lua :-( i newer work with api...
05-15-2017, 09:35 PM
Okay a few questions.
When should the pickup spawn?
05-16-2017, 01:24 AM
1 -Every few seconds
2 - Can you make an item named "Random Spawner" and spawn items around some radius of blocks?
05-16-2017, 02:01 AM
(This post was last modified: 05-16-2017, 02:03 AM by Seadragon91.)
A sign could be used as center or a command that creates the info. The plugin can then store the position and the info from the sign
Example inf on sign. Lines: 1 = [ItemSpawn] 2 = <radius> There would be two lines left for more info. Another question, the items:
|
« Next Oldest | Next Newest »
|