View Single Post
Dragokas
Veteran Member
Join Date: Nov 2017
Location: Ukraine on fire
Old 05-12-2022 , 13:13   Re: [ANY] Map Slots Locker
Reply With Quote #6

Whaaaat? What is your test environment?

PHP Code:
public Action CmdMapLock(int clientint args)
{
    
PrintToChatAll("MaxClients (before) = %i"MaxClients);
    
LockSlots();
    
g_bSlotsLockedForce true;
    
CPrintToChat(client"%t""slots_lock");
    
PrintToChatAll("MaxClients (after) = %i"MaxClients);
    return 
Plugin_Handled;
}

public 
Action CmdMapUnlock(int clientint args)
{
    
PrintToChatAll("MaxClients (before) = %i"MaxClients);
    
UnlockSlots();
    
g_bSlotsLockedForce false;
    
CPrintToChat(client"%t""slots_unlock");
    
PrintToChatAll("MaxClients (after) = %i"MaxClients);
    return 
Plugin_Handled;

Attached Images
File Type: jpg 1.jpg (7.7 KB, 189 views)
File Type: jpg 2.jpg (15.5 KB, 118 views)
__________________
Expert of CMD/VBS/VB6. Malware analyst. L4D fun (Bloody Witch & FreeZone)
[My plugins] [My tools] [GitHub] [Articles] [HiJackThis+] [Donate]
Dragokas is offline