temp online clothing fix

This commit is contained in:
Bitl 2020-09-18 16:26:36 -07:00
parent 9524b8782a
commit 507f2cbdab
3 changed files with 34 additions and 34 deletions

View File

@ -109,7 +109,7 @@ using System.Windows.Forms;
{ {
case string finobe when finobe.Contains("http://finobe.com/asset/?id="): case string finobe when finobe.Contains("http://finobe.com/asset/?id="):
return true; 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; return true;
default: default:
return false; return false;
@ -122,7 +122,7 @@ using System.Windows.Forms;
{ {
case string finobe when finobe.Contains("http://finobe.com/asset/?id="): case string finobe when finobe.Contains("http://finobe.com/asset/?id="):
return LoadImage(GlobalPaths.CustomPlayerDir + @"\\finobe.png", GlobalPaths.extradir + @"\\NoExtra.png"); 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"); return LoadImage(GlobalPaths.CustomPlayerDir + @"\\roblox.png", GlobalPaths.extradir + @"\\NoExtra.png");
default: default:
return LoadImage(GlobalPaths.extradir + @"\\NoExtra.png"); return LoadImage(GlobalPaths.extradir + @"\\NoExtra.png");

View File

@ -13,10 +13,10 @@ public partial class CharacterCustomizationCompact : Form
{ {
#region Private Variables #region Private Variables
private string SelectedPart = "Head"; private string SelectedPart = "Head";
private string Custom_T_Shirt_URL = "http://www.roblox.com/asset/?id="; private string Custom_T_Shirt_URL = "http://epicgamers.xyz/asset/?id=";
private string Custom_Shirt_URL = "http://www.roblox.com/asset/?id="; private string Custom_Shirt_URL = "http://epicgamers.xyz/asset/?id=";
private string Custom_Pants_URL = "http://www.roblox.com/asset/?id="; private string Custom_Pants_URL = "http://epicgamers.xyz/asset/?id=";
private string Custom_Face_URL = "http://www.roblox.com/asset/?id="; private string Custom_Face_URL = "http://epicgamers.xyz/asset/?id=";
private List<VarStorage.PartColors> PartColorList; private List<VarStorage.PartColors> PartColorList;
#endregion #endregion
@ -135,9 +135,9 @@ public partial class CharacterCustomizationCompact : Form
FaceIDBox.Text = GlobalVars.UserCustomization.Face.Replace("http://finobe.com/asset/?id=", ""); FaceIDBox.Text = GlobalVars.UserCustomization.Face.Replace("http://finobe.com/asset/?id=", "");
FaceWebSource = "Finobe"; FaceWebSource = "Finobe";
break; 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: 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"; FaceWebSource = "Roblox";
break; break;
} }
@ -156,9 +156,9 @@ public partial class CharacterCustomizationCompact : Form
TShirtsIDBox.Text = GlobalVars.UserCustomization.TShirt.Replace("http://finobe.com/asset/?id=", ""); TShirtsIDBox.Text = GlobalVars.UserCustomization.TShirt.Replace("http://finobe.com/asset/?id=", "");
TShirtWebSource = "Finobe"; TShirtWebSource = "Finobe";
break; 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: 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"; TShirtWebSource = "Roblox";
break; break;
} }
@ -176,9 +176,9 @@ public partial class CharacterCustomizationCompact : Form
ShirtsIDBox.Text = GlobalVars.UserCustomization.Shirt.Replace("http://finobe.com/asset/?id=", ""); ShirtsIDBox.Text = GlobalVars.UserCustomization.Shirt.Replace("http://finobe.com/asset/?id=", "");
ShirtWebSource = "Finobe"; ShirtWebSource = "Finobe";
break; 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: 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"; ShirtWebSource = "Roblox";
break; break;
} }
@ -196,9 +196,9 @@ public partial class CharacterCustomizationCompact : Form
PantsIDBox.Text = GlobalVars.UserCustomization.Pants.Replace("http://finobe.com/asset/?id=", ""); PantsIDBox.Text = GlobalVars.UserCustomization.Pants.Replace("http://finobe.com/asset/?id=", "");
PantsWebSource = "Finobe"; PantsWebSource = "Finobe";
break; 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: 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"; PantsWebSource = "Roblox";
break; break;
} }
@ -623,7 +623,7 @@ public partial class CharacterCustomizationCompact : Form
Custom_Face_URL = "http://finobe.com/asset/?id="; Custom_Face_URL = "http://finobe.com/asset/?id=";
break; break;
default: default:
Custom_Face_URL = "http://www.roblox.com/asset/?id="; Custom_Face_URL = "http://epicgamers.xyz/asset/?id=";
break; break;
} }
@ -726,7 +726,7 @@ public partial class CharacterCustomizationCompact : Form
Custom_T_Shirt_URL = "http://finobe.com/asset/?id="; Custom_T_Shirt_URL = "http://finobe.com/asset/?id=";
break; break;
default: default:
Custom_T_Shirt_URL = "http://www.roblox.com/asset/?id="; Custom_T_Shirt_URL = "http://epicgamers.xyz/asset/?id=";
break; break;
} }
@ -828,7 +828,7 @@ public partial class CharacterCustomizationCompact : Form
Custom_Shirt_URL = "http://finobe.com/asset/?id="; Custom_Shirt_URL = "http://finobe.com/asset/?id=";
break; break;
default: default:
Custom_Shirt_URL = "http://www.roblox.com/asset/?id="; Custom_Shirt_URL = "http://epicgamers.xyz/asset/?id=";
break; break;
} }
@ -930,7 +930,7 @@ public partial class CharacterCustomizationCompact : Form
Custom_Pants_URL = "http://finobe.com/asset/?id="; Custom_Pants_URL = "http://finobe.com/asset/?id=";
break; break;
default: default:
Custom_Pants_URL = "http://www.roblox.com/asset/?id="; Custom_Pants_URL = "http://epicgamers.xyz/asset/?id=";
break; break;
} }

