* Fixed a minor bug in Hugel Bingo game system.

git-svn-id: https://svn.code.sf.net/p/rathena/svn/trunk@10828 54d463be-8e91-2dee-dedb-b68131a5f0ec
This commit is contained in:
SinSloth 2007-06-29 10:17:31 +00:00
parent f38481bdc5
commit 0ee9f0cf41
2 changed files with 5 additions and 3 deletions

View File

@ -1,6 +1,7 @@
Date Added Date Added
====== ======
2007/06/29 2007/06/29
* Fixed a minor bug in Hugel Bingo game system. [SinSloth]
* Commented out crashing soundeffectall function calls [ultramage] * Commented out crashing soundeffectall function calls [ultramage]
2007/06/28 2007/06/28
* Rev. 10824 Fixed a couple bugs in the Kiel Hyre quest. [L0ne_W0lf] * Rev. 10824 Fixed a couple bugs in the Kiel Hyre quest. [L0ne_W0lf]

View File

@ -3,7 +3,7 @@
//===== By: ================================================== //===== By: ==================================================
//= SinSloth //= SinSloth
//===== Current Version: ===================================== //===== Current Version: =====================================
//= 1.0 //= 1.4
//===== Compatible With: ===================================== //===== Compatible With: =====================================
//= Any eAthena Version //= Any eAthena Version
//===== Description: ========================================= //===== Description: =========================================
@ -14,6 +14,7 @@
//= 1.2 - Added some Bingo Staff NPCs. [SinSloth] //= 1.2 - Added some Bingo Staff NPCs. [SinSloth]
//= 1.3 - Fixed a bug where an AFK-player wasn't warped out of the game, //= 1.3 - Fixed a bug where an AFK-player wasn't warped out of the game,
//= preventing players from launching another. [SinSloth] //= preventing players from launching another. [SinSloth]
//= 1.4 - Fixed a minor bug added in the last revision. [SinSloth]
//============================================================ //============================================================
que_bingo,48,84,5 script Bingo Waiting Room 124,{ que_bingo,48,84,5 script Bingo Waiting Room 124,{
@ -22,7 +23,7 @@ que_bingo,48,84,5 script Bingo Waiting Room 124,{
OnInit: OnInit:
set $hu_bingoa,0; set $hu_bingoa,0;
set $hu_bingob,0; set $hu_bingob,0;
waitingroom "Bingo Waiting Room - 5 People",50,"Bingo Waiting Room::OnWarp",2; waitingroom "Bingo Waiting Room - 5 People",50,"Bingo Waiting Room::OnWarp",5;
end; end;
OnWarp: OnWarp:
@ -117,7 +118,7 @@ OnStart:
end; end;
OnEnter: OnEnter:
if($hu_bingoa == 1) if($hu_bingoa == 4)
{ {
set $hu_bingoa,5; set $hu_bingoa,5;
donpcevent "start2#bingo::OnStart"; donpcevent "start2#bingo::OnStart";