Jump to content

SlowMo Script Bad Argument At setGameSpeed


Recommended Posts

Bad Argument at Line 5 @ setGameSpeed

function maxpayne(thePlayer, command) 
    if getGameSpeed == 1 then 
    setGameSpeed(thePlayer, 0.5) 
    outputChatBox("Max Payne Mode On", thePlayer) 
    else 
    setGameSpeed(thePlayer, 1) 
    outputChatBox("Max Payne Mode Off", thePlayer) 
    end 
end 
addCommandHandler("maxpayne", maxpayne) 

Link to comment
function maxpayne(thePlayer, command) 
    if getGameSpeed() == 1 then 
    setGameSpeed(0.5) 
    outputChatBox("Max Payne Mode On", thePlayer) 
    else 
    setGameSpeed(1) 
    outputChatBox("Max Payne Mode Off", thePlayer) 
    end 
end 
addCommandHandler("maxpayne", maxpayne) 

Link to comment
function maxpayne(thePlayer, command) 
    if getGameSpeed() == 1 then 
    setGameSpeed(0.5) 
    outputChatBox("Max Payne Mode On", thePlayer) 
    else 
    setGameSpeed(1) 
    outputChatBox("Max Payne Mode Off", thePlayer) 
    end 
end 
addCommandHandler("maxpayne", maxpayne) 

Mate that enables it for everyone

Link to comment

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...