this script is not working
addHook(playerthink,function(player)
if player.mo.skin == "movieknux"
and player.mo.state == S_PLAY_GLIDE then
P_InstaThrust(player.mo, player.mo.angle, skins[player.mo.skin].normalspeed+20 *FRACUNIT)
end
end)
like this?
addHook(playerthink,function(player)
and player.mo.state == S_PLAY_GLIDE then
if player.mo.skin == "movieknux"
P_InstaThrust(player.mo, player.mo.angle, skins[player.mo.skin].normalspeed+20 *FRACUNIT)
end
end)
or like this
addHook(playerthink, function(player)
if player.mo.state == S_PLAY_GLIDE then
if player.mo.skin == "movieknux" then
P_InstaThrust(player.mo, player.mo.angle, skins[player.mo.skin].normalspeed + 20 * FRACUNIT)
end
end)
like this?
addHook(playerthink,function(player)
and player.mo.state == S_PLAY_GLIDE then
if player.mo.skin == "movieknux"
P_InstaThrust(player.mo, player.mo.angle, skins[player.mo.skin].normalspeed+20 *FRACUNIT)
end
end)
Post automatically merged:
show me how the full script looks like
Post automatically merged:
or like this
addHook(playerthink, function(player)
if player.mo.state == S_PLAY_GLIDE then
if player.mo.skin == "movieknux" then
P_InstaThrust(player.mo, player.mo.angle, skins[player.mo.skin].normalspeed + 20 * FRACUNIT)
end
end)
addHook(playerthink,function(player)
if player.mo.skin == "movieknux" and player.mo.state == S_PLAY_GLIDE then
P_InstaThrust(player.mo, player.mo.angle, skins[player.mo.skin].normalspeed+20 *FRACUNIT)
end
end)
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.