AlliedModders

AlliedModders (https://forums.alliedmods.net/index.php)
-   Scripting Help (https://forums.alliedmods.net/forumdisplay.php?f=11)
-   -   remove buyzone, roundtime (https://forums.alliedmods.net/showthread.php?t=136334)

omgitsme 08-25-2010 10:52

remove buyzone, roundtime
 
what are they called?
remove_entity(...)
and how can i remove roundtime?

nikhilgupta345 08-25-2010 11:18

Re: remove buyzone, roundtime
 
check out csdm for never ending rounds.

grimvh2 08-25-2010 11:59

Re: remove buyzone, roundtime
 
remove buyzone :

PHP Code:

register_message(get_user_msgid("StatusIcon"), "Msg_StatusIcon");

public 
Msg_StatusIcon(msgidmsgdestid
{
    static 
szMsg[8];
    
get_msg_arg_string(2szMsg7);
    
    if(
equal(szMsg"buyzone") && get_msg_arg_int(1)) 
    {
        
set_pdata_int(id235get_pdata_int(id235) & ~(<< 0));
        return 
PLUGIN_HANDLED;
    }
    
    return 
PLUGIN_CONTINUE;



omgitsme 08-25-2010 12:57

Re: remove buyzone, roundtime
 
tank ya
and anyone know about the never ending roundtime?

Arkshine 08-25-2010 13:06

Re: remove buyzone, roundtime
 
Infinite Round

It would be nice if you could search before posting.


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

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