diff options
Diffstat (limited to 'npc')
-rw-r--r-- | npc/012-1/bot.txt | 5 | ||||
-rw-r--r-- | npc/017-1/shops.txt | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/npc/012-1/bot.txt b/npc/012-1/bot.txt index 8f471bb34..1bd0bdbc4 100644 --- a/npc/012-1/bot.txt +++ b/npc/012-1/bot.txt @@ -3,9 +3,12 @@ // Jesusalva // Description: // Introduces the new area ingame +// Quest: +// TODO: Quest, requires 1× LOFCoin (obtain for free with Pyndragon) +// Reward: Mouboo Figurine 012-1,82,59,0 script LOFBot NPC_PLAYER,{ - if (rand(1,5) % 2 == 1) { + if (rand2(1,5) % 2 == 1) { mesn; mesq l("Ah, @@ is sooo amazing!", $MOST_HEROIC$); next; diff --git a/npc/017-1/shops.txt b/npc/017-1/shops.txt index db1c611ce..64602bf32 100644 --- a/npc/017-1/shops.txt +++ b/npc/017-1/shops.txt @@ -22,6 +22,7 @@ OnInit: .distance = 4; tradertype(NST_MARKET); + sellitem LOFCoin, -1, 1; sellitem YellowDye, -1, 1; sellitem CottonCloth, -1, 3; sellitem ArrowAmmoBox, -1, 5; @@ -29,6 +30,7 @@ OnInit: OnClock1250: OnClock0112: + restoreshopitem LOFCoin, -1, 1; restoreshopitem YellowDye, -1, 1; restoreshopitem CottonCloth, -1, 3; restoreshopitem ArrowAmmoBox, -1, 5; |