mirror of
https://gitlab.com/2009scape/2009scape.git
synced 2026-08-21 10:25:13 -06:00
Added more fist of guthix work
This commit is contained in:
parent
01bc39ff3f
commit
2cdc2c3d55
2 changed files with 10 additions and 0 deletions
|
|
@ -34,6 +34,7 @@ import core.game.world.map.zone.ZoneBuilder
|
|||
import core.game.world.update.flag.chunk.AnimateObjectUpdateFlag
|
||||
import core.game.world.update.flag.context.Animation
|
||||
import core.game.world.update.flag.context.Graphics
|
||||
import core.game.world.update.flag.player.ForceMovementFlag
|
||||
import rs09.game.content.dialogue.DialogueFile
|
||||
import rs09.game.system.SystemLogger
|
||||
import rs09.game.world.GameWorld
|
||||
|
|
|
|||
|
|
@ -3,6 +3,9 @@ package rs09.game.system.command.sets
|
|||
import core.game.node.item.Item
|
||||
import core.plugin.Initializable
|
||||
import org.rs09.consts.Items
|
||||
import rs09.game.ai.general.GeneralBotCreator
|
||||
import rs09.game.ai.general.scriptrepository.GlassBlowingBankstander
|
||||
import rs09.game.content.activity.fog.FOGWaitingArea
|
||||
import rs09.game.system.command.Command
|
||||
|
||||
@Initializable
|
||||
|
|
@ -20,6 +23,12 @@ class DevelopmentCommandSet : CommandSet(Command.Privilege.ADMIN) {
|
|||
}
|
||||
}
|
||||
|
||||
define("testbots"){player, _ ->
|
||||
for(i in 1..3){
|
||||
val g = GeneralBotCreator(player.location, GlassBlowingBankstander())
|
||||
FOGWaitingArea.register(g.bot!!)
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue