View Single Post
DJ Tsunami
DJ Post Spammer
Join Date: Feb 2008
Location: The Netherlands
Old 09-29-2019 , 10:09   Re: [Help] SourceBans++ compiling error
Reply With Quote #14

You're getting these errors because you're using variables that don't exist. Like on line 1193 and 1194:
PHP Code:
        ConsoleInfoPrint(clientadminreasontimeauthip);
        
KickClient(client"Banned by %s, \nAdmin SteamID: %s\nComplains at %s, \nReason: %s, \nLength: %s, \nSteamid:%s, \nIp:%s"adminadminAuthWebsiteAddressreasontimeauthip); 
You need to read auth, ip and adminAuth from the datapack first.

Also admin and time are integers, but you're passing them as strings to ConsoleInfoPrint and KickClient.
__________________
Advertisements | REST in Pawn - HTTP client for JSON REST APIs
Please do not PM me with questions. Post in the plugin thread.

Last edited by DJ Tsunami; 09-29-2019 at 10:11.
DJ Tsunami is offline