AlliedModders

AlliedModders (https://forums.alliedmods.net/index.php)
-   CSDM (https://forums.alliedmods.net/forumdisplay.php?f=87)
-   -   No winners (https://forums.alliedmods.net/showthread.php?t=150679)

pauliuzzz 02-20-2011 05:21

No winners
 
Hey, how to make that if all CT/T down round never end(no one win)? I found plugin http://forums.alliedmods.net/showthread.php?p=736993
but it doesn't work with csdm

rx1983 02-24-2011 16:26

Re: No winners
 
remove.objectives = abcd

no works ?


PHP Code:

#include <engine>
#include <amxmod>

public plugin_init() RemoveEntities()

RemoveEntities() {
    

    if (
find_ent_by_class(iEnt"func_bomb_target")) {
        
remove_entity_name("func_bomb_target")
        
remove_entity_name("info_bomb_target")    
    }

    if (
find_ent_by_class(iEnt"hostage_entity")) {
        
remove_entity_name("func_hostage_rescue")
        
remove_entity_name("info_hostage_rescue")
        
remove_entity_name("hostage_entity")
    }
    
    return 
PLUGIN_CONTINUE




All times are GMT -4. The time now is 20:30.

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