I am designing a game which is supposed to accumilate points as the user
clicks on squares and when they lose points bad luck sound for every 50 and
success for mutiples of 100 .
I have tried to edit the script i have but i think i am making matters worse
.. Hope anyone can help my date is tomorrow
Best to you
----------------------------------------------------------------------------
-------------------------------------------------------------------
property points, pointsForThisSprite



on mouseUp me


thisScore=pointsForThisSprite

condition=FALSE

thisScore=pointsForThisSprite*-1

end if

on returnscore oldpoints, newpoints
set newscore=oldpoints + newpoints

return newscore



if condition=TRUE then

if (points*1.0) MOD 100 then
puppetSound(1,member("Soundgood"))

on scorepoint
global gpoints
set gpoints=gpoints + 100
put "Good Shot!" into field "response"
end




end if

else

if (points=50) then

puppetSound(1,member("Soundbad"))

end if

end if


end