HLMOD.HU Forrás Megtekintés - www.hlmod.hu
  1. #include <amxmodx>
  2. #include <engine>
  3.  
  4. public plugin_init() {
  5. register_plugin("Ajtó kivétel", "1.0", "FyToS" );
  6.  
  7. new map[32];
  8. get_mapname(map, 31);
  9.  
  10. if (equal(map, "deathrun_arctic")) {
  11. new ent;
  12. ent = find_ent_by_model(ent, "func_door_rotating", "*126");
  13. remove_entity(ent);
  14. ent = find_ent_by_model(ent, "func_door_rotating", "*8");
  15. remove_entity(ent);
  16. ent = find_ent_by_model(ent, "func_button", "*27");
  17. remove_entity(ent);
  18. }
  19. }