diff options
author | Jesusaves <cpntb1@ymail.com> | 2019-04-28 20:03:09 +0000 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2019-04-28 20:03:09 +0000 |
commit | 8de8763bcd9ea89f7484b33f61d4e754f7ffb4ab (patch) | |
tree | 8fc0ba5c3c406a4ee6e866fd4cea0209f39437aa | |
parent | 1a4fe3a5a9f556ff398345d3722e36c81729b103 (diff) | |
download | serverdata-8de8763bcd9ea89f7484b33f61d4e754f7ffb4ab.tar.gz serverdata-8de8763bcd9ea89f7484b33f61d4e754f7ffb4ab.tar.bz2 serverdata-8de8763bcd9ea89f7484b33f61d4e754f7ffb4ab.tar.xz serverdata-8de8763bcd9ea89f7484b33f61d4e754f7ffb4ab.zip |
Fix some issues which WildX complained about
-rw-r--r-- | npc/008-1/4144.txt | 18 |
1 files changed, 11 insertions, 7 deletions
diff --git a/npc/008-1/4144.txt b/npc/008-1/4144.txt index 17dd6e45..fcaf61fb 100644 --- a/npc/008-1/4144.txt +++ b/npc/008-1/4144.txt @@ -3,13 +3,13 @@ // Jesusalva // WildX // Description: -// 4144 is not an human, according to studies conducted by TMW Team. +// Andrei is not an human, according to studies conducted by TMW Team. // He seems to be a highly advanced artificial intelligence. // The fact that he was never seen contributes to this theory. // Other members opinions: // “4144 is a bot which sits on Hurnscald.” ~ Sagratha, 2016 -008-1,246,104,0 script 4144 NPC_PLAYER,{ +008-1,246,104,0 script Andrei NPC_PLAYER,{ function sittingBot; function zealiteLore; // TODO: Maybe we should use Karma here? For discussion @@ -51,9 +51,9 @@ // Main dialog speech S_LAST_NEXT, - l("I am just a NPC. Sitting on NPCs is usually fine, we don't complain."), - l("But sitting on normal players and/or GMs can be seen as trolling, spamming and player abuse warranting you a ban."), - l("I would advise you to sit closer to the Soul Menhir, instead."); + l("I don't care, but there might be some adventurers and staff who might care."), + l("That's why you should always ask. This is good social etiqutte, you know?"), + l("Anyway, I would advise you to sit closer to the Soul Menhir, instead."); return; } @@ -63,7 +63,11 @@ speech S_LAST_NEXT, l("I am maintaing Hurnscald's Soul Menhir in working conditions."), l("Soul Menhirs are pieces of Zealite Ore, really needed to cast magic around here."), - l("Please do not mistake them with Terra Ore."); + l("They are not like your usual Terra Ore. Zealite is way more magical and powerful."), + l("This is why sometimes people try to steal shards from it... Poor fools."); + // Note: On TMW-BR, it is possible to "hit" Soul Menhirs for shards, which allow you to + // instantly teleport back to savepoint, even if lore-wise that was prohibted. + // This reference doesn't means it is actually possible to try that at all here. return; } @@ -77,7 +81,7 @@ OnInit: // What is 4144's hair? He is always wearing his wizard hat setunitdata(.@npcId, UDT_HAIRSTYLE, 7); - setunitdata(.@npcId, UDT_HAIRCOLOR, 17); + setunitdata(.@npcId, UDT_HAIRCOLOR, rand(1,20)); npcsit; .sex = G_MALE; |