So i have a winning icon script as well as a cinematics event in my mod, but the cinematics don't hide winning icons, anyone knows the solution? Images shown below
Cinematic event:
start = 0
finish = 0
function onCreate()
--THE TOP BAR
makeLuaSprite('UpperBar', 'empty', 0, -120)
makeGraphic('UpperBar', 1280, 120, '000000')
setObjectCamera('UpperBar', 'hud')
addLuaSprite('UpperBar', false)
--THE BOTTOM BAR
makeLuaSprite('LowerBar', 'empty', 0, 720)
makeGraphic('LowerBar', 1280, 120, '000000')
setObjectCamera('LowerBar', 'hud')
addLuaSprite('LowerBar', false)
end
function onUpdate()
if start == 1 then
doTweenY('Cinematics1', 'UpperBar', 0, 0.5, 'Linear')
doTweenY('Cinematics2', 'LowerBar', 600, 0.5, 'Linear')
noteTweenY('NOTEMOVE1', 0, 120, 0.5, 'Linear')
noteTweenY('NOTEMOVE2', 1, 120, 0.5, 'Linear')
noteTweenY('NOTEMOVE3', 2, 120, 0.5, 'Linear')
noteTweenY('NOTEMOVE4', 3, 120, 0.5, 'Linear')
noteTweenY('NOTEMOVE5', 4, 120, 0.5, 'Linear')
noteTweenY('NOTEMOVE6', 5, 120, 0.5, 'Linear')
noteTweenY('NOTEMOVE7', 6, 120, 0.5, 'Linear')
noteTweenY('NOTEMOVE8', 7, 120, 0.5, 'Linear')
doTweenAlpha('AlphaTween1', 'healthBarBG', 0, 0.25)
doTweenAlpha('AlphaTween2', 'healthBar', 0, 0.25)
doTweenAlpha('AlphaTween3', 'scoreTxt', 0, 0.25)
doTweenAlpha('AlphaTween4', 'iconP1', 0, 0.25)
doTweenAlpha('AlphaTween5', 'iconP2', 0, 0.25)
doTweenAlpha('AlphaTween7', 'ratingIcon', 0, 0.25)
doTweenAlpha('AlphaTween8', 'missesIcon', 0, 0.25)
doTweenAlpha('AlphaTween9', 'scoreIcon', 0, 0.25)
doTweenAlpha('AlphaTween10', 'timeBar', 0, 0.25)
doTweenAlpha('AlphaTween11', 'timeBarBG', 0, 0.25)
doTweenAlpha('AlphaTween12', 'timeTxt', 0, 0.25)
doTweenAlpha('AlphaTween13', 'rating', 0, 0.25)
doTweenAlpha('AlphaTween14', 'misses', 0, 0.25)
doTweenAlpha('AlphaTween15', 'score', 0, 0.25)
doTweenAlpha('AlphaTween16', 'songIcon', 0, 0.25)
doTweenAlpha('AlphaTween17', 'song', 0, 0.25)
end
if downscroll and start == 1 then
doTweenY('Cinematics1', 'UpperBar', 0, 0.5, 'Linear')
doTweenY('Cinematics2', 'LowerBar', 600, 0.5, 'Linear')
noteTweenY('NOTEMOVE1', 0, 480, 0.5, 'Linear')
noteTweenY('NOTEMOVE2', 1, 480, 0.5, 'Linear')
noteTweenY('NOTEMOVE3', 2, 480, 0.5, 'Linear')
noteTweenY('NOTEMOVE4', 3, 480, 0.5, 'Linear')
noteTweenY('NOTEMOVE5', 4, 480, 0.5, 'Linear')
noteTweenY('NOTEMOVE6', 5, 480, 0.5, 'Linear')
noteTweenY('NOTEMOVE7', 6, 480, 0.5, 'Linear')
noteTweenY('NOTEMOVE8', 7, 480, 0.5, 'Linear')
doTweenAlpha('AlphaTween1', 'healthBarBG', 0, 0.25)
doTweenAlpha('AlphaTween2', 'healthBar', 0, 0.25)
doTweenAlpha('AlphaTween3', 'scoreTxt', 0, 0.25)
doTweenAlpha('AlphaTween4', 'iconP1', 0, 0.25)
doTweenAlpha('AlphaTween5', 'iconP2', 0, 0.25)
doTweenAlpha('AlphaTween7', 'ratingIcon', 0, 0.25)
doTweenAlpha('AlphaTween8', 'missesIcon', 0, 0.25)
doTweenAlpha('AlphaTween9', 'scoreIcon', 0, 0.25)
doTweenAlpha('AlphaTween10', 'timeBar', 0, 0.25)
doTweenAlpha('AlphaTween11', 'timeBarBG', 0, 0.25)
doTweenAlpha('AlphaTween12', 'timeTxt', 0, 0.25)
doTweenAlpha('AlphaTween13', 'rating', 0, 0.25)
doTweenAlpha('AlphaTween14', 'misses', 0, 0.25)
doTweenAlpha('AlphaTween15', 'score', 0, 0.25)
doTweenAlpha('AlphaTween16', 'songIcon', 0, 0.25)
doTweenAlpha('AlphaTween17', 'song', 0, 0.25)
end
if finish == 2 then
doTweenY('Cinematics1', 'UpperBar', -120, 0.5, 'Linear')
doTweenY('Cinematics2', 'LowerBar', 720, 0.5, 'Linear')
noteTweenY('NOTEMOVE1', 0, 50, 0.5, 'Linear')
noteTweenY('NOTEMOVE2', 1, 50, 0.5, 'Linear')
noteTweenY('NOTEMOVE3', 2, 50, 0.5, 'Linear')
noteTweenY('NOTEMOVE4', 3, 50, 0.5, 'Linear')
noteTweenY('NOTEMOVE5', 4, 50, 0.5, 'Linear')
noteTweenY('NOTEMOVE6', 5, 50, 0.5, 'Linear')
noteTweenY('NOTEMOVE7', 6, 50, 0.5, 'Linear')
noteTweenY('NOTEMOVE8', 7, 50, 0.5, 'Linear')
doTweenAlpha('AlphaTween1', 'healthBarBG', 1, 0.25)
doTweenAlpha('AlphaTween2', 'healthBar', 1, 0.25)
doTweenAlpha('AlphaTween3', 'scoreTxt', 1, 0.25)
doTweenAlpha('AlphaTween4', 'iconP1', 1, 0.25)
doTweenAlpha('AlphaTween5', 'iconP2', 1, 0.25)
doTweenAlpha('AlphaTween8', 'ratingIcon', 1, 0.25)
doTweenAlpha('AlphaTween9', 'missesIcon', 1, 0.25)
doTweenAlpha('AlphaTween10', 'scoreIcon', 1, 0.25)
doTweenAlpha('AlphaTween11', 'timeBar', 1, 0.25)
doTweenAlpha('AlphaTween12', 'timeBarBG', 1, 0.25)
doTweenAlpha('AlphaTween13', 'timeTxt', 1, 0.25)
doTweenAlpha('AlphaTween14', 'rating', 1, 0.25)
doTweenAlpha('AlphaTween15', 'misses', 1, 0.25)
doTweenAlpha('AlphaTween16', 'score', 1, 0.25)
doTweenAlpha('AlphaTween17', 'songIcon', 1, 0.25)
doTweenAlpha('AlphaTween18', 'song', 1, 0.25)
end
if downscroll and finish == 2 then
doTweenY('Cinematics1', 'UpperBar', -120, 0.5, 'Linear')
doTweenY('Cinematics2', 'LowerBar', 720, 0.5, 'Linear')
noteTweenY('NOTEMOVE1', 0, 570, 0.5, 'Linear')
noteTweenY('NOTEMOVE2', 1, 570, 0.5, 'Linear')
noteTweenY('NOTEMOVE3', 2, 570, 0.5, 'Linear')
noteTweenY('NOTEMOVE4', 3, 570, 0.5, 'Linear')
noteTweenY('NOTEMOVE5', 4, 570, 0.5, 'Linear')
noteTweenY('NOTEMOVE6', 5, 570, 0.5, 'Linear')
noteTweenY('NOTEMOVE7', 6, 570, 0.5, 'Linear')
noteTweenY('NOTEMOVE8', 7, 570, 0.5, 'Linear')
doTweenAlpha('AlphaTween1', 'healthBarBG', 1, 0.25)
doTweenAlpha('AlphaTween2', 'healthBar', 1, 0.25)
doTweenAlpha('AlphaTween3', 'scoreTxt', 1, 0.25)
doTweenAlpha('AlphaTween4', 'iconP1', 1, 0.25)
doTweenAlpha('AlphaTween5', 'iconP2', 1, 0.25)
doTweenAlpha('AlphaTween8', 'ratingIcon', 1, 0.25)
doTweenAlpha('AlphaTween9', 'missesIcon', 1, 0.25)
doTweenAlpha('AlphaTween10', 'scoreIcon', 1, 0.25)
doTweenAlpha('AlphaTween11', 'timeBar', 1, 0.25)
doTweenAlpha('AlphaTween12', 'timeBarBG', 1, 0.25)
doTweenAlpha('AlphaTween13', 'timeTxt', 1, 0.25)
doTweenAlpha('AlphaTween14', 'rating', 1, 0.25)
doTweenAlpha('AlphaTween15', 'misses', 1, 0.25)
doTweenAlpha('AlphaTween16', 'score', 1, 0.25)
doTweenAlpha('AlphaTween17', 'songIcon', 1, 0.25)
doTweenAlpha('AlphaTween18', 'song', 1, 0.25)
end
end
function onEvent(name,value1,value2)
if name == 'Cinematics' then
start = tonumber(value1)
finish = tonumber(value2)
end
end
Winning icon:
function onCreate()
makeLuaSprite('winningIcon', 'icons/win-'..getProperty('boyfriend.healthicon'), getProperty('iconP1.x'), getProperty('iconP1.y'))
setObjectCamera('winningIcon', 'hud')
addLuaSprite('winningIcon', true)
setObjectOrder('winningIcon', getObjectOrder('iconP1') + 1)
setProperty('winningIcon.flipX', true)
setProperty('winningIcon.visible', false)
bf = getProperty('boyfriend.healthicon')
makeLuaSprite('winningIconDad', 'icons/win-'..getProperty('boyfriend.healthicon'), getProperty('iconP2.x'), getProperty('iconP2.y'))
setObjectCamera('winningIconDad', 'hud')
addLuaSprite('winningIconDad', true)
setObjectOrder('winningIconDad', getObjectOrder('iconP2') + 1)
setProperty('winningIconDad.flipX', false)
setProperty('winningIconDad.visible', false)
dad = getProperty('boyfriend.healthicon')
end
function onUpdate(elapsed)
bf = getProperty('iconP1.animation.curAnim.name')
--debugPrint(getProperty('iconP1.animation.curAnim.name')) --debug
--WHITELIST add more characters if you wish
--if bf == 'bf' or bf =='bf' or bf =='bf' or bf =='bf' --WHITELIST - comment '--' to disable, uncomment to enable
--BLACKLIST add more characters if you wish
--if not bf =='bf' or bf =='bf' or bf =='bf' or bf =='bf' --BLACKLIST - comment '--' to disable, uncomment to enable
--then --uncomment if using WHITELIST or BLACKLIST
makeLuaSprite('winningIcon', 'icons/win-'..getProperty('iconP1.animation.curAnim.name'), getProperty('iconP1.x'), getProperty('iconP1.y'))
setObjectCamera('winningIcon', 'hud')
addLuaSprite('winningIcon', true)
setObjectOrder('winningIcon', getObjectOrder('iconP1') + 1)
setProperty('winningIcon.flipX', true)
setProperty('winningIcon.visible', false)
setProperty('winningIcon.x', getProperty('iconP1.x'))
setProperty('winningIcon.angle', getProperty('iconP1.angle'))
setProperty('winningIcon.y', getProperty('iconP1.y'))
setProperty('winningIcon.scale.x', getProperty('iconP1.scale.x'))
setProperty('winningIcon.scale.y', getProperty('iconP1.scale.y'))
if getProperty('health') >= 1.625 then
setProperty('iconP1.visible', false)
setProperty('winningIcon.visible', true)
else
setProperty('iconP1.visible', true)
setProperty('winningIcon.visible', false)
end
--end --uncomment if using WHITELIST or BLACKLIST
dad = getProperty('dad.healthicon')
--WHITELIST add more characters if you wish
--if dad == 'dad' or dad =='dad' or dad =='dad' or dad =='dad' --WHITELIST - comment '--' to disable, uncomment to enable
--BLACKLIST add more characters if you wish
--if not dad =='dad' or dad =='dad' or dad =='dad' or dad =='dad' --BLACKLIST - comment '--' to disable, uncomment to enable
--then --uncomment if using WHITELIST or BLACKLIST
makeLuaSprite('winningIconDad', 'icons/win-'..getProperty('iconP2.animation.curAnim.name'), getProperty('iconP2.x'), getProperty('iconP2.y'))
setObjectCamera('winningIconDad', 'hud')
addLuaSprite('winningIconDad', true)
setObjectOrder('winningIconDad', getObjectOrder('iconP2') + 1)
setProperty('winningIconDad.flipX', false)
setProperty('winningIconDad.visible', false)
setProperty('winningIconDad.x', getProperty('iconP2.x'))
setProperty('winningIconDad.angle', getProperty('iconP2.angle'))
setProperty('winningIconDad.y', getProperty('iconP2.y'))
setProperty('winningIconDad.scale.x', getProperty('iconP2.scale.x'))
setProperty('winningIconDad.scale.y', getProperty('iconP2.scale.y'))
if getProperty('health') <= .375 then
setProperty('iconP2.visible', false)
setProperty('winningIconDad.visible', true)
else
setProperty('iconP2.visible', true)
setProperty('winningIconDad.visible', false)
end
--end --uncomment if using WHITELIST or BLACKLIST
end
Hello gentleman! girlsdelhi.in is the best Delhi escort service website. We provide a wide range of escort services like:- Russian escort, Call Girl In Delhi, Independent escort, Model escort, Celebrity escort, Air-Hostess escort, and more.
This is the computerized period, and that implies the vast majority of the work should possible without meet eye to eye. We generally attempt to assist our clients with getting the best administrations with practically no entanglements. We have all around devoted client support that will direct you through the whole interaction from begin to end, with next to no fight.
South Ex Escorts Service Russian Escorts in South Ex South Ex Escorts Agency North South Ex Escorts South South Ex Escorts Independent South Ex Escorts South Ex Escorts Services Russian Escorts South Ex Escorts Service in South Ex South Ex Russian Escorts South Ex Female Escorts South Ex Escorts Escorts In South Ex Escorts South Ex South Ex Escorts Service South Ex Escort Escort In South Ex Escort South Ex South Ex Escort Service Female Escorts In South Ex High Profile Escorts In South Ex South Ex Escort Girls South Ex Escort Agency South Ex Escorts Escorts In South Ex South Ex Call Girls Call Girls In South Ex South Ex Escorts Service South Ex Escort Escort In South Ex South Ex Call Girl Call Girl In South Ex South Ex Escort Service South Ex Escorts Escorts In South Ex South Ex Call Girls Call Girls In South Ex South Ex Escorts Service South Ex Escort Escort In South Ex South Ex Call Girl Call Girl In South Ex South Ex Escort Service South Ex Escorts Escorts In South Ex South Ex Call Girls Call Girls In South Ex South Ex Escorts Service South Ex Escort South Ex Escorts Services Russian Escorts South Ex Escorts Service in South Ex South Ex Russian Escorts South Ex Female Escorts South Ex Escort South Ex Escort Service Escort Service in South Ex Escort in South Ex Escort Service South Ex Russian Escort in South Ex Escort South Ex Escort Services in South Ex South Ex Escort Services Russian Escort South Ex South Ex Escort Girls
To offer you the most ideal selection of pictures, and by just seeing them, you need to go with any of our Vaishali Escort. However, finding children for sex isn't basic without fail. Once in a while, disregarding the way that we are, we view it as a bother. We are humiliated. Then again, we don't save a couple of moments for it.
We guarantee complete satisfaction in every aspect of your encounter with us – from discreet communication methods to secure payment plans. Call Girl Service in Delhi Consequently, do not linger any further – secure yourself a date today with one of our charming companions. Uncover personally why they are recognized as some of the best in Delhi!
We issue a regular newsletter to interested clients, detailing any new girls and Escorts in Delhi developments in our Delhi escort to ensure that you always know what is going on.
We as Call Girls in Bhopal are way ahead of the competition. You may also like our exotic services. Our Call Girl services have been just not known for beauty and Call Girls In Bhopal intelligence of our girls, it's their commitment towards complete satisfaction of the client which makes them stand out of the competition.
We are the best Delhi Escorts service provider. Escorts Delhi We provide young College Girl Escorts, independent escorts, housewife escorts, Model Escorts Delhi, and Call girls at very reasonable rates.
Mandoli Call Girls are quite sensual, and you may cuddle up with them on your lap. If you’re up for some other kind of experiment, you can have it your way with our sweetest and still the hottest Mandoli Call Girls. Only you and I will make me incredibly happy. It’s important to keep in mind that all the females in Mandoli are just like oneself women looking to have a great time if you take it easy and trust us, they’ll take you somewhere quiet where you and your lover may gaze at the stars in pleasure.
You can attain them in all flavor in addition to possibilities like a teenager youthful Escorts or middle-elderly matured expert Moti Bagh Escort Service models, Just draw close these good-looking Moti Bagh Escorts today with most bargain. You will obtain the best pride while you’re in mattress with them.
since the winning icon is a separate image entirely you gotta make another alpha tween for each of the winning icons
just copy and paste the tweens for the normal icons and then change iconP1/P2 to winningIcon or winningIconDad
try adding the win icon before the cinematicbar