Skip to content

Commit

Permalink
1.1.2.1
Browse files Browse the repository at this point in the history
Add Mundo, Janna
  • Loading branch information
Jeong-Min-Cho committed Feb 28, 2015
1 parent 1b4e339 commit a6b4428
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 2 deletions.
7 changes: 6 additions & 1 deletion Mata View/Mata View/DetectObj.cs
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,11 @@ private static void FakeObjCreate(Obj_AI_Base obj, GameObjectProcessSpellCastEve
FakeCreateLogic(obj, "InfiniteDuress_tar.troy", 999999996, true, "InfiniteDuress_");
}

if (arg.SData.Name.Contains("Sadism"))
{
FakeCreateLogic(obj, "dr_mundo_heal.troy", 999999995, false, "dr_mundo_heal.troy");
}

if (arg.SData.Name.Contains("PantheonRJump"))
_panthD = true;

Expand All @@ -87,7 +92,7 @@ private static void FakeObjCreate(Obj_AI_Base obj, GameObjectProcessSpellCastEve

}

private static void FakeCreateLogic(Obj_AI_Base obj,
public static void FakeCreateLogic(Obj_AI_Base obj,
string createname,
int fakeNetId,
bool namecheck,
Expand Down
2 changes: 1 addition & 1 deletion Mata View/Mata View/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ private static void Main(string[] args)

private static void Game_OnGameLoad(EventArgs args)
{
Chat("1.1.2.2 [Feb, 14]");
Chat("1.1.2.3 [Feb, 28]");
Menus.Menuadd();
DetectObj.DetectObjload();

Expand Down
4 changes: 4 additions & 0 deletions Mata View/Mata View/SkillsList.cs
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,7 @@ static SkillsList()
SkillList0.Add(new Getobj("MasterYi_Base_W_Buf.troy", 4f, 0, "MasterYi", "MasterYi W"));

SkillList0.Add(new Getobj("ShenTeleport_v2.troy", 3f, 0, "Shen" , "Shen R"));




Expand All @@ -69,6 +70,7 @@ static SkillsList()
SkillList0.Add(new Getobj("Velkoz_Base_R_Beam_Eye.troy", 2.5f, 1, "Velkoz", "Velkoz R"));
SkillList0.Add(new Getobj("Sion_Base_R_Cas.troy", 8f, 1, "Sion", "Sion R"));
SkillList0.Add(new Getobj("Zac_R_tar.troy", 5f, 1, "Zac", "Zac R"));
SkillList0.Add(new Getobj("dr_mundo_heal.troy", 12f, 1, "DrMundo", "Mundo R"));
// SkillList0.Add(new Getobj("Crowstorm_", 5f, 1, "FiddleSticks", "FiddleSticks R"));


Expand Down Expand Up @@ -101,6 +103,7 @@ static SkillsList()
SkillList0.Add(new Getobj("Veigar_Base_E_cage_", 3f, 0, "Veigar", "Veigar E"));
SkillList0.Add(new Getobj("akali_smoke_bomb_tar_team_", 8f, 0, "Akali", "Akali W"));
SkillList0.Add(new Getobj("Pantheon_Base_R_indicator_", 1.5f, 0, "Pantheon", "Pantheon R")); // Visible = 2.5f / Invisible = 1.5f
SkillList0.Add(new Getobj("ReapTheWhirlwind_", 3f, 0, "Janna", "Janna R"));
}

public static Getobj IsObj(string skillname)
Expand Down Expand Up @@ -133,6 +136,7 @@ public static Getobj IsMisc(string sendername)
}
return null;
}

}


Expand Down

0 comments on commit a6b4428

Please sign in to comment.