- Fixed some small typos.
git-svn-id: https://svn.code.sf.net/p/rathena/svn/trunk@14382 54d463be-8e91-2dee-dedb-b68131a5f0ec
This commit is contained in:
parent
6d8d0d3b43
commit
6b106aeb56
@ -1,5 +1,4 @@
|
|||||||
//===== eAthena Script =======================================
|
//===== eAthena Script =======================================
|
||||||
//===== eAthena Script =======================================
|
|
||||||
//= Map flags that disable warp portal memory
|
//= Map flags that disable warp portal memory
|
||||||
//===== By: ==================================================
|
//===== By: ==================================================
|
||||||
//= eAthena Dev Team
|
//= eAthena Dev Team
|
||||||
|
@ -599,7 +599,7 @@ job_hunter
|
|||||||
job_knight
|
job_knight
|
||||||
job_priest
|
job_priest
|
||||||
job_wizard
|
job_wizard
|
||||||
ve_in02 // missing map
|
ve_in02
|
||||||
rachel
|
rachel
|
||||||
ra_in01
|
ra_in01
|
||||||
ra_fild01
|
ra_fild01
|
||||||
|
@ -5673,9 +5673,9 @@
|
|||||||
2022,Nidhoggr's Shadow@NPC_EARTHQUAKE,attack,653,3,10000,8000,30000,no,self,myhpltmaxrate,40,,,,,,,
|
2022,Nidhoggr's Shadow@NPC_EARTHQUAKE,attack,653,3,10000,8000,30000,no,self,myhpltmaxrate,40,,,,,,,
|
||||||
2022,Nidhoggr's Shadow@NPC_HELLJUDGEMENT,chase,662,5,10000,5000,180000,no,self,myhpltmaxrate,50,,,,,,,
|
2022,Nidhoggr's Shadow@NPC_HELLJUDGEMENT,chase,662,5,10000,5000,180000,no,self,myhpltmaxrate,50,,,,,,,
|
||||||
2022,Nidhoggr's Shadow@NPC_HELLJUDGEMENT,attack,662,5,10000,5000,180000,no,self,myhpltmaxrate,50,,,,,,,
|
2022,Nidhoggr's Shadow@NPC_HELLJUDGEMENT,attack,662,5,10000,5000,180000,no,self,myhpltmaxrate,50,,,,,,,
|
||||||
2022,Nidhoggr's Shadow@@TF_HIDING,idle,353,1,3000,500,30000,yes,self,myhpltmaxrate,50,,,,,,,
|
2022,Nidhoggr's Shadow@TF_HIDING,idle,353,1,3000,500,30000,yes,self,myhpltmaxrate,50,,,,,,,
|
||||||
2022,Nidhoggr's Shadow@@TF_HIDING,chase,353,1,3000,500,30000,yes,self,myhpltmaxrate,50,,,,,,,
|
2022,Nidhoggr's Shadow@TF_HIDING,chase,353,1,3000,500,30000,yes,self,myhpltmaxrate,50,,,,,,,
|
||||||
2022,Nidhoggr's Shadow@@TF_HIDING,attack,353,1,3000,500,30000,yes,self,myhpltmaxrate,50,,,,,,,
|
2022,Nidhoggr's Shadow@TF_HIDING,attack,353,1,3000,500,30000,yes,self,myhpltmaxrate,50,,,,,,,
|
||||||
2022,Nidhoggr's Shadow@NPC_ALLHEAL,idle,687,1,5000,120000,30000,yes,self,myhpltmaxrate,60,,,,,,,
|
2022,Nidhoggr's Shadow@NPC_ALLHEAL,idle,687,1,5000,120000,30000,yes,self,myhpltmaxrate,60,,,,,,,
|
||||||
2022,Nidhoggr's Shadow@NPC_ALLHEAL,chase,687,1,5000,120000,30000,yes,self,myhpltmaxrate,60,,,,,,,
|
2022,Nidhoggr's Shadow@NPC_ALLHEAL,chase,687,1,5000,120000,30000,yes,self,myhpltmaxrate,60,,,,,,,
|
||||||
2022,Nidhoggr's Shadow@NPC_SLOWCAST,chase,672,3,1000,3000,60000,no,self,myhpltmaxrate,70,,,,,,,
|
2022,Nidhoggr's Shadow@NPC_SLOWCAST,chase,672,3,1000,3000,60000,no,self,myhpltmaxrate,70,,,,,,,
|
||||||
|
@ -5094,14 +5094,14 @@ invoked by the RID that was active in the script that issued a 'doevent'.
|
|||||||
place,100,100,1%TAB%script%TAB%NPC%TAB%53,{
|
place,100,100,1%TAB%script%TAB%NPC%TAB%53,{
|
||||||
mes "This is what you will see when you click me";
|
mes "This is what you will see when you click me";
|
||||||
close;
|
close;
|
||||||
Label:
|
OnLabel:
|
||||||
mes "This is what you will see if the doevent is activated";
|
mes "This is what you will see if the doevent is activated";
|
||||||
close;
|
close;
|
||||||
}
|
}
|
||||||
|
|
||||||
....
|
....
|
||||||
|
|
||||||
doevent "NPC::Label";
|
doevent "NPC::OnLabel";
|
||||||
|
|
||||||
---------------------------------------
|
---------------------------------------
|
||||||
|
|
||||||
@ -5126,20 +5126,20 @@ something.
|
|||||||
place,100,100,1%TAB%script%TAB%NPC%TAB%53,{
|
place,100,100,1%TAB%script%TAB%NPC%TAB%53,{
|
||||||
mes "Hey NPC2 copy what I do";
|
mes "Hey NPC2 copy what I do";
|
||||||
close2;
|
close2;
|
||||||
set @emo, rand(1,30);
|
set .@emote, rand(1,30);
|
||||||
donpcevent "NPC2::Emo";
|
donpcevent "NPC2::OnEmote";
|
||||||
Emo:
|
OnEmote:
|
||||||
emotion @emo;
|
emotion .@emote;
|
||||||
end;
|
end;
|
||||||
}
|
}
|
||||||
|
|
||||||
place,102,100,1%TAB%script%TAB%NPC2%TAB%53,{
|
place,102,100,1%TAB%script%TAB%NPC2%TAB%53,{
|
||||||
mes "Hey NPC copy what I do";
|
mes "Hey NPC copy what I do";
|
||||||
close2;
|
close2;
|
||||||
set @emo, rand(1,30);
|
set .@emote, rand(1,30);
|
||||||
donpcevent "NPC::Emo";
|
donpcevent "NPC::OnEmote";
|
||||||
Emo:
|
OnEmote:
|
||||||
emotion @emo;
|
emotion .@emote;
|
||||||
end;
|
end;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -38,7 +38,7 @@
|
|||||||
//= 2.13 Added more unused vars to F_ClearGarbage [Lupus]
|
//= 2.13 Added more unused vars to F_ClearGarbage [Lupus]
|
||||||
//= 2.14 Added old novice variables to F_ClearGarbage. [L0ne_W0lf]
|
//= 2.14 Added old novice variables to F_ClearGarbage. [L0ne_W0lf]
|
||||||
//= 2.15 Added no unused DTS variables to F_ClearGarbage. [L0ne_W0lf]
|
//= 2.15 Added no unused DTS variables to F_ClearGarbage. [L0ne_W0lf]
|
||||||
//= 2.6 Added F_GetWeaponType, and F_GetArmorType. [L0ne_W0lf]
|
//= 2.16 Added F_GetWeaponType, and F_GetArmorType. [L0ne_W0lf]
|
||||||
//============================================================
|
//============================================================
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user