Added more fist of guthix work

This commit is contained in:
ceikry 2021-07-24 13:01:44 -05:00
parent 01bc39ff3f
commit 2cdc2c3d55
2 changed files with 10 additions and 0 deletions

View file

@ -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

View file

@ -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!!)
}
}
}
}