ManimiFire
Meow Motherfuckers.
Guys, how to do that lua will effect ONLY in specific map?
For example, only if sonic is at GREENFLOWER ACT 1, so this lua will activate:
Can someone help me with this?
For example, only if sonic is at GREENFLOWER ACT 1, so this lua will activate:
Code:
addHook("ThinkFrame", do
for player in players.iterate
if player.mo and player.mo.skin == "sonic"
and (player.speed > 30*FRACUNIT)
player.pflags = PF_JUMPED
player.charflags = SF_RUNONWATER
P_SpawnGhostMobj(player.mo)
end
end
end)
Can someone help me with this?