- Initiateur de la discussion
anthony05600
Geek suprême
- Messages
- 108
- Score réaction
- 120
- Points
- 120
Bonjour existe il un scripts payant ou gratuit n'importe qui peux empêcher que les joueurs fasse crash le serveur svp ??
Bah alors là je sais pas regarde il devrais y en avoir d'autreanthony05600 à dit:Si tu parle de ca https://www.gmodstore.com/scripts/view/2779/apg-anti-prop-griefing-solution-anti-lag-crash je l'ai deja et les gens arrive quand meme à faire crash
SNTE a fait un patch temporaire en attendant une maj du jeuanthony05600 à dit:d'accord du coup avec ce que tu ma donner ca le bloque aussi ?
local numberProps = 10 -- Combien de props la personne peux spawn par seconde avant de se faire gicler local timeToJail = 700 local messageToDisplay = "WOW WOW WOW DU CALME !" local varToSpam = {} local function checkSpam(ply) varToSpam[ply] = ( varToSpam[ply] or 0 ) + 1 timer.Simple(1, function() varToSpam[ply] = varToSpam[ply] - 1 end) if varToSpam[ply] > numberProps then RunConsoleCommand("ulx","jail",ply:Nick(),timeToJail) ply:PrintMessage(HUD_PRINTCENTER,messageToDisplay) timer.Create("calmeTonSpamProps",5,math.floor(timeToJail/5)-1,function() ply:PrintMessage(HUD_PRINTCENTER,messageToDisplay) end) end end hook.Add("PlayerDisconnected","Le_spam,_c'est_mal",function(ply) if varToSpam[ply] then varToSpam[ply] = nil end end) hook.Add("PlayerSpawnVehicle","Le_spam,_c'est_mal", checkSpam) hook.Add("PlayerSpawnRagdoll","Le_spam,_c'est_mal", checkSpam) hook.Add("PlayerSpawnProp","Le_spam,_c'est_mal", checkSpam) hook.Add("PlayerSpawnObject","Le_spam,_c'est_mal", checkSpam) hook.Add("PlayerSpawnEffect","Le_spam,_c'est_mal", checkSpam)