AMS 8 Scripts by Xgames (UPDATED) Posted by Unknown on April 05, 2017 Get link Facebook X Pinterest Email Other Apps Auto play media studio 8 Scripts Password (CODE1): password = Input.GetText("Input1") if password ~= "Your Password" then -- if the password is WRONG, do something here else -- if the password is CORRECT, do something here end Keygen (CODE2) array = { "1", "2", "3", "4","5","6","7" } part01=math.random (1,7); Input.SetText("Input1",(array[part01])); Progress Bar (CODE3) pos = 0; min = 0; max = 100; for count = min, max do Progress.SetCurrentPos("Progress1", pos) Progress.SetText("Progress1", pos.."%") Application.Sleep(100) pos = pos + 1 end Dialog.Message ("", "The progress is full !") -- Display message box Choice for EXIT: -- Ask the user if they really want to exit nChoice = Dialog.Message("Confirm Exit", "Do you really want to ext?", MB_YESNO, MB_ICONQUESTION, MB_DEFBUTTON2); -- If yes was chosen, exit the application. if nChoice == 6 then Application.Exit(); end Codes by : Zeeshan Ahmed Comments
Comments
Post a Comment