/// <summary> /// Create an explosion of a specific type at a certain position /// </summary> public static bool Create(Vector3 position, ExplosionType type, bool makeSound = true, float camShake = -1) { return(MtaClient.CreateExplosion(position.X, position.Y, position.Z, (int)type, makeSound, camShake)); }