summaryrefslogtreecommitdiff
path: root/npc/other
diff options
context:
space:
mode:
authorAria <Aria@54d463be-8e91-2dee-dedb-b68131a5f0ec>2004-12-19 04:46:13 +0000
committerAria <Aria@54d463be-8e91-2dee-dedb-b68131a5f0ec>2004-12-19 04:46:13 +0000
commit9a3fb1fb39990aa852c0e2025aed83c31cc482a1 (patch)
treea70fb82e5cd9ee8c0bcfc1dda1b465451f8a8ab6 /npc/other
parent3ca026b5eef1b777f74e40dca576e6903f980b26 (diff)
downloadhercules-9a3fb1fb39990aa852c0e2025aed83c31cc482a1.tar.gz
hercules-9a3fb1fb39990aa852c0e2025aed83c31cc482a1.tar.bz2
hercules-9a3fb1fb39990aa852c0e2025aed83c31cc482a1.tar.xz
hercules-9a3fb1fb39990aa852c0e2025aed83c31cc482a1.zip
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/branches/stable@631 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'npc/other')
-rw-r--r--npc/other/devnpc.txt82
1 files changed, 82 insertions, 0 deletions
diff --git a/npc/other/devnpc.txt b/npc/other/devnpc.txt
index d1af636a2..33c67d03f 100644
--- a/npc/other/devnpc.txt
+++ b/npc/other/devnpc.txt
@@ -197,3 +197,85 @@ OnInit:
initnpctimer;
break;
}
+
+//Aria\\
+Aria
+prontera.gat,156,179,4 script Aria 805,{
+ npcspeed 150;
+ mes "[Aria]";
+ mes "Okay, I'm Evera's brother, Aria";
+ mes "^FF00FFAge^000000: 13 years";
+ mes "^FF00FFWhat I do^000000: Graphics and NPCs";
+ mes "^FF00FFWhy I'm here^000000: Cuz eAthena ROX";
+ close;
+OnTimer15000:
+ npcwalkto 150+rand(17),169+rand(16);
+ setnpctimer 0;
+
+Lariatalk:
+ set $ariatalk,rand(10);
+ if($ariatalk == 0) goto Lquote0;
+ if($ariatalk == 1) goto Lquote1;
+ if($ariatalk == 2) goto Lquote2;
+ if($ariatalk == 3) goto Lquote3;
+ if($ariatalk == 4) goto Lquote4;
+ if($ariatalk == 5) goto Lquote5;
+ if($ariatalk == 6) goto Lquote6;
+ if($ariatalk == 7) goto Lquote7;
+ if($ariatalk == 8) goto Lquote8;
+ if($ariatalk == 9) goto Lquote9;
+ if($ariatalk == 10) goto Lquote10;
+ goto Lariatalk;
+
+Lquote0:
+ npctalk "OMGWTFBBQ";
+
+Lquote1:
+ npctalk "So its u -> 0";
+ npctalk "... That did not look right";
+
+Lquote3:
+ npctalk "OMGITSJEEBUS!#!@%!";
+ setnpctimer 0;
+ break;
+
+Lquote4:
+ npctalk "Evera died. I guess.";
+ setnpctimer 0;
+ break;
+
+Lquote5:
+ npctalk "I CLICK THE BUTTON AND THEY DON'T DIE!";
+ setnpctimer 0;
+ break;
+
+Lquote6:
+ npctalk "RO? wtf?";
+ npctalk "Oh yeah.";
+ setnpctimer 0;
+ break;
+
+Lquote7:
+ npctalk "omgnoob. DIE!";
+ setnpctimer 0;
+ break;
+
+Lquote8:
+ npctalk "WooT!";
+ setnpctimer 0;
+ break;
+
+Lquote9:
+ npctalk "is that why u bought windows";
+ npctalk "cuz bill has red hair";
+ setnpctimer 0;
+ break;
+
+Lquote10:
+ setnpctimer 0;
+ break;
+
+OnInit:
+ initnpctimer;
+ break;
+}