Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local function memFusions()
- --footContact var.
- footContact = (not inSlopeNow and not inGroundNow and not inStandNPC)
- --bannedPowerUps var.
- usingBannedPowerUps = (currentPowerUp == 4 or currentPowerUp == 5)
- --isInSomething var.
- isInSomething = (isInVine or isInMount or isInWater or isInRainbowShell)
- --isDoingSomething var.
- isDoingSomething = (isSpinning and timer <= timerLimit)
- --isSomePlayer var.
- isDoingSomething = ((pressedAltJump and not unholdingAltJump and isSpinning) or spriteHeld >= 1 or (characterId == 3 or characterId >= 5))
- end
- local function doingBannedStuff()
- isDoingBannedStuff = (footContact or usingBannedPowerUps or isInSomething or isDoingSomething)
- end
- local function timeReload()
- if not isDoingBannedStuff then
- timer = timer + 1;
- else
- timer = 0
- end
- isDoingBannedStuff = (timer >= timerLimit)
- allowTwirls = (timer >= timerLimit)
- end
Advertisement
Add Comment
Please, Sign In to add comment