Fixed a few donpcevent's that didn't include the NPC's hidden display name. (bugreport:2407)

git-svn-id: https://svn.code.sf.net/p/rathena/svn/trunk@13350 54d463be-8e91-2dee-dedb-b68131a5f0ec
This commit is contained in:
Paradox924X
2008-11-04 08:20:59 +00:00
parent 7a308d932b
commit d6552233dc
2 changed files with 6 additions and 4 deletions

View File

@@ -1,6 +1,7 @@
Date Added
Date Added
======
2008/11/04
* Fixed a few donpcevent's that didn't include the NPC's hidden display name. (bugreport:2407) [Paradox924X]
* Added a bunch of missing "end;"s for Broken Sword Quest that caused NPC to execute unwanted labels. (bugreport:2404) [Paradox924X]
2008/10/28
* Fixed location error in Blacksmith quest. NPC said Alberta, NPC location in Einbech (bugreport:2401) [Jman]

View File

@@ -16,6 +16,7 @@
//= Added Lost Knife, updated dialog for Broken Sword
//= dungeon quest mechanics aportion is still the same.
//= 1.2a Bugfixes (bugreport:2404) [Paradox924X]
//= 1.2b More Bugfixes (bugreport:2407) [Paradox924X]
//============================================================
// Broken Sword
@@ -790,7 +791,7 @@ gon_dun01,148,156,0 script start01#gnbs -1,{
OnInit:
sleep 10000;
OnCommandOn:
donpcevent "trace1-"+rand(1,5)+"::OnCommandOn";
donpcevent "trace1-"+rand(1,5)+"#gnbs::OnCommandOn";
end;
}
@@ -1138,7 +1139,7 @@ gon_dun02,1,1,0 script start02#gnbs -1,{
OnInit:
sleep 10000;
OnCommandOn:
donpcevent "trace2-"+rand(1,6)+"::OnCommandOn";
donpcevent "trace2-"+rand(1,6)+"#gnbs::OnCommandOn";
end;
}
@@ -1554,7 +1555,7 @@ gon_dun03,1,1,0 script start03#gnbs -1,{
OnInit:
sleep 10000;
OnCommandOn:
donpcevent "trace3-"+rand(1,7)+"::OnCommandOn";
donpcevent "trace3-"+rand(1,7)+"#gnbs::OnCommandOn";
end;
}