(adsbygoogle = window.adsbygoogle || []).push({});
Hello, I'm having a bit of trouble trying to figure out how to reposition a mod menu. I want to put him in the middle of the screen a little to the left <<< hope will help me leave the codes
thanks for attention tale with you
StoreShaders()
{
shaders = self.Private["shaders"];
self.menu.background = self drawShader("cyan", "LEFT", "CENTER", 175, 0, 280, 480, (0, 0, 0), 0, 1);
self.menu.scroller = self drawShader("green", "LEFT", "TOPRIGHT", -200, 30.6, 300, 17, (1, 1, 1), 0, 2);
self.Private["header"] = createRectangle("LEFT", "TOP", 175, -10, 252, 60, 3, (1,1,1), 0, shaders["header"]);
}
StoreText(menu, title)
{
colors = self.Private["colors"];
self.menu.currentmenu = menu;
string = "";
self.Private["title"] destroy();
self.Private["title"] = drawText(title, "bigfixed", 1.2, "LEFT", "TOPRIGHT", -180, 0, colors["title"], 1, 4);
for(i = 0; i < self.menu.menuopt[menu].size; i++)
{ string += self.menu.menuopt[menu]
+ "\n"; }
self.Private["options"] destroy();
self.Private["options"] = drawText(string, "default", 1.6, "LEFT", "TOPRIGHT", -180, 30, colors["options"], 1, 5);
}