Jump to content
GIGN Forum

Par 1 Pluginu


Recommended Posts

Tu domā sv_stepsize 99999 vai arī vari izmantot šo pluginu

#include <amxmodx>
#include <engine>

public plugin_init() {
    register_plugin("Remove Doors","1.1","[BSP] Thijs");
    set_task(1.0,"RemoveDoors");
}

public RemoveDoors() {
    new Door;
    while((Door = find_ent_by_class(Door,"func_door_rotating"))) {
        remove_entity(Door);
    }
    while((Door = find_ent_by_class(Door,"func_door"))) {
        remove_entity(Door);
    }
}

Link to comment
Share on other sites

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now
 Share

×
×
  • Create New...