Survey Blocker

Simple plugin to block damage of structure from survey charges

Total Downloads: 324 - First Release: Nov 23, 2017 - Last Update: Jun 28, 2018

5/5, 16 likes
  1. miRror submitted a new resource:

    SurveyBlocker - Simple plugin to block damage of structure from survey charges

    Read more about this resource...
     
  2. Plugin needs an update :) new ID:

    Code:
    private uint surveyID = 2141863453;   
     
  3. miRror updated Survey Blocker with a new update entry:

    1.0.1

     
  4. Its using "OnEntityTakeDamage", maybe "OnExplosiveThrown" and decrease damage will be better? (It will)

    P.S. :
    upload_2018-8-7_1-13-50.png

    P.P.S:
    Code:
    private void OnExplosiveThrown(BasePlayer player, BaseEntity entity)
    {
        if(!entity.PrefabName.ToLower().Contains("survey")) return;
        var survey = entity as TimedExplosive;
        survey.damageTypes.Clear();
    }
    
     
    Last edited by a moderator: Aug 6, 2018