Skip to content

Commit ccaee2c

Browse files
committed
Falador shop npcs wandering
1 parent 216544c commit ccaee2c

File tree

4 files changed

+7
-1
lines changed

4 files changed

+7
-1
lines changed

src/main/kotlin/game/game/location/draynorVillage/draynorVillage.kts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff 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
}

src/main/kotlin/game/game/location/falador/cassiesShields.kts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ import api.predef.ext.*
55
import io.luna.game.event.impl.ServerStateChangedEvent.ServerLaunchEvent
66
import api.shop.dsl.ShopHandler
77
import io.luna.game.model.item.shop.*
8+
import io.luna.game.model.mob.wandering.*
89

910
val 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
}

src/main/kotlin/game/game/location/falador/flynnsMaces.kts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ import api.predef.ext.*
55
import io.luna.game.event.impl.ServerStateChangedEvent.ServerLaunchEvent
66
import api.shop.dsl.ShopHandler
77
import io.luna.game.model.item.shop.*
8+
import io.luna.game.model.mob.wandering.*
89

910
val 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
}

src/main/kotlin/game/game/location/falador/generalStore.kts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ import io.luna.game.event.impl.ServerStateChangedEvent.ServerLaunchEvent
66
import api.shop.dsl.ShopHandler
77
import com.google.common.collect.ImmutableList
88
import io.luna.game.model.item.shop.*
9+
import io.luna.game.model.mob.wandering.*
910

1011
val 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
}

0 commit comments

Comments
 (0)