local mf = getMainForm() local sf = getSettingsForm() local app = getApplication() local al = getAddressList() Bit = Pic.getBitmap() mfb = createImage(MainForm) img1 = createImage(MainForm.FoundList3) img2 = createImage(MainForm.Panel1) Pic = createPicture() createThread( function() sleep(250) synchronize( function() function creategui() if Pic and Pic.destroy then Pic:destroy() else print("Cant Delete App Image") end local Pic = createPicture() Pic.loadFromStream(findTableFile("Soldiers.png").Stream) local Bit = Pic.getBitmap() app.Icon = Bit print("App Icon Placed") if mfb and mfb.destroy then mfb:destroy() else print("Cant Delete Background Image") end local mfb = createImage(mf) local p5= mf.Panel5 mfb.Left = p5.Left mfb.Top = p5.Top mfb.Width = mf.Width mfb.Height = mf.Height img2.Align = "alClient" mfb.Anchors = "[akLeft, akTop, akBottom, akRight]" mfb.Stretch = true mfb.Picture.loadFromStream(findTableFile('FinalFantasyVIIAC.png').Stream) print("Main Background Placed") if img1 and img1.destroy then img1:destroy() else print("Cant Delete FoundList Image") end local fl = mf.FoundList3 local flpn = mf.Panel5 local img1 = createImage(flpn) fl.setLayeredAttributes(0x0000FE, 185, 0x3) img1.Anchors = "[akLeft, akTop, akBottom, akRight]" img1.Height = fl.Height img1.Width = fl.Width img1.Left = fl.Left img1.Top = fl.Top img1.Stretch = true mf.Foundlist3.Color = 0x010101 img1.Picture.loadFromStream(findTableFile('girls of ff7.png').Stream) print("FoundList Background Placed") if img2 and img2.destroy then img2:destroy() else print("Cant Delete AddressList Image") end local adl = getAddressList().List local adp = mf.Panel1 local img2 = createImage(adp) al.setLayeredAttributes(0x0000FE, 185, 0x3) img2.Anchors = "[akLeft, akTop, akBottom, akRight]" img2.Align = "alClient" img2.Height = al.Height img2.Width = al.Width img2.Left = al.Left img2.Top = al.Top img2.Stretch = true al.Control[0].BackgroundColor = 0x010101 img2.Picture.loadFromStream(findTableFile("FF7Gang.jpg").Stream) print("AddressList Background Placed") if img and img.destroy then img:destroy() else print("Never Deletes Logo Image") end local img = mf.Logo img.Width = 145 img.Height = 135 img.Picture.loadFromStream(findTableFile("FF7ogLogo.png").Stream) print("Logo Placed") sf.tsLua.Font.Color = 0x770077 sf.GeneralSettings.Color = 0x000001 sf.Font.Color = 0x770077 mf.Constraints.MinWidth = 800 mf.Constraints.MinHeight = 600 mf.pnlScanValueOptions .Font.Color = 0x770077 mf.Foundlist3.Font.Color = 0x000099 mf.lblSigned.Font.Color = 0x0000ff mf.Splitter1.Color = 0x97ff35 mf.Label54.Font.Color = 0x97ff35 mf.editSH2.Font.Color = 0x97ff35 mf.lblSH0.Font.Color = 0x97ff35 mf.lblSH20.Font.Color = 0x97ff35 mf.advancedbutton.Font.Color = 0x97ff35 mf.CommentButton.Font.Color = 0x97ff35 mf.Label6.Font.Color = 0x97ff35 mf.ScanText.Font.Color = 0x97ff35 mf.ScanType.Font.Color = 0x97ff35 mf.VarType.Font.Color = 0x97ff35 mf.lblScanType.Font.Color = 0x97ff35 mf.lblValueType.Font.Color = 0x97ff35 mf.Panel5.Font.Color = 0x97ff35 al.SelectedBackgroundColor = 0x97cc35 al.SelectedSecondaryBackgroundColor = 0x550000 al.CheckboxColor = 0x97ff35 al.CheckboxActiveSelectedColor = 0x550000 al.CheckboxActiveColor = 0x770077 al.CheckboxSelectedColor = 0x55ddf0 function onTableLoad(before) app.Title = mf.OpenDialog1.FileName mf.Caption = mf.SaveDialog1.FileName end function MainForm.OnProcessOpened() app.Title = mf.OpenDialog1.FileName mf.Caption = mf.SaveDialog1.FileName end end creategui() -- create records Manager function RefreshGuiMenuItem() local mi = createMenuItem(getMainForm().Menu) mi.Caption = 'Refresh GUI' mi.OnClick = creategui getMainForm().Menu.Items[1].add(mi) print([[ "Gui placed successfully!!" You have two ways to refresh: 1. Click the 'Refresh GUI' button from Edit Tab 2. Call creategui() manually ***Window Will AutoClose In 3 Seconds*** ]]) end local printertimer = createTimer(getLuaEngine()) printertimer.Interval = 2500 printertimer.OnTimer = function(timer) timer.Enabled = true if getLuaEngine().Visible then Form_close(getLuaEngine()) end timer:destroy() end RefreshGuiMenuItem() end ) print("Threads Synced") end )