X-Git-Url: https://git.jsancho.org/?a=blobdiff_plain;f=Source%2FWeapons.cpp;h=ff41d8b26c5799298393bbc9bdc00141c34d1b5b;hb=c84fb27b1b242249929b90c2b50f2c92c6a0556d;hp=128e7cebf235c4188a19bc5e169c95f349270778;hpb=5e75f94daefef68f2d0cfd631116f960d222dab0;p=lugaru.git diff --git a/Source/Weapons.cpp b/Source/Weapons.cpp index 128e7ce..ff41d8b 100644 --- a/Source/Weapons.cpp +++ b/Source/Weapons.cpp @@ -52,10 +52,6 @@ extern float viewdistance; extern float blackout; extern int difficulty; extern bool freeze; -extern int bonus; -extern float bonusvalue; -extern float bonustotal; -extern float bonustime; extern int tutoriallevel; extern int numthrowkill; extern "C" void PlaySoundEx(int channel, OPENAL_SAMPLE *sptr, OPENAL_DSPUNIT *dsp, signed char startpaused); @@ -279,16 +275,10 @@ void Weapons::DoStuff(){ OPENAL_SetVolume(channels[fleshstabsound], 128); OPENAL_SetPaused(channels[fleshstabsound], false); - if(animation[player[0].targetanimation].height==highheight){ - bonus=ninja; - bonustime=0; - bonusvalue=60; - } - else{ - bonus=Bullseyebonus; - bonustime=0; - bonusvalue=30; - } + if(animation[player[0].targetanimation].height==highheight) + award_bonus(0, ninja); + else + award_bonus(0, Bullseyebonus); } } else missed[i]=1;