temp online clothing fix
This commit is contained in:
parent
9524b8782a
commit
507f2cbdab
|
|
@ -109,7 +109,7 @@ using System.Windows.Forms;
|
|||
{
|
||||
case string finobe when finobe.Contains("http://finobe.com/asset/?id="):
|
||||
return true;
|
||||
case string roblox when roblox.Contains("http://www.roblox.com/asset/?id="):
|
||||
case string roblox when roblox.Contains("http://epicgamers.xyz/asset/?id="):
|
||||
return true;
|
||||
default:
|
||||
return false;
|
||||
|
|
@ -122,7 +122,7 @@ using System.Windows.Forms;
|
|||
{
|
||||
case string finobe when finobe.Contains("http://finobe.com/asset/?id="):
|
||||
return LoadImage(GlobalPaths.CustomPlayerDir + @"\\finobe.png", GlobalPaths.extradir + @"\\NoExtra.png");
|
||||
case string roblox when roblox.Contains("http://www.roblox.com/asset/?id="):
|
||||
case string roblox when roblox.Contains("http://epicgamers.xyz/asset/?id="):
|
||||
return LoadImage(GlobalPaths.CustomPlayerDir + @"\\roblox.png", GlobalPaths.extradir + @"\\NoExtra.png");
|
||||
default:
|
||||
return LoadImage(GlobalPaths.extradir + @"\\NoExtra.png");
|
||||
|
|
|
|||
|
|
@ -13,10 +13,10 @@ public partial class CharacterCustomizationCompact : Form
|
|||
{
|
||||
#region Private Variables
|
||||
private string SelectedPart = "Head";
|
||||
private string Custom_T_Shirt_URL = "http://www.roblox.com/asset/?id=";
|
||||
private string Custom_Shirt_URL = "http://www.roblox.com/asset/?id=";
|
||||
private string Custom_Pants_URL = "http://www.roblox.com/asset/?id=";
|
||||
private string Custom_Face_URL = "http://www.roblox.com/asset/?id=";
|
||||
private string Custom_T_Shirt_URL = "http://epicgamers.xyz/asset/?id=";
|
||||
private string Custom_Shirt_URL = "http://epicgamers.xyz/asset/?id=";
|
||||
private string Custom_Pants_URL = "http://epicgamers.xyz/asset/?id=";
|
||||
private string Custom_Face_URL = "http://epicgamers.xyz/asset/?id=";
|
||||
private List<VarStorage.PartColors> PartColorList;
|
||||
#endregion
|
||||
|
||||
|
|
@ -135,9 +135,9 @@ public partial class CharacterCustomizationCompact : Form
|
|||
FaceIDBox.Text = GlobalVars.UserCustomization.Face.Replace("http://finobe.com/asset/?id=", "");
|
||||
FaceWebSource = "Finobe";
|
||||
break;
|
||||
case string roblox when roblox.Contains("http://www.roblox.com/asset/?id="):
|
||||
case string roblox when roblox.Contains("http://epicgamers.xyz/asset/?id="):
|
||||
default:
|
||||
FaceIDBox.Text = GlobalVars.UserCustomization.Face.Replace("http://www.roblox.com/asset/?id=", "");
|
||||
FaceIDBox.Text = GlobalVars.UserCustomization.Face.Replace("http://epicgamers.xyz/asset/?id=", "");
|
||||
FaceWebSource = "Roblox";
|
||||
break;
|
||||
}
|
||||
|
|
@ -156,9 +156,9 @@ public partial class CharacterCustomizationCompact : Form
|
|||
TShirtsIDBox.Text = GlobalVars.UserCustomization.TShirt.Replace("http://finobe.com/asset/?id=", "");
|
||||
TShirtWebSource = "Finobe";
|
||||
break;
|
||||
case string roblox when roblox.Contains("http://www.roblox.com/asset/?id="):
|
||||
case string roblox when roblox.Contains("http://epicgamers.xyz/asset/?id="):
|
||||
default:
|
||||
TShirtsIDBox.Text = GlobalVars.UserCustomization.TShirt.Replace("http://www.roblox.com/asset/?id=", "");
|
||||
TShirtsIDBox.Text = GlobalVars.UserCustomization.TShirt.Replace("http://epicgamers.xyz/asset/?id=", "");
|
||||
TShirtWebSource = "Roblox";
|
||||
break;
|
||||
}
|
||||
|
|
@ -176,9 +176,9 @@ public partial class CharacterCustomizationCompact : Form
|
|||
ShirtsIDBox.Text = GlobalVars.UserCustomization.Shirt.Replace("http://finobe.com/asset/?id=", "");
|
||||
ShirtWebSource = "Finobe";
|
||||
break;
|
||||
case string roblox when roblox.Contains("http://www.roblox.com/asset/?id="):
|
||||
case string roblox when roblox.Contains("http://epicgamers.xyz/asset/?id="):
|
||||
default:
|
||||
ShirtsIDBox.Text = GlobalVars.UserCustomization.Shirt.Replace("http://www.roblox.com/asset/?id=", "");
|
||||
ShirtsIDBox.Text = GlobalVars.UserCustomization.Shirt.Replace("http://epicgamers.xyz/asset/?id=", "");
|
||||
ShirtWebSource = "Roblox";
|
||||
break;
|
||||
}
|
||||
|
|
@ -196,9 +196,9 @@ public partial class CharacterCustomizationCompact : Form
|
|||
PantsIDBox.Text = GlobalVars.UserCustomization.Pants.Replace("http://finobe.com/asset/?id=", "");
|
||||
PantsWebSource = "Finobe";
|
||||
break;
|
||||
case string roblox when roblox.Contains("http://www.roblox.com/asset/?id="):
|
||||
case string roblox when roblox.Contains("http://epicgamers.xyz/asset/?id="):
|
||||
default:
|
||||
PantsIDBox.Text = GlobalVars.UserCustomization.Pants.Replace("http://www.roblox.com/asset/?id=", "");
|
||||
PantsIDBox.Text = GlobalVars.UserCustomization.Pants.Replace("http://epicgamers.xyz/asset/?id=", "");
|
||||
PantsWebSource = "Roblox";
|
||||
break;
|
||||
}
|
||||
|
|
@ -623,7 +623,7 @@ public partial class CharacterCustomizationCompact : Form
|
|||
Custom_Face_URL = "http://finobe.com/asset/?id=";
|
||||
break;
|
||||
default:
|
||||
Custom_Face_URL = "http://www.roblox.com/asset/?id=";
|
||||
Custom_Face_URL = "http://epicgamers.xyz/asset/?id=";
|
||||
break;
|
||||
}
|
||||
|
||||
|
|
@ -726,7 +726,7 @@ public partial class CharacterCustomizationCompact : Form
|
|||
Custom_T_Shirt_URL = "http://finobe.com/asset/?id=";
|
||||
break;
|
||||
default:
|
||||
Custom_T_Shirt_URL = "http://www.roblox.com/asset/?id=";
|
||||
Custom_T_Shirt_URL = "http://epicgamers.xyz/asset/?id=";
|
||||
break;
|
||||
}
|
||||
|
||||
|
|
@ -828,7 +828,7 @@ public partial class CharacterCustomizationCompact : Form
|
|||
Custom_Shirt_URL = "http://finobe.com/asset/?id=";
|
||||
break;
|
||||
default:
|
||||
Custom_Shirt_URL = "http://www.roblox.com/asset/?id=";
|
||||
Custom_Shirt_URL = "http://epicgamers.xyz/asset/?id=";
|
||||
break;
|
||||
}
|
||||
|
||||
|
|
@ -930,7 +930,7 @@ public partial class CharacterCustomizationCompact : Form
|
|||
Custom_Pants_URL = "http://finobe.com/asset/?id=";
|
||||
break;
|
||||
default:
|
||||
Custom_Pants_URL = "http://www.roblox.com/asset/?id=";
|
||||
Custom_Pants_URL = "http://epicgamers.xyz/asset/?id=";
|
||||
break;
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -13,10 +13,10 @@ using System.Windows.Forms;
|
|||
{
|
||||
#region Private Variables
|
||||
private string SelectedPart = "Head";
|
||||
private string Custom_T_Shirt_URL = "http://www.roblox.com/asset/?id=";
|
||||
private string Custom_Shirt_URL = "http://www.roblox.com/asset/?id=";
|
||||
private string Custom_Pants_URL = "http://www.roblox.com/asset/?id=";
|
||||
private string Custom_Face_URL = "http://www.roblox.com/asset/?id=";
|
||||
private string Custom_T_Shirt_URL = "http://epicgamers.xyz/asset/?id=";
|
||||
private string Custom_Shirt_URL = "http://epicgamers.xyz/asset/?id=";
|
||||
private string Custom_Pants_URL = "http://epicgamers.xyz/asset/?id=";
|
||||
private string Custom_Face_URL = "http://epicgamers.xyz/asset/?id=";
|
||||
private List<VarStorage.PartColors> PartColorList;
|
||||
#endregion
|
||||
|
||||
|
|
@ -139,9 +139,9 @@ using System.Windows.Forms;
|
|||
FaceIDBox.Text = GlobalVars.UserCustomization.Face.Replace("http://finobe.com/asset/?id=", "");
|
||||
FaceWebSource = "Finobe";
|
||||
break;
|
||||
case string roblox when roblox.Contains("http://www.roblox.com/asset/?id="):
|
||||
case string roblox when roblox.Contains("http://epicgamers.xyz/asset/?id="):
|
||||
default:
|
||||
FaceIDBox.Text = GlobalVars.UserCustomization.Face.Replace("http://www.roblox.com/asset/?id=", "");
|
||||
FaceIDBox.Text = GlobalVars.UserCustomization.Face.Replace("http://epicgamers.xyz/asset/?id=", "");
|
||||
FaceWebSource = "Roblox";
|
||||
break;
|
||||
}
|
||||
|
|
@ -160,9 +160,9 @@ using System.Windows.Forms;
|
|||
TShirtsIDBox.Text = GlobalVars.UserCustomization.TShirt.Replace("http://finobe.com/asset/?id=", "");
|
||||
TShirtWebSource = "Finobe";
|
||||
break;
|
||||
case string roblox when roblox.Contains("http://www.roblox.com/asset/?id="):
|
||||
case string roblox when roblox.Contains("http://epicgamers.xyz/asset/?id="):
|
||||
default:
|
||||
TShirtsIDBox.Text = GlobalVars.UserCustomization.TShirt.Replace("http://www.roblox.com/asset/?id=", "");
|
||||
TShirtsIDBox.Text = GlobalVars.UserCustomization.TShirt.Replace("http://epicgamers.xyz/asset/?id=", "");
|
||||
TShirtWebSource = "Roblox";
|
||||
break;
|
||||
}
|
||||
|
|
@ -180,9 +180,9 @@ using System.Windows.Forms;
|
|||
ShirtsIDBox.Text = GlobalVars.UserCustomization.Shirt.Replace("http://finobe.com/asset/?id=", "");
|
||||
ShirtWebSource = "Finobe";
|
||||
break;
|
||||
case string roblox when roblox.Contains("http://www.roblox.com/asset/?id="):
|
||||
case string roblox when roblox.Contains("http://epicgamers.xyz/asset/?id="):
|
||||
default:
|
||||
ShirtsIDBox.Text = GlobalVars.UserCustomization.Shirt.Replace("http://www.roblox.com/asset/?id=", "");
|
||||
ShirtsIDBox.Text = GlobalVars.UserCustomization.Shirt.Replace("http://epicgamers.xyz/asset/?id=", "");
|
||||
ShirtWebSource = "Roblox";
|
||||
break;
|
||||
}
|
||||
|
|
@ -200,9 +200,9 @@ using System.Windows.Forms;
|
|||
PantsIDBox.Text = GlobalVars.UserCustomization.Pants.Replace("http://finobe.com/asset/?id=", "");
|
||||
PantsWebSource = "Finobe";
|
||||
break;
|
||||
case string roblox when roblox.Contains("http://www.roblox.com/asset/?id="):
|
||||
case string roblox when roblox.Contains("http://epicgamers.xyz/asset/?id="):
|
||||
default:
|
||||
PantsIDBox.Text = GlobalVars.UserCustomization.Pants.Replace("http://www.roblox.com/asset/?id=", "");
|
||||
PantsIDBox.Text = GlobalVars.UserCustomization.Pants.Replace("http://epicgamers.xyz/asset/?id=", "");
|
||||
PantsWebSource = "Roblox";
|
||||
break;
|
||||
}
|
||||
|
|
@ -628,7 +628,7 @@ using System.Windows.Forms;
|
|||
Custom_Face_URL = "http://finobe.com/asset/?id=";
|
||||
break;
|
||||
default:
|
||||
Custom_Face_URL = "http://www.roblox.com/asset/?id=";
|
||||
Custom_Face_URL = "http://epicgamers.xyz/asset/?id=";
|
||||
break;
|
||||
}
|
||||
|
||||
|
|
@ -731,7 +731,7 @@ using System.Windows.Forms;
|
|||
Custom_T_Shirt_URL = "http://finobe.com/asset/?id=";
|
||||
break;
|
||||
default:
|
||||
Custom_T_Shirt_URL = "http://www.roblox.com/asset/?id=";
|
||||
Custom_T_Shirt_URL = "http://epicgamers.xyz/asset/?id=";
|
||||
break;
|
||||
}
|
||||
|
||||
|
|
@ -833,7 +833,7 @@ using System.Windows.Forms;
|
|||
Custom_Shirt_URL = "http://finobe.com/asset/?id=";
|
||||
break;
|
||||
default:
|
||||
Custom_Shirt_URL = "http://www.roblox.com/asset/?id=";
|
||||
Custom_Shirt_URL = "http://epicgamers.xyz/asset/?id=";
|
||||
break;
|
||||
}
|
||||
|
||||
|
|
@ -935,7 +935,7 @@ using System.Windows.Forms;
|
|||
Custom_Pants_URL = "http://finobe.com/asset/?id=";
|
||||
break;
|
||||
default:
|
||||
Custom_Pants_URL = "http://www.roblox.com/asset/?id=";
|
||||
Custom_Pants_URL = "http://epicgamers.xyz/asset/?id=";
|
||||
break;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue