diff options
author | amber <amber@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2004-11-18 01:07:58 +0000 |
---|---|---|
committer | amber <amber@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2004-11-18 01:07:58 +0000 |
commit | 764dc82d32ef9bd1791e76d879e759f00db60d5d (patch) | |
tree | 95a4009afd22dda5920aef6b89f3732bff2f7894 /npc/other/devnpc.txt | |
parent | 86062450f70ee11aaad62426ca19e02528146f61 (diff) | |
download | hercules-764dc82d32ef9bd1791e76d879e759f00db60d5d.tar.gz hercules-764dc82d32ef9bd1791e76d879e759f00db60d5d.tar.bz2 hercules-764dc82d32ef9bd1791e76d879e759f00db60d5d.tar.xz hercules-764dc82d32ef9bd1791e76d879e759f00db60d5d.zip |
Some fixes for npcs
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/athena@238 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'npc/other/devnpc.txt')
-rw-r--r-- | npc/other/devnpc.txt | 22 |
1 files changed, 14 insertions, 8 deletions
diff --git a/npc/other/devnpc.txt b/npc/other/devnpc.txt index 6b61b4615..15cf4c502 100644 --- a/npc/other/devnpc.txt +++ b/npc/other/devnpc.txt @@ -18,13 +18,12 @@ // MouseJstr =========================================================>\\ ayothaya.gat,76,145,5 script MouseJstr 763,{ - npcspeed 100; + npcspeed 50; mes "[MouseJstr]"; mes "Yo homeslices.."; mes "I am MouseJstr on AIM and josh in real life.."; next; mes "I enjoy maintaining a RO server because of the abuse I get"; - initnpctimer; close; OnTimer15000: npcwalkto 70+rand(17),135+rand(16); @@ -59,11 +58,14 @@ Lquote4: npctalk "I am the dark angel of eAthena.. withen weeks of my arrival, almost everybody was gone or dead.. fear me..."; setnpctimer 0; break; +OnInit: + initnpctimer; + break; } // MC Cameri =========================================================>\\ morocc.gat,160,97,4 script MC Cameri 706,{ - npcspeed 150; + npcspeed 50; mes "[MC Cameri]"; mes "I'm the @command guy from oA..."; mes "^FF00FFReal Name^000000: Can't tell you my name"; @@ -76,7 +78,6 @@ morocc.gat,160,97,4 script MC Cameri 706,{ next; mes "[MC Cameri]"; mes "I'm a senior student, programmer, body builder(yes, I lift weights), etc."; - initnpctimer; close; OnTimer15000: npcwalkto 154+rand(17),87+rand(16); @@ -139,17 +140,19 @@ Lquote9: Lquote10: setnpctimer 0; break; +OnInit: + initnpctimer; + break; } // Davidsiaw =========================================================>\\ payon.gat,182,104,4 script Davidsiaw 1002,{ - npcspeed 150; + npcspeed 50; mes "[Davidsiaw]"; mes "omghi"; - initnpctimer; close; - OnTimer15000: +OnTimer15000: npcwalkto 176+rand(17),94+rand(16); setnpctimer 0; @@ -190,4 +193,7 @@ Lquote5: Lquote6: setnpctimer 0; break; -}
\ No newline at end of file +OnInit: + initnpctimer; + break; +} |