diff options
-rw-r--r-- | npc/008-1/andra.txt | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/npc/008-1/andra.txt b/npc/008-1/andra.txt index 1ae6f300..8e80d3c5 100644 --- a/npc/008-1/andra.txt +++ b/npc/008-1/andra.txt @@ -10,7 +10,7 @@ mes "\"Hello, my name is Andra. You see those nice trees? I planted every single one of them! I'm very proud of my work!\""; next; menu - "Nice! I imagine you planted them a long time ago, right?.", -, + "Nice! I imagine you planted them a long time ago, right?", -, "Sorry, but I'm not interested in plants and trees.", L_DislikePlants; mes "[Andra]"; mes "\"That is the fun part... It took only some months... and look how healthy and beautiful they are!\""; @@ -57,7 +57,8 @@ L_PreSummon: OnTimer1000: set $@plant_id, rand(1029,1032); areamonster "008-1.gat",44,18,135,46,"plant",$@plant_id,$@PLANTS_PER_SEED, "Andra::OnPlantDeath"; - npctalk "I think some plants will grow almost instantly! Just Watch..."; + attachrid(getcharid(3,$@farmer$)); + message strcharinfo(0), "Andra: I think some plants will grow almost instantly! Just Watch..."; set $@spawned_plants, $@spawned_plants + $@PLANTS_PER_SEED; end; @@ -76,7 +77,8 @@ OnTimer5000: OnTimer7000: set $@plant_id, rand(1029,1032); areamonster "008-1.gat",44,18,135,46,"plant",$@plant_id,$@PLANTS_PER_SEED, "Andra::OnPlantDeath"; - npctalk "Good... Just take a walk and you will be able to see how your seeds turned into some nice looking plants."; + attachrid(getcharid(3,$@farmer$)); + message strcharinfo(0), "Andra: Good... Just take a walk and you will be able to see how your seeds turned into some nice looking plants."; set $@spawned_plants, $@spawned_plants + $@PLANTS_PER_SEED; set $@andra_status, 0; set $@farmer$, ""; |