diff options
author | Aria <Aria@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2004-12-19 00:54:15 +0000 |
---|---|---|
committer | Aria <Aria@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2004-12-19 00:54:15 +0000 |
commit | 77a8a8b20539115465609fba480f7be0c4f77656 (patch) | |
tree | e0b762ed2147b7fc6fbd6f37b5c3c7dfab697331 | |
parent | 50a801821756669f42084b7deacf3c8c92a077b0 (diff) | |
download | hercules-77a8a8b20539115465609fba480f7be0c4f77656.tar.gz hercules-77a8a8b20539115465609fba480f7be0c4f77656.tar.bz2 hercules-77a8a8b20539115465609fba480f7be0c4f77656.tar.xz hercules-77a8a8b20539115465609fba480f7be0c4f77656.zip |
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@617 54d463be-8e91-2dee-dedb-b68131a5f0ec
-rw-r--r-- | npc/other/devnpc.txt | 82 |
1 files changed, 82 insertions, 0 deletions
diff --git a/npc/other/devnpc.txt b/npc/other/devnpc.txt index d1af636a2..4d644a7fd 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; +} |