Quote from: shakib000 on May 21, 2024, 10:26 AMAnd my host blocked in opttklink cant host sserver why you lie say shakib host
![]()
Quote from: Nihongo^ on Jul 30, 2023, 02:47 PMHy, every time I lose my players, whenever I restart my server from the control panel.Bro,I think is easy, just u need split ur script for example: main.nut & main2.nut ,and if u want to reload ur server just let the server dofile("main2.nut"); in fact our problem is that something can't do twice ,if do ,them will make error,so put that script in main.nut , just onServer first start to load that and put other thing in main2.nut ,use dofile we can reload that main2.nut script.
So I found this script in the forum, thinking it would help me to reload the script without losing players
But it gives me an errorcase "reload":
Fu error The index Disconnect SQL: does not exist
if (highestRole.GetLevel() < 2) sendMessage(channels["staffchat"], "You do not have permission to use this command.");
else
{
::onScriptUnload();
::ReloadScripts()
}
Quote from: [R3V]Kelvin on May 11, 2025, 03:23 AMgracias broQuote from: Luis_Labarca on May 10, 2025, 03:02 AMbefore usedHow come 'it doesn't work anymore'? By the way, while Player.Bleeding does expect and return a boolean, Player.DrunkVisuals and Player.DrunkHandling do not - they expect an integer. For instance:player.Bleeding = true ;
but it doesn't work for me anymore
player.DrunkVisuals = true ;
player.DrunkHandling = true ;
and then add the plugin to the server.cfg foldersqlatestfeatures04rel32
player.Bleeding = true; // true/false (your code is correct for this one)
También hablo español si deseas expresarte mejor.
player.DrunkVisuals = 255; // 0-255
player.DrunkHandling = 8; // 0-4294967295
Quote from: Luis_Labarca on May 10, 2025, 03:02 AMbefore usedHow come 'it doesn't work anymore'? By the way, while Player.Bleeding does expect and return a boolean, Player.DrunkVisuals and Player.DrunkHandling do not - they expect an integer. For instance:player.Bleeding = true ;
but it doesn't work for me anymore
player.DrunkVisuals = true ;
player.DrunkHandling = true ;
and then add the plugin to the server.cfg foldersqlatestfeatures04rel32
player.Bleeding = true; // true/false (your code is correct for this one)
player.DrunkVisuals = 255; // 0-255
player.DrunkHandling = 8; // 0-4294967295
También hablo español si deseas expresarte mejor.