This commit is contained in:
Paul 2001-07-13 22:10:16 +00:00
parent da36f846ae
commit 131369d2f4
7 changed files with 120 additions and 87 deletions

View file

@ -6,12 +6,19 @@
#include data/scripts/defs/trans.scr
_setText(CHAR_PATRICK,STR__INGAME__CH3__L3__PATRICK1);
_setResponseOptions(QUESTION_OK);
do
if(_isHoldingWeapon(WEAPON_BUBBLEWAND)==TRUE)
{
pause;
if(_getAmmoCount(AMMO_BUBBLEWAND)<10)
{
_setText(CHAR_PATRICK,STR__INGAME__CH3__L3__PATRICK1);
_setResponseOptions(QUESTION_OK);
do
{
pause;
}
while(_getResponse()==ANSWER_NONE);
_setAmmoCount(AMMO_BUBBLEWAND,10);
}
}
while(_getResponse()==ANSWER_NONE);
stop;