micheal1230 Posted May 19, 2012 Share Posted May 19, 2012 I get A Malformed Number Error local noob = getPlayerIP(source) function noobkicker(source) if noob == 94.18.22.209 then kickPlayer(source,"You Have Been Kicked By Harry's Noob Kicker.") end Link to comment
Wei Posted May 19, 2012 Share Posted May 19, 2012 local noob = getPlayerIP(source) function noobkicker() if noob == "94.18.22.209" then kickPlayer(source,"You Have Been Kicked By Harry's Noob Kicker.") end Link to comment
Genius Posted May 19, 2012 Share Posted May 19, 2012 (edited) Try this local noob = getPlayerIP(source) function noobkicker() if (noob == "94.18.22.209") then kickPlayer(source,"You Have Been Kicked By Harry's Noob Kicker.") end end addEventHandler ( "onPlayerJoin", getRootElement(), noobkicker ) Edited May 19, 2012 by Guest Link to comment
Castillo Posted May 19, 2012 Share Posted May 19, 2012 Because that makes totally no sense. function noobkicker ( ) local IP = getPlayerIP ( source ) -- Get the IP of the player that just joined. if ( IP == "94.18.22.209" ) then -- If the IP matches. kickPlayer ( source, "You Have Been Kicked By Harry's Noob Kicker." ) -- Kick the player. end -- End the if check. end -- End the function. addEventHandler ( "onPlayerJoin", root, noobkicker ) -- Attach the "onPlayerJoin" event to our function. And remember that you must add the resource to the "ACL.xml" to give permission to getPlayerIP function. Link to comment
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now