File tree Expand file tree Collapse file tree 4 files changed +7
-1
lines changed
src/main/kotlin/game/game/location Expand file tree Collapse file tree 4 files changed +7
-1
lines changed Original file line number Diff line number Diff line change @@ -16,7 +16,6 @@ on(ServerLaunchEvent::class) {
1616 // Dark wizards
1717 world.addNpc(174 , 3086 , 3238 )
1818 .startWandering(4 , WanderingFrequency .NORMAL );
19-
2019 world.addNpc(174 , 3084 , 3235 )
2120 .startWandering(4 , WanderingFrequency .NORMAL );
2221}
Original file line number Diff line number Diff line change @@ -5,6 +5,7 @@ import api.predef.ext.*
55import io.luna.game.event.impl.ServerStateChangedEvent.ServerLaunchEvent
66import api.shop.dsl.ShopHandler
77import io.luna.game.model.item.shop.*
8+ import io.luna.game.model.mob.wandering.*
89
910val shopkeeperId = 577
1011
@@ -53,4 +54,5 @@ on(ServerLaunchEvent::class) {
5354 world.addNpc(id = shopkeeperId,
5455 x = 2975 ,
5556 y = 3383 )
57+ .startWandering(3 , WanderingFrequency .NORMAL )
5658}
Original file line number Diff line number Diff line change @@ -5,6 +5,7 @@ import api.predef.ext.*
55import io.luna.game.event.impl.ServerStateChangedEvent.ServerLaunchEvent
66import api.shop.dsl.ShopHandler
77import io.luna.game.model.item.shop.*
8+ import io.luna.game.model.mob.wandering.*
89
910val shopkeeperId = 580
1011
@@ -50,4 +51,5 @@ on(ServerLaunchEvent::class) {
5051 world.addNpc(id = shopkeeperId,
5152 x = 2950 ,
5253 y = 3387 )
54+ .startWandering(3 , WanderingFrequency .NORMAL )
5355}
Original file line number Diff line number Diff line change @@ -6,6 +6,7 @@ import io.luna.game.event.impl.ServerStateChangedEvent.ServerLaunchEvent
66import api.shop.dsl.ShopHandler
77import com.google.common.collect.ImmutableList
88import io.luna.game.model.item.shop.*
9+ import io.luna.game.model.mob.wandering.*
910
1011val shopkeeperId = ImmutableList .of(524 , 525 )
1112
@@ -58,7 +59,9 @@ on(ServerLaunchEvent::class) {
5859 world.addNpc(id = shopkeeperId.get(0 ),
5960 x = 2959 ,
6061 y = 3388 )
62+ .startWandering(3 , WanderingFrequency .NORMAL )
6163 world.addNpc(id = shopkeeperId.get(1 ),
6264 x = 2958 ,
6365 y = 3388 )
66+ .startWandering(3 , WanderingFrequency .NORMAL )
6467}
You can’t perform that action at this time.
0 commit comments