AlliedModders

AlliedModders (https://forums.alliedmods.net/index.php)
-   Code Snippets/Tutorials (https://forums.alliedmods.net/forumdisplay.php?f=83)
-   -   [TUT] [BB] How to add lock/unlock after preptime/buildtime (https://forums.alliedmods.net/showthread.php?t=326774)

Supremache 08-16-2020 07:14

[TUT] [BB] How to add lock/unlock after preptime/buildtime
 
In this tutorial, I going to explaining: How to add lock/unlock after preptime/buildtime

1. Download basebuilder mod v6.5
2. Open sma file And add this codes
PHP Code:

#define FLAGS_LOCKAFTER ADMIN_ALL 

3. Go to public plugin_natives() section and add this code
PHP Code:

register_native("bb_get_flags_lockafter","native_get_flags_lockafter"1

4. Go to public cmdLockBlock(id) section and replace this code

From
PHP Code:

if (!g_boolCanBuild && g_iLockBlocks)
    {
        
client_print(idprint_center"%L"LANG_SERVER"FAIL_LOCK");
        return 
PLUGIN_HANDLED;
    } 

To
PHP Code:

if (!g_boolCanBuild && g_iLockBlocks && !access(idFLAGS_LOCKAFTER))
    {
        
client_print(idprint_center"%L"LANG_SERVER"FAIL_LOCK");
        return 
PLUGIN_HANDLED;
    } 

5. Add this code down to the last lines of plugin with natives sections
PHP Code:

public native_get_flags_lockafter()     return FLAGS_LOCKAFTER 

Enjoy! :)

XoNix 07-27-2021 07:57

Re: [TUT] [BB] How to add lock/unlock after preptime/buildtime
 
how ican add this


public native_get_flags_lockafter() return FLAGS_LOCKAFTER

XoNix 07-27-2021 07:58

Re: [TUT] [BB] How to add lock/unlock after preptime/buildtime
 
public native_get_flags_lockafter() return FLAGS_LOCKAFTER

Supremache 08-11-2021 04:46

Re: [TUT] [BB] How to add lock/unlock after preptime/buildtime
 
You don't need to add this native, if you want to use that flag with other plugin then you have to add this..


All times are GMT -4. The time now is 22:52.

Powered by vBulletin®
Copyright ©2000 - 2024, vBulletin Solutions, Inc.