View File

@ -13,10 +13,10 @@ using System.Windows.Forms;
{ {
#region Private Variables #region Private Variables
private string SelectedPart = "Head"; private string SelectedPart = "Head";
private string Custom_T_Shirt_URL = "http://www.roblox.com/asset/?id="; private string Custom_T_Shirt_URL = "http://epicgamers.xyz/asset/?id=";
private string Custom_Shirt_URL = "http://www.roblox.com/asset/?id="; private string Custom_Shirt_URL = "http://epicgamers.xyz/asset/?id=";
private string Custom_Pants_URL = "http://www.roblox.com/asset/?id="; private string Custom_Pants_URL = "http://epicgamers.xyz/asset/?id=";
private string Custom_Face_URL = "http://www.roblox.com/asset/?id="; private string Custom_Face_URL = "http://epicgamers.xyz/asset/?id=";
private List<VarStorage.PartColors> PartColorList; private List<VarStorage.PartColors> PartColorList;
#endregion #endregion
@ -139,9 +139,9 @@ using System.Windows.Forms;
FaceIDBox.Text = GlobalVars.UserCustomization.Face.Replace("http://finobe.com/asset/?id=", ""); FaceIDBox.Text = GlobalVars.UserCustomization.Face.Replace("http://finobe.com/asset/?id=", "");
FaceWebSource = "Finobe"; FaceWebSource = "Finobe";
break; 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: 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"; FaceWebSource = "Roblox";
break; break;
} }
@ -160,9 +160,9 @@ using System.Windows.Forms;
TShirtsIDBox.Text = GlobalVars.UserCustomization.TShirt.Replace("http://finobe.com/asset/?id=", ""); TShirtsIDBox.Text = GlobalVars.UserCustomization.TShirt.Replace("http://finobe.com/asset/?id=", "");
TShirtWebSource = "Finobe"; TShirtWebSource = "Finobe";
break; 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: 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"; TShirtWebSource = "Roblox";
break; break;
} }
@ -180,9 +180,9 @@ using System.Windows.Forms;
ShirtsIDBox.Text = GlobalVars.UserCustomization.Shirt.Replace("http://finobe.com/asset/?id=", ""); ShirtsIDBox.Text = GlobalVars.UserCustomization.Shirt.Replace("http://finobe.com/asset/?id=", "");
ShirtWebSource = "Finobe"; ShirtWebSource = "Finobe";
break; 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: 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"; ShirtWebSource = "Roblox";
break; break;
} }
@ -200,9 +200,9 @@ using System.Windows.Forms;
PantsIDBox.Text = GlobalVars.UserCustomization.Pants.Replace("http://finobe.com/asset/?id=", ""); PantsIDBox.Text = GlobalVars.UserCustomization.Pants.Replace("http://finobe.com/asset/?id=", "");
PantsWebSource = "Finobe"; PantsWebSource = "Finobe";
break; 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: 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"; PantsWebSource = "Roblox";
break; break;
} }
@ -628,7 +628,7 @@ using System.Windows.Forms;
Custom_Face_URL = "http://finobe.com/asset/?id="; Custom_Face_URL = "http://finobe.com/asset/?id=";
break; break;
default: default:
Custom_Face_URL = "http://www.roblox.com/asset/?id="; Custom_Face_URL = "http://epicgamers.xyz/asset/?id=";
break; break;
} }
@ -731,7 +731,7 @@ using System.Windows.Forms;
Custom_T_Shirt_URL = "http://finobe.com/asset/?id="; Custom_T_Shirt_URL = "http://finobe.com/asset/?id=";
break; break;
default: default:
Custom_T_Shirt_URL = "http://www.roblox.com/asset/?id="; Custom_T_Shirt_URL = "http://epicgamers.xyz/asset/?id=";
break; break;
} }
@ -833,7 +833,7 @@ using System.Windows.Forms;
Custom_Shirt_URL = "http://finobe.com/asset/?id="; Custom_Shirt_URL = "http://finobe.com/asset/?id=";
break; break;
default: default:
Custom_Shirt_URL = "http://www.roblox.com/asset/?id="; Custom_Shirt_URL = "http://epicgamers.xyz/asset/?id=";
break; break;
} }
@ -935,7 +935,7 @@ using System.Windows.Forms;
Custom_Pants_URL = "http://finobe.com/asset/?id="; Custom_Pants_URL = "http://finobe.com/asset/?id=";
break; break;
default: default:
Custom_Pants_URL = "http://www.roblox.com/asset/?id="; Custom_Pants_URL = "http://epicgamers.xyz/asset/?id=";
break; break;
} }