Jump to content

Noob Kicker Script Malformed Number Error


Recommended Posts

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 by Guest
Link to comment

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

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...