Advertisement
chen399d

temporary_files_4.5.1

Apr 2nd, 2025 (edited)
379
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 63.14 KB | Source Code | 0 0
  1. loadstring(game:HttpGet('https://raw.githubusercontent.com/Tseting-nil/-Cultivation-Simulator-script/refs/heads/main/%E6%9B%B4%E6%96%B0%E8%A8%8A%E6%81%AFUI%E6%A8%A1%E7%B5%84.lua'))()
  2. UpdTitleUI("Notice!! ~ !!")
  3. UpdtextUI("You are currently using a temporary patch version ~ ")
  4. UpdtextUI("This version has been fixed and is now functional ~ ")
  5. UpdtextUI("Please switch to the official version to receive the latest updates ~ ")
  6. UpdtextUI("Thank you for your support :)")
  7. showUItimes(5)
  8.  
  9. local library = loadstring(game:HttpGet("https://raw.githubusercontent.com/Tseting-nil/-Cultivation-Simulator-script/refs/heads/main/%E6%89%8B%E6%A9%9F%E7%AB%AFUI/imgui_en%E9%9D%A2%E6%9D%BF.lua", true))();
  10. function showNotification(message)
  11.     local screenGui = Instance.new("ScreenGui");
  12.     screenGui.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui");
  13.     local notification = Instance.new("Frame");
  14.     notification.Size = UDim2.new(0, 300, 0, 50);
  15.     notification.Position = UDim2.new(1, -320, 1, -120);
  16.     notification.BackgroundColor3 = Color3.fromRGB(0, 0, 0);
  17.     notification.BackgroundTransparency = 0.5;
  18.     notification.BorderSizePixel = 0;
  19.     notification.Parent = screenGui;
  20.     local label = Instance.new("TextLabel");
  21.     label.Size = UDim2.new(1, 0, 1, 0);
  22.     label.Position = UDim2.new(0, 0, 0, 0);
  23.     label.Text = message;
  24.     label.TextColor3 = Color3.fromRGB(255, 255, 255);
  25.     label.BackgroundTransparency = 1;
  26.     label.Font = Enum.Font.GothamBold;
  27.     label.TextScaled = true;
  28.     label.Parent = notification;
  29.     task.delay(3, function()
  30.         notification:Destroy();
  31.     end);
  32. end
  33. local RespawPoint = loadstring(game:HttpGet("https://raw.githubusercontent.com/Tseting-nil/-Cultivation-Simulator-script/refs/heads/main/%E6%89%8B%E6%A9%9F%E7%AB%AFUI/%E9%85%8D%E7%BD%AE%E4%B8%BB%E5%A0%B4%E6%99%AF.lua"))();
  34. loadstring(game:HttpGet("https://raw.githubusercontent.com/Tseting-nil/-Cultivation-Simulator-script/refs/heads/main/%E6%89%8B%E6%A9%9F%E7%AB%AFUI/%E4%BB%BB%E5%8B%99%E8%87%AA%E5%8B%95%E9%A0%98%E5%8F%96.lua"))();
  35. local JsonHandler = loadstring(game:HttpGet("https://raw.githubusercontent.com/Tseting-nil/-Cultivation-Simulator-script/refs/heads/main/JSON%E6%A8%A1%E7%B5%84.lua"))();
  36. local AntiAFK = game:GetService("VirtualUser");
  37. game.Players.LocalPlayer.Idled:Connect(function()
  38.     AntiAFK:CaptureController();
  39.     AntiAFK:ClickButton2(Vector2.new());
  40.     wait(2);
  41. end);
  42. local window = library:AddWindow("Cultivation-Simulator script ", {main_color=Color3.fromRGB(41, 74, 122),min_size=Vector2.new(408, 335),can_resize=false});
  43. local features = window:AddTab("Rdme");
  44. local features1 = window:AddTab("Main");
  45. local features2 = window:AddTab("World");
  46. local features3 = window:AddTab("Dungeons");
  47. local features4 = window:AddTab("Pull");
  48. local features5 = window:AddTab("Misc");
  49. local features6 = window:AddTab("UI");
  50. local features7 = window:AddTab("Set");
  51. local workspace = game:GetService("Workspace");
  52. local player = game:GetService("Players").LocalPlayer;
  53. local Players = game.Players;
  54. local localPlayer = game.Players.LocalPlayer;
  55. local playerGui = player.PlayerGui;
  56. local RespawPointnum = RespawPoint:match("%d+");
  57. print("重生點編號:" .. RespawPointnum);
  58. local reworld = workspace:waitForChild("主場景" .. RespawPointnum):waitForChild("重生点");
  59. local TPX, TPY, TPZ = reworld.Position.X, reworld.Position.Y + 5, reworld.Position.Z;
  60. local Restart = false;
  61. local finishworldnum;
  62. local values = player:WaitForChild("值");
  63. local privileges = values:WaitForChild("特权");
  64. local gowordlevels = 1;
  65. local isDetectionEnabled = true;
  66. local playerInRange = false;
  67. local timescheck = 0;
  68. local hasPrintedNoPlayer = false;
  69. local savemodetime = 3;
  70. local savemodetime2 = 0;
  71. local savemodebutton;
  72. local function checkPlayersInRange()
  73.     local character = localPlayer.Character;
  74.     if (not character or not character:FindFirstChild("HumanoidRootPart")) then
  75.         return;
  76.     end
  77.     local boxPosition = character.HumanoidRootPart.Position;
  78.     local boxSize = Vector3.new(500, 500, 500) / 2;
  79.     playerInRange = false;
  80.     for _, player in pairs(Players:GetPlayers()) do
  81.         if ((player ~= localPlayer) and player.Character and player.Character:FindFirstChild("HumanoidRootPart")) then
  82.             local playerPosition = player.Character.HumanoidRootPart.Position;
  83.             local inRange = (math.abs(playerPosition.X - boxPosition.X) <= boxSize.X) and (math.abs(playerPosition.Y - boxPosition.Y) <= boxSize.Y) and (math.abs(playerPosition.Z - boxPosition.Z) <= boxSize.Z);
  84.             if inRange then
  85.                 playerInRange = true;
  86.                 break;
  87.             end
  88.         end
  89.     end
  90.     if playerInRange then
  91.         if (timescheck == 0) then
  92.             print("有玩家在範圍內");
  93.             showNotification("somepeople in range");
  94.             savemodetime2 = 2;
  95.             savemodetime = 5;
  96.             timescheck = 1;
  97.             hasPrintedNoPlayer = true;
  98.         end
  99.     elseif (timescheck == 1) then
  100.         print("範圍內玩家已離開");
  101.         showNotification("player out of range");
  102.         timescheck = 0;
  103.         savemodetime2 = 0;
  104.         hasPrintedNoPlayer = false;
  105.     end
  106. end
  107. local function setupRangeDetection()
  108.     while true do
  109.         if isDetectionEnabled then
  110.             checkPlayersInRange();
  111.         end
  112.         wait(0.1);
  113.     end
  114. end
  115. local function toggleDetection()
  116.     isDetectionEnabled = not isDetectionEnabled;
  117.     print("檢測已" .. ((isDetectionEnabled and "啟用") or "關閉"));
  118.     if not isDetectionEnabled then
  119.         savemodetime = 3;
  120.         savemodetime2 = 0;
  121.     end
  122. end
  123. local function getGiftCountdown(index)
  124.     local gift = Online_Gift:FindFirstChild("Online_Gift" .. index);
  125.     if not gift then
  126.         return nil;
  127.     end
  128.     local countdownText = gift:FindFirstChild("按钮"):FindFirstChild("倒计时").Text;
  129.     if (countdownText == "CLAIMED!") then
  130.         return 0;
  131.     elseif (countdownText == "DONE") then
  132.         local args = {[1]=index};
  133.         game:GetService("ReplicatedStorage"):FindFirstChild("\228\186\139\228\187\182"):FindFirstChild("\229\133\172\231\148\168"):FindFirstChild("\232\138\130\230\151\165\230\180\187\229\138\168"):FindFirstChild("\233\162\134\229\143\150\229\165\150\229\138\177"):FireServer(unpack(args));
  134.         return 0;
  135.     else
  136.         local minutes, seconds = countdownText:match("^(%d+):(%d+)$");
  137.         if (minutes and seconds) then
  138.             return (tonumber(minutes) * 60) + tonumber(seconds);
  139.         end
  140.     end
  141.     return nil;
  142. end
  143. local function checkOnlineGiftcountdown()
  144.     local minCountdown = math.huge;
  145.     local Countdown = {};
  146.     for i = 1, 6 do
  147.         local totalSeconds = getGiftCountdown(i);
  148.         if totalSeconds then
  149.             Countdown[i] = totalSeconds;
  150.             OnlineGift_data[i] = totalSeconds;
  151.             if ((totalSeconds < minCountdown) and (totalSeconds > 0)) then
  152.                 minCountdown = totalSeconds;
  153.             end
  154.         else
  155.             Countdown[i] = nil;
  156.         end
  157.     end
  158.     if (minCountdown ~= math.huge) then
  159.         if localCountdownActive then
  160.             for i = 1, 6 do
  161.                 if (Countdown[i] and (Countdown[i] > 0)) then
  162.                     Countdown[i] = Countdown[i] - 1;
  163.                     local minutes = math.floor(Countdown[i] / 60);
  164.                     local seconds = Countdown[i] % 60;
  165.                     local formattedTime = string.format("%02d:%02d", minutes, seconds);
  166.                     Online_Gift:FindFirstChild("Online_Gift" .. i):FindFirstChild("按钮"):FindFirstChild("倒计时").Text = formattedTime;
  167.                 end
  168.             end
  169.             minCountdown = minCountdown - 1;
  170.         else
  171.         end
  172.     end
  173. end
  174. local function chaangeonlinegiftname()
  175.     for i = 1, 6 do
  176.         local giftName = "在线奖励0" .. i;
  177.         local gift = Online_Gift:FindFirstChild(giftName);
  178.         if gift then
  179.             gift.Name = "Online_Gift" .. tostring(gift.LayoutOrder + 1);
  180.             print("名稱已更改為:" .. gift.Name);
  181.         else
  182.             allGiftsExist = false;
  183.             break;
  184.         end
  185.     end
  186.     if allGiftsExist then
  187.         print("在線獎勵--名稱--已全部更改");
  188.     else
  189.         print("名稱已重複或部分名稱不存在");
  190.     end
  191. end
  192. local function checkTimeAndRun()
  193.     spawn(function()
  194.         while true do
  195.             local currentTime = os.time();
  196.             local utcTime = os.date("!*t", currentTime);
  197.             local utcPlus8Time = os.date("*t", currentTime + (8 * 3600));
  198.             if ((utcPlus8Time.hour == 0) and (utcPlus8Time.min == 0)) then
  199.                 print("UTC+8 時間為 00:00,開始執行更新數據...");
  200.                 spawn(function()
  201.                     allGiftsExist = true;
  202.                     chaangeonlinegiftname();
  203.                     wait(1);
  204.                     checkOnlineGiftcountdown();
  205.                 end);
  206.                 wait(60);
  207.             end
  208.             wait(1);
  209.         end
  210.     end);
  211. end
  212. checkTimeAndRun();
  213. features:Show();
  214. features:AddLabel("Author: Tseting-nil  |  Version:V4.5.1");
  215. features:AddLabel("AntiAFK:Start");
  216. features:AddLabel("Created on: 2024/09/27");
  217. features:AddLabel("Last Updated: 2025/04/01");
  218. local timeLabel = features:AddLabel("Current Time: 00/00/00 00:00:00");
  219. local timezoneLabel = features:AddLabel("Time Zone: UTC+00:00");
  220. local function getFormattedTime()
  221.     return os.date("%Y/%m/%d %H:%M:%S");
  222. end
  223. local function getLocalTimezone()
  224.     local offset = os.date("%z");
  225.     return string.format("UTC%s", offset:sub(1, 3) .. ":" .. offset:sub(4, 5));
  226. end
  227. local function updateLabel()
  228.     timeLabel.Text = "Current Time:" .. getFormattedTime();
  229.     timezoneLabel.Text = "Time Zone:" .. getLocalTimezone();
  230. end
  231. spawn(function()
  232.     while true do
  233.         updateLabel();
  234.         wait(1);
  235.     end
  236. end);
  237. local AddLabelfeatures = features:AddLabel("重生點:重生點");
  238. AddLabelfeatures.Text = "重生點:" .. RespawPoint .. " -- If TP Error.Return home and Use TP FIX button";
  239. local function Respawn_Point()
  240.     RespawPoint = loadstring(game:HttpGet("https://raw.githubusercontent.com/Tseting-nil/-Cultivation-Simulator-script/refs/heads/main/%E6%89%8B%E6%A9%9F%E7%AB%AFUI/%E9%85%8D%E7%BD%AE%E4%B8%BB%E5%A0%B4%E6%99%AF.lua"))();
  241.     AddLabelfeatures.Text = "重生點:" .. RespawPoint .. " -- If TP Error.Return home and Use TP FIX button";
  242.     print("最近的出生點:" .. RespawPoint);
  243.     RespawPointnum = RespawPoint:match("%d+");
  244.     print("重生點編號:" .. RespawPointnum);
  245.     reworld = workspace:waitForChild("主場景" .. RespawPointnum):waitForChild("重生点");
  246.     TPX, TPY, TPZ = reworld.Position.X, reworld.Position.Y + 5, reworld.Position.Z;
  247.     print("傳送座標:" .. TPX .. " " .. TPY .. " " .. TPZ);
  248.     player.Character:WaitForChild("HumanoidRootPart").CFrame = CFrame.new(TPX, TPY, TPZ);
  249. end
  250. features:AddButton("TP FIX", function()
  251.     Respawn_Point();
  252. end);
  253. local function updateButtonText()
  254.     if isDetectionEnabled then
  255.         savemodebutton.Text = "Status:Safe Mode Enabled";
  256.         showNotification("Safe Mode Enabled");
  257.     else
  258.         savemodebutton.Text = "Status:Safe Mode Disabled";
  259.         showNotification("Safe Mode Disabled");
  260.     end
  261. end
  262. savemodebutton = features:AddButton("Status:Safe Mode Enabled ", function()
  263.     inRange = false;
  264.     playerInRange = false;
  265.     timescheck = 0;
  266.     hasPrintedNoPlayer = false;
  267.     toggleDetection();
  268.     updateButtonText();
  269. end);
  270. updateButtonText();
  271. spawn(setupRangeDetection);
  272. local screenGui = Instance.new("ScreenGui");
  273. screenGui.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui");
  274. local blackBlock = Instance.new("Frame");
  275. blackBlock.Size = UDim2.new(200, 0, 200, 0);
  276. blackBlock.Position = UDim2.new(0, 0, 0, 0);
  277. blackBlock.BackgroundColor3 = Color3.fromRGB(0, 0, 0);
  278. blackBlock.Visible = false;
  279. blackBlock.Parent = screenGui;
  280. features:AddButton("Black Screen: On/Off", function()
  281.     blackBlock.Visible = not blackBlock.Visible;
  282. end);
  283. local timeLabel = features1:AddLabel("Time until auto-fetch: 0 seconds");
  284. local playerGui = game.Players.LocalPlayer.PlayerGui;
  285. local Online_Gift = playerGui.GUI:WaitForChild("二级界面"):WaitForChild("节日活动商店"):WaitForChild("背景"):WaitForChild("右侧界面"):WaitForChild("在线奖励"):WaitForChild("列表");
  286. local Gife_check = false;
  287. local countdownList = {};
  288. local hasExecutedToday = false;
  289. local lastExecutedDay = os.date("%d");
  290. local function convertToSeconds(timeText)
  291.     local minutes, seconds = string.match(timeText, "(%d+):(%d+)");
  292.     if (minutes and seconds) then
  293.         return (tonumber(minutes) * 60) + tonumber(seconds);
  294.     end
  295.     return nil;
  296. end
  297. local function GetOnlineGiftCountdown()
  298.     hasExecutedToday = true;
  299.     local minTime = math.huge;
  300.     for i = 1, 6 do
  301.         local rewardName = string.format("在线奖励%02d", i);
  302.         local rewardFolder = Online_Gift:FindFirstChild(rewardName);
  303.         if rewardFolder then
  304.             local button = rewardFolder:FindFirstChild("按钮");
  305.             local countdown = button and button:FindFirstChild("倒计时");
  306.             if countdown then
  307.                 local countdownText = countdown.Text;
  308.                 countdownList[rewardName] = countdownText;
  309.                 if string.match(countdownText, "CLAIMED!") then
  310.                 elseif string.match(countdownText, "DONE") then
  311.                     minTime = math.min(minTime, 0);
  312.                 elseif string.match(countdownText, "%d+:%d+") then
  313.                     local totalSeconds = convertToSeconds(countdownText);
  314.                     if totalSeconds then
  315.                         minTime = math.min(minTime, totalSeconds);
  316.                     end
  317.                 end
  318.             end
  319.         end
  320.     end
  321.     return ((minTime < math.huge) and minTime) or nil;
  322. end
  323. local minCountdown = GetOnlineGiftCountdown();
  324. local nowminCountdown = minCountdown;
  325. local function Online_Gift_start()
  326.     local newMinCountdown = GetOnlineGiftCountdown();
  327.     if (newMinCountdown and (newMinCountdown == minCountdown)) then
  328.         nowminCountdown = nowminCountdown - 1;
  329.     else
  330.         minCountdown = newMinCountdown;
  331.         nowminCountdown = minCountdown;
  332.     end
  333.     if (nowminCountdown and (nowminCountdown > 0)) then
  334.         timeLabel.Text = string.format("Time until auto-fetch: %d seconds", nowminCountdown);
  335.     elseif (nowminCountdown and (nowminCountdown <= 0)) then
  336.         timeLabel.Text = "Countdown complete, preparing to receive rewards";
  337.         for i = 1, 6 do
  338.             local args = {[1]=i};
  339.             game:GetService("ReplicatedStorage"):FindFirstChild("\228\186\139\228\187\182"):FindFirstChild("\229\133\172\231\148\168"):FindFirstChild("\232\138\130\230\151\165\230\180\187\229\138\168"):FindFirstChild("\233\162\134\229\143\150\229\165\150\229\138\177"):FireServer(unpack(args));
  340.         end
  341.     else
  342.         timeLabel.Text = "All rewards collected";
  343.         Gife_check = false;
  344.     end
  345. end
  346. local function Online_Gift_check()
  347.     while Gife_check do
  348.         Online_Gift_start();
  349.         wait(1);
  350.     end
  351. end
  352. features1:AddButton("Auto-collect online rewards", function()
  353.     Gife_check = true;
  354.     spawn(Online_Gift_check);
  355. end);
  356. local function CheckAllRewardsCompleted()
  357.     local allCompleted = true;
  358.     GetOnlineGiftCountdown();
  359.     for i = 1, 6 do
  360.         local rewardName = string.format("在线奖励%02d", i);
  361.         local status = countdownList[rewardName];
  362.         if (not status or not string.match(status, "DONE")) then
  363.             allCompleted = false;
  364.             break;
  365.         end
  366.     end
  367.     if allCompleted then
  368.         print("All online rewards have been collected!");
  369.         Gife_check = false;
  370.     end
  371. end
  372. spawn(function()
  373.     while Gife_check and not hasExecutedToday do
  374.         CheckAllRewardsCompleted();
  375.         wait(60);
  376.     end
  377. end);
  378. spawn(function()
  379.     while true do
  380.         local currentUTCHour = tonumber(os.date("!*t").hour);
  381.         local currentUTCDate = os.date("!*t").day;
  382.         local currentLocalHour = currentUTCHour + 8;
  383.         if (currentLocalHour >= 24) then
  384.             currentLocalHour = currentLocalHour - 24;
  385.         end
  386.         local currentLocalDate = currentUTCDate;
  387.         if (currentLocalHour == 0) then
  388.             if (lastExecutedDay ~= currentLocalDate) then
  389.                 hasExecutedToday = false;
  390.                 print("UTC+8 00:00,自動領取在線獎勳");
  391.                 Gife_check = true;
  392.                 lastExecutedDay = currentLocalDate;
  393.             end
  394.         end
  395.         wait(60);
  396.     end
  397. end);
  398. local Autocollmission = features1:AddSwitch("Auto-collect tasks (GamePass tasks and Gift)", function(bool)
  399.     Autocollmissionbool = bool;
  400.     if Autocollmissionbool then
  401.         spawn(function()
  402.             while Autocollmissionbool do
  403.                 mainmissionchack();
  404.                 everydaymission();
  405.                 gamepassmission();
  406.                 gamepassgiftget();
  407.                 wait(1);
  408.             end
  409.         end);
  410.     end
  411. end);
  412. Autocollmission:Set(false);
  413. local invest = features1:AddSwitch("Auto-execute investments", function(bool)
  414.     investbool = bool;
  415.     if investbool then
  416.         spawn(function()
  417.             while investbool do
  418.                 for i = 1, 3 do
  419.                     local args = {i};
  420.                     game:GetService("ReplicatedStorage")["\228\186\139\228\187\182"]["\229\133\172\231\148\168"]["\229\149\134\229\186\151"]["\233\147\182\232\161\140"]["\233\162\134\229\143\150\231\144\134\232\180\162"]:FireServer(unpack(args));
  421.                 end
  422.                 wait(5);
  423.                 for i = 1, 3 do
  424.                     local args = {i};
  425.                     game:GetService("ReplicatedStorage")["\228\186\139\228\187\182"]["\229\133\172\231\148\168"]["\229\149\134\229\186\151"]["\233\147\182\232\161\140"]["\232\180\173\228\185\176\231\144\134\232\180\162"]:FireServer(unpack(args));
  426.                 end
  427.                 wait(600);
  428.             end
  429.         end);
  430.     end
  431. end);
  432. invest:Set(false);
  433. local AutoCollectherbs = features1:AddSwitch("Auto-harvest herbs", function(bool)
  434.     AutoCollectherbsbool = bool;
  435.     if AutoCollectherbsbool then
  436.         spawn(function()
  437.             while AutoCollectherbsbool do
  438.                 for i = 1, 6 do
  439.                     local args = {[1]=i,[2]=nil};
  440.                     game:GetService("ReplicatedStorage")["\228\186\139\228\187\182"]["\229\133\172\231\148\168"]["\229\134\156\231\148\176"]["\233\135\135\233\155\134"]:FireServer(unpack(args));
  441.                     wait(0.1);
  442.                 end
  443.                 wait(60);
  444.             end
  445.         end);
  446.     end
  447. end);
  448. AutoCollectherbs:Set(false);
  449. features1:AddLabel("- - GamePass Unlock");
  450. local Refining = features1:AddSwitch("Unlock Auto-Crafting", function(bool)
  451.     local Refiningbool = bool;
  452.     privileges:WaitForChild("超级炼制").Value = false;
  453.     privileges:WaitForChild("自动炼制").Value = Refiningbool;
  454. end);
  455. Refining:Set(true);
  456. local showAll = features1:AddSwitch("Show all Currencies", function(bool)
  457.     ShowAllbool = bool;
  458.     if ShowAllbool then
  459.         while ShowAllbool do
  460.             game:GetService("Players").LocalPlayer.PlayerGui.GUI["\228\184\187\231\149\140\233\157\162"]["\228\184\187\229\159\142"]["\232\180\167\229\184\129\229\140\186\229\159\159"]["\230\180\187\229\138\168\231\137\169\229\147\129"].Visible = true;
  461.             game:GetService("Players").LocalPlayer.PlayerGui.GUI["\228\184\187\231\149\140\233\157\162"]["\228\184\187\229\159\142"]["\232\180\167\229\184\129\229\140\186\229\159\159"]["\231\159\191\231\159\179"].Visible = false;
  462.             game:GetService("Players").LocalPlayer.PlayerGui.GUI["\228\184\187\231\149\140\233\157\162"]["\228\184\187\229\159\142"]["\232\180\167\229\184\129\229\140\186\229\159\159"]["\231\172\166\231\159\179\231\178\137\230\156\171"].Visible = true;
  463.             game:GetService("Players").LocalPlayer.PlayerGui.GUI["\228\184\187\231\149\140\233\157\162"]["\228\184\187\229\159\142"]["\232\180\167\229\184\129\229\140\186\229\159\159"]["\231\173\137\231\186\167"].Visible = true;
  464.             game:GetService("Players").LocalPlayer.PlayerGui.GUI["\228\184\187\231\149\140\233\157\162"]["\228\184\187\229\159\142"]["\232\180\167\229\184\129\229\140\186\229\159\159"]["\231\180\171\233\146\187"].Visible = true;
  465.             game:GetService("Players").LocalPlayer.PlayerGui.GUI["\228\184\187\231\149\140\233\157\162"]["\228\184\187\229\159\142"]["\232\180\167\229\184\129\229\140\186\229\159\159"]["\232\141\137\232\141\175"].Visible = false;
  466.             game:GetService("Players").LocalPlayer.PlayerGui.GUI["\228\184\187\231\149\140\233\157\162"]["\228\184\187\229\159\142"]["\232\180\167\229\184\129\229\140\186\229\159\159"]["\233\135\145\229\184\129"].Visible = true;
  467.             game:GetService("Players").LocalPlayer.PlayerGui.GUI["\228\184\187\231\149\140\233\157\162"]["\228\184\187\229\159\142"]["\232\180\167\229\184\129\229\140\186\229\159\159"]["\233\146\187\231\159\179"].Visible = true;
  468.             wait(0.3);
  469.         end
  470.     end
  471. end);
  472. showAll:Set(false);
  473. features1:AddButton("Remove the display of the reward", function()
  474.     local target1 = playerGui.GUI:WaitForChild("二级界面"):FindFirstChild("展示奖励界面");
  475.     if target1 then
  476.         target1:Destroy();
  477.         print("成功刪除 UI 元件");
  478.     else
  479.         print("已刪除過");
  480.     end
  481. end);
  482. features1:AddButton("Redeem Game Code", function()
  483.     local gamecode = {"ilovethisgame","welcome","30klikes","40klikes","halloween","artistkapouki","45klikes","60klikes"};
  484.     for i = 1, #gamecode do
  485.         print(gamecode[i]);
  486.         local args = {[1]=gamecode[i]};
  487.         game:GetService("ReplicatedStorage"):FindFirstChild("\228\186\139\228\187\182"):FindFirstChild("\229\133\172\231\148\168"):FindFirstChild("\230\191\128\230\180\187\231\160\129"):FindFirstChild("\231\142\169\229\174\182\229\133\145\230\141\162\230\191\128\230\180\187\231\160\129"):FireServer(unpack(args));
  488.     end
  489. end);
  490. local worldnum = player:WaitForChild("值"):WaitForChild("主线进度"):WaitForChild("world").Value;
  491. local newworldnum = worldnum;
  492. local function statisticsupdata()
  493.     worldnum = player:WaitForChild("值"):WaitForChild("主线进度"):WaitForChild("world").Value;
  494. end
  495. spawn(function()
  496.     while true do
  497.         statisticsupdata();
  498.         wait(1);
  499.     end
  500. end);
  501. local infBattle_ON = false;
  502. local infBattle = 0.7;
  503. local Difficulty_choose = features2:AddLabel("Current Selection: 01");
  504. local function gowordlevelscheak(gowordlevels)
  505.     if (gowordlevels > worldnum) then
  506.         if (gowordlevels < 10) then
  507.             Difficulty_choose.Text = "Level Not Unlocked: 0" .. gowordlevels;
  508.         else
  509.             Difficulty_choose.Text = "Level Not Unlocked: " .. gowordlevels;
  510.         end
  511.     elseif (gowordlevels < 10) then
  512.         if infBattle_ON then
  513.             Difficulty_choose.Text = "Current Selection: 0" .. gowordlevels .. "    Infinite Battle Wave Set: " .. (infBattle * 100) .. " Waves";
  514.         else
  515.             Difficulty_choose.Text = "Current Selection: 0" .. gowordlevels;
  516.         end
  517.     elseif infBattle_ON then
  518.         Difficulty_choose.Text = "Current Selection: " .. gowordlevels .. "    Infinite Battle Wave Set: " .. (infBattle * 100) .. " Waves";
  519.     else
  520.         Difficulty_choose.Text = "Current Selection: " .. gowordlevels;
  521.     end
  522. end
  523. local Difficulty_selection = features2:AddDropdown("                Difficulty Level Selection                ", function(text)
  524.     if (text == "  World : 01 .. Easy") then
  525.         print("World : 01");
  526.         gowordlevels = 1;
  527.         Difficulty_choose.Text = "Current Selection: 01";
  528.     elseif (text == "  World : 21 .. Normal") then
  529.         print("World : 21");
  530.         gowordlevels = 21;
  531.         gowordlevelscheak(gowordlevels);
  532.     elseif (text == "  World : 41 .. Hard") then
  533.         print("World : 41");
  534.         gowordlevels = 41;
  535.         gowordlevelscheak(gowordlevels);
  536.     elseif (text == "  World : 61 .. Expert") then
  537.         print("World : 61");
  538.         gowordlevels = 61;
  539.         gowordlevelscheak(gowordlevels);
  540.     elseif (text == "  World : 81 .. Master") then
  541.         print("World : 81");
  542.         gowordlevels = 81;
  543.         gowordlevelscheak(gowordlevels);
  544.     elseif (text == "  World : 101") then
  545.         print("World : 101");
  546.         gowordlevels = 101;
  547.         gowordlevelscheak(gowordlevels);
  548.     elseif (text == "  Auto Max Choose") then
  549.         local showone = false;
  550.         print("Current Selection: Auto Max Level");
  551.         if (worldnum < 10) then
  552.             Difficulty_choose.Text = "Current Selection Max Level: 0" .. worldnum;
  553.         else
  554.             Difficulty_choose.Text = "Current Selection Max Level: " .. worldnum;
  555.         end
  556.         gowordlevels = worldnum;
  557.         while true do
  558.             local Difficulty_choose_Text = string.match(Difficulty_choose.Text, "Current Selection Max Level");
  559.             if (Difficulty_choose_Text ~= "Current Selection Max Level") then
  560.                 showone = false;
  561.                 print("Auto Max Level has stopped");
  562.                 break;
  563.             elseif not showone then
  564.                 print("Auto Max Level has started");
  565.                 showone = true;
  566.             end
  567.             if (newworldnum ~= worldnum) then
  568.                 gowordlevels = worldnum;
  569.                 newworldnum = worldnum;
  570.                 finishworldnum = tonumber(gowordlevels);
  571.                 if (worldnum < 10) then
  572.                     Difficulty_choose.Text = "  Current Selection Max Level: 0" .. gowordlevels;
  573.                 else
  574.                     Difficulty_choose.Text = "  Current Selection Max Level: " .. gowordlevels;
  575.                 end
  576.                 wait(savemodetime2);
  577.                 wait(savemodetime + 1);
  578.                 local args = {[1]=finishworldnum};
  579.                 game:GetService("ReplicatedStorage"):FindFirstChild("LevelData"):FindFirstChild("MaxLevel"):FireServer(unpack(args));
  580.             end
  581.             wait(1);
  582.         end
  583.     end
  584. end);
  585. local Levels1 = Difficulty_selection:Add("  World : 01 .. Easy");
  586. local Levels2 = Difficulty_selection:Add("  World : 21 .. Normal");
  587. local Levels3 = Difficulty_selection:Add("  World : 41 .. Hard");
  588. local Levels4 = Difficulty_selection:Add("  World : 61 .. Expert");
  589. local Levels5 = Difficulty_selection:Add("  World : 81 .. Master");
  590. local Levels99 = Difficulty_selection:Add("  Auto Max Choose");
  591. local Levels999 = Difficulty_selection:Add(" ... ");
  592. features2:AddButton("Select level +1", function()
  593.     gowordlevels = gowordlevels + 1;
  594.     gowordlevelscheak(gowordlevels);
  595. end);
  596. features2:AddButton("Select level -1", function()
  597.     gowordlevels = gowordlevels - 1;
  598.     gowordlevelscheak(gowordlevels);
  599. end);
  600. local decimal = 0;
  601. local function teleporttworld1()
  602.     local args = {[1]=gowordlevels};
  603.     game:GetService("ReplicatedStorage"):FindFirstChild("\228\186\139\228\187\182"):FindFirstChild("\229\133\172\231\148\168"):FindFirstChild("\229\133\179\229\141\161"):FindFirstChild("\232\191\155\229\133\165\228\184\150\231\149\140\229\133\179\229\141\161"):FireServer(unpack(args));
  604.     print("傳送世界關卡:" .. gowordlevels);
  605. end
  606. local function teleporttworld2()
  607.     finishworldnum = tonumber(gowordlevels);
  608.     local args = {[1]=finishworldnum};
  609.     game:GetService("ReplicatedStorage"):FindFirstChild("\228\186\139\228\187\182"):FindFirstChild("\229\133\172\231\148\168"):FindFirstChild("\229\133\179\229\141\161"):FindFirstChild("\232\191\155\229\133\165\228\184\150\231\149\140\229\133\179\229\141\161"):FireServer(unpack(args));
  610.     print("重啟世界關卡:" .. finishworldnum);
  611. end
  612. local function CheckRestart()
  613.     local combattext = playerGui.GUI:WaitForChild("主界面"):WaitForChild("战斗"):waitForChild("关卡信息"):waitForChild("文本").Text;
  614.     local worldstring = string.match(combattext, "World");
  615.     finishworldnum = string.match(combattext, "World (%d+)-");
  616.     local fraction = string.match(combattext, "-(%d+/%d+)");
  617.     local combatfail = playerGui.GUI:WaitForChild("主界面"):WaitForChild("战斗"):waitForChild("变强提示").Visible;
  618.     local combatimeout = playerGui.GUI:WaitForChild("主界面"):WaitForChild("战斗"):waitForChild("战斗结果图片").Visible;
  619.     if ((combatfail or combatimeout) and Autostartwarld and worldstring) then
  620.         print("戰鬥失敗,重啟");
  621.         Restart = true;
  622.     end
  623.     if fraction then
  624.         local numerator, denominator = string.match(fraction, "(%d+)/(%d+)");
  625.         decimal = tonumber(numerator) / tonumber(denominator);
  626.         if ((decimal == 1) and worldstring and Autostartwarld) then
  627.             Restart = true;
  628.         end
  629.         if ((decimal >= infBattle) and worldstring and Autostar2twarld) then
  630.             Restart = true;
  631.         end
  632.         if (Autostartwarld and Autostar2twarld) then
  633.             showNotification("Both modes turned on will only execute Endless Battle");
  634.         end
  635.     end
  636. end
  637. local function teleporthome()
  638.     wait(savemodetime2);
  639.     player.Character:WaitForChild("HumanoidRootPart").CFrame = CFrame.new(TPX, TPY, TPZ);
  640. end
  641. features2:AddButton("TP", function()
  642.     teleporttworld1();
  643. end);
  644. features2:AddLabel("!! Auto start no longer requires wave restrictions");
  645. local Autostart = features2:AddSwitch("Auto-start After Battle (World Battle)", function(bool)
  646.     Autostartwarld = bool;
  647.     if Autostartwarld then
  648.         while Autostartwarld do
  649.             CheckRestart();
  650.             if Restart then
  651.                 wait(savemodetime2);
  652.                 teleporthome();
  653.                 wait(0.5);
  654.                 wait(savemodetime);
  655.                 teleporttworld2();
  656.                 Restart = false;
  657.             end
  658.             wait(1);
  659.         end
  660.     end
  661. end);
  662. Autostart:Set(false);
  663. local Autostart2 = features2:AddSwitch("Endless Battle(Can Set)", function(bool)
  664.     Autostar2twarld = bool;
  665.     if Autostar2twarld then
  666.         infBattle_ON = true;
  667.         gowordlevelscheak(gowordlevels);
  668.         while Autostar2twarld do
  669.             CheckRestart();
  670.             if (Restart and not hasPrintedNoPlayer) then
  671.                 print("Endless battle begins, no players nearby");
  672.                 teleporttworld2();
  673.                 Restart = false;
  674.             elseif (Restart and hasPrintedNoPlayer and (decimal == 1)) then
  675.                 print("Endless battle begins, there are players nearby, execute normal mode");
  676.                 wait(savemodetime2);
  677.                 teleporthome();
  678.                 wait(0.5);
  679.                 wait(savemodetime);
  680.                 teleporttworld2();
  681.                 Restart = false;
  682.             end
  683.             wait(1);
  684.         end
  685.     else
  686.         infBattle_ON = false;
  687.         gowordlevelscheak(gowordlevels);
  688.     end
  689. end);
  690. features2:AddTextBox("Endless Battle wave setting (Default 70 Waves)", function(text)
  691.     local num = tonumber(text);
  692.     if (num and (num >= 0) and (num <= 100)) then
  693.         infBattle = num * 0.01;
  694.         print("Endless Battle wave setting: " .. text);
  695.         gowordlevelscheak(gowordlevels);
  696.     else
  697.         showNotification("Can only set a number between 0 and 100");
  698.         print("Invalid input. Please enter a number between 0 and 100.");
  699.     end
  700. end);
  701. Autostart2:Set(false);
  702. features2:AddButton("AFK Mode", function()
  703.     local AFKmod = game:GetService("Players").LocalPlayer:WaitForChild("值"):WaitForChild("设置"):WaitForChild("自动战斗");
  704.     if (AFKmod.Value == true) then
  705.         AFKmod.Value = false;
  706.     else
  707.         AFKmod.Value = true;
  708.     end
  709. end);
  710. features2:AddButton("Fast Dungeon Selection", function()
  711.     local event = game:GetService("ReplicatedStorage"):FindFirstChild("打开关卡选择", true);
  712.     if (event and event:IsA("BindableEvent")) then
  713.         event:Fire("打開煉丹爐");
  714.     end
  715. end);
  716. local httpService = game:GetService("HttpService");
  717. local player = game.Players.LocalPlayer;
  718. local filePath = "DungeonsMaxLevel.json";
  719. local updDungeonui = false;
  720. local AutoDungeonplus1 = false;
  721. local Notexecuted = true;
  722. local AutoDungeonplusonly = false;
  723. local Autofinishdungeon = false;
  724. local dungeonFunctions = {};
  725. local function extractLocalPlayerData()
  726.     if not isfile(filePath) then
  727.         error("JSON 文件不存在:" .. filePath);
  728.     end
  729.     local fileContent = readfile(filePath);
  730.     local success, data = pcall(httpService.JSONDecode, httpService, fileContent);
  731.     if not success then
  732.         error("無法解析 JSON 文件:" .. filePath);
  733.     end
  734.     local localPlayerName = player.Name;
  735.     local localPlayerData = data[localPlayerName];
  736.     if not localPlayerData then
  737.         error("LocalPlayer 的資料不存在於 JSON 文件中:" .. localPlayerName);
  738.     end
  739.     return localPlayerData;
  740. end
  741. local function saveDungeonFunctions(playerData)
  742.     for dungeonName, maxLevel in pairs(playerData) do
  743.         local functionName = dungeonName:gsub("MaxLevel", "");
  744.         dungeonFunctions[functionName] = function()
  745.             return maxLevel;
  746.         end;
  747.     end
  748. end
  749. local function updateDungeonFunctions()
  750.     local playerData = JsonHandler.getPlayerData(filePath, player.Name);
  751.     dungeonFunctions = {};
  752.     saveDungeonFunctions(playerData);
  753. end
  754. local function main()
  755.     local success, playerData = pcall(extractLocalPlayerData);
  756.     if success then
  757.         saveDungeonFunctions(playerData);
  758.         print("Dungeon 函數已成功創建");
  759.     else
  760.         warn("提取資料失敗:" .. tostring(playerData));
  761.     end
  762. end
  763. main();
  764. spawn(function()
  765.     while true do
  766.         if updDungeonui then
  767.             local dungeonChoice = playerGui:WaitForChild("GUI"):WaitForChild("二级界面"):WaitForChild("关卡选择"):WaitForChild("副本选择弹出框"):WaitForChild("背景"):WaitForChild("标题"):WaitForChild("名称").Text;
  768.             local dungeonMaxLevel = tonumber(playerGui:WaitForChild("GUI"):WaitForChild("二级界面"):WaitForChild("关卡选择"):WaitForChild("副本选择弹出框"):WaitForChild("背景"):WaitForChild("难度"):WaitForChild("难度等级"):WaitForChild("值").Text);
  769.             JsonHandler.updateDungeonMaxLevel(filePath, player.Name, dungeonChoice, dungeonMaxLevel);
  770.             updateDungeonFunctions();
  771.         end
  772.         wait(1);
  773.     end
  774. end);
  775. local playerData = JsonHandler.getPlayerData(filePath, player.Name);
  776. print("玩家初始資料:");
  777. for key, value in pairs(playerData) do
  778.     print(key, value);
  779. end
  780. local Dungeonslist = playerGui:WaitForChild("GUI"):WaitForChild("二级界面"):WaitForChild("关卡选择"):WaitForChild("背景"):WaitForChild("右侧界面"):WaitForChild("副本"):WaitForChild("列表");
  781. local dropdownchoose = 0;
  782. local dropdownchoose2 = "1";
  783. local dropdownchoose3 = 0;
  784. local function getDungeonKey(dungeonName)
  785.     local dungeon = Dungeonslist:FindFirstChild(dungeonName);
  786.     if dungeon then
  787.         local keyText = dungeon:WaitForChild("钥匙"):WaitForChild("值").Text;
  788.         local key = tonumber(string.match(keyText, "^%d+"));
  789.         if key then
  790.             return ((key < 10) and string.format("0%d", key)) or tostring(key);
  791.         end
  792.     end
  793.     return nil;
  794. end
  795. local Dungeonseventlist = playerGui:WaitForChild("GUI"):WaitForChild("二级界面"):WaitForChild("关卡选择"):WaitForChild("背景"):WaitForChild("右侧界面"):WaitForChild("活动副本"):WaitForChild("列表");
  796. local EventDungeonkey;
  797. local dungeonList = {"EasterDungeon","Halloween","ChristmasDungeon"};
  798. local foundDungeons = {};
  799. for _, dungeonName in ipairs(dungeonList) do
  800.     local dungeon = Dungeonseventlist:FindFirstChild(dungeonName);
  801.     if dungeon then
  802.         local visible = dungeon.Visible;
  803.         if visible then
  804.             table.insert(foundDungeons, dungeonName);
  805.         end
  806.     end
  807. end
  808. local function getEventDungeonkey()
  809.     if (#foundDungeons == 0) then
  810.         EventDungeonkey = "NOT OPEN";
  811.         return EventDungeonkey;
  812.     else
  813.         for _, dungeonName in ipairs(foundDungeons) do
  814.             local dungeon = Dungeonseventlist:FindFirstChild(dungeonName);
  815.             if dungeon then
  816.                 local keyObject = dungeon:FindFirstChild("钥匙");
  817.                 if keyObject then
  818.                     local keyValue = keyObject:FindFirstChild("值");
  819.                     if (keyValue and keyValue.Text) then
  820.                         local keyText = keyValue.Text;
  821.                         local key = tonumber(string.match(keyText, "^%d+"));
  822.                         EventDungeonkey = key;
  823.                         return EventDungeonkey;
  824.                     end
  825.                 end
  826.             end
  827.         end
  828.     end
  829. end
  830. local function checkDungeonkey()
  831.     Ore_Dungeonkey = getDungeonKey("OreDungeon");
  832.     Gem_Dungeonkey = getDungeonKey("GemDungeon");
  833.     Gold_Dungeonkey = getDungeonKey("GoldDungeon");
  834.     Relic_Dungeonkey = getDungeonKey("RelicDungeon");
  835.     Rune_Dungeonkey = getDungeonKey("RuneDungeon");
  836.     Hover_Dungeonkey = getDungeonKey("HoverDungeon");
  837.     Event_Dungeonkey = getEventDungeonkey();
  838. end
  839. checkDungeonkey();
  840. local chooselevels = features3:AddLabel("Dungeon Selection ...");
  841. local dropdown1 = features3:AddDropdown("Dungeon Selection ...", function(text)
  842.     if (text == "    OreDungeon    ") then
  843.         dropdownchoose = 1;
  844.         dropdownchoose2 = tostring((dungeonFunctions['OreDungeon'] and dungeonFunctions['OreDungeon']()) or "0");
  845.         chooselevels.Text = " OreDungeon,  Key:" .. Ore_Dungeonkey .. "  ,Level:" .. dropdownchoose2;
  846.     elseif (text == "    GemDungeon    ") then
  847.         dropdownchoose = 2;
  848.         dropdownchoose2 = tostring((dungeonFunctions['GemDungeon'] and dungeonFunctions['GemDungeon']()) or "0");
  849.         chooselevels.Text = " GemDungeon,  Key:" .. Gem_Dungeonkey .. "  ,Level:" .. dropdownchoose2;
  850.     elseif (text == "    RuneDungeon    ") then
  851.         dropdownchoose = 3;
  852.         dropdownchoose2 = tostring((dungeonFunctions['RuneDungeon'] and dungeonFunctions['RuneDungeon']()) or "0");
  853.         chooselevels.Text = " RuneDungeon,  Key:" .. Rune_Dungeonkey .. "  ,Level:" .. dropdownchoose2;
  854.     elseif (text == "    RelicDungeon    ") then
  855.         dropdownchoose = 4;
  856.         dropdownchoose2 = tostring((dungeonFunctions['RelicDungeon'] and dungeonFunctions['RelicDungeon']()) or "0");
  857.         chooselevels.Text = " RelicDungeon,  Key:" .. Relic_Dungeonkey .. "  ,Level:" .. dropdownchoose2;
  858.     elseif (text == "    HoverDungeon    ") then
  859.         dropdownchoose = 7;
  860.         dropdownchoose2 = tostring((dungeonFunctions['HoverDungeon'] and dungeonFunctions['HoverDungeon']()) or "0");
  861.         chooselevels.Text = " HoverDungeon,  Key:" .. Hover_Dungeonkey .. "  ,Level:" .. dropdownchoose2;
  862.     elseif (text == "    GoldDungeon    ") then
  863.         dropdownchoose = 6;
  864.         dropdownchoose2 = tostring((dungeonFunctions['GoldDungeon'] and dungeonFunctions['GoldDungeon']()) or "0");
  865.         chooselevels.Text = " GoldDungeon,  Key:" .. Gold_Dungeonkey .. "  ,Level:" .. dropdownchoose2;
  866.     elseif (text == "    EventDungeon    ") then
  867.         dropdownchoose = 9;
  868.         dropdownchoose2 = "1";
  869.         chooselevels.Text = " EventDungeon,  Key:" .. Event_Dungeonkey;
  870.     else
  871.         dropdownchoose = 8;
  872.         chooselevels.Text = "    ...    ";
  873.     end
  874. end);
  875. local Dungeon1 = dropdown1:Add("    OreDungeon    ");
  876. local Dungeon2 = dropdown1:Add("    GemDungeon    ");
  877. local Dungeon3 = dropdown1:Add("    RuneDungeon    ");
  878. local Dungeon4 = dropdown1:Add("    RelicDungeon    ");
  879. local Dungeon5 = dropdown1:Add("    HoverDungeon    ");
  880. local Dungeon6 = dropdown1:Add("    GoldDungeon    ");
  881. local Dungeon7 = dropdown1:Add("    EventDungeon    ");
  882. local Dungeon8 = dropdown1:Add("    ...    ");
  883. local function UDPDungeontext()
  884.     if (dropdownchoose == 0) then
  885.         chooselevels.Text = "Dungeon Selection ...";
  886.     elseif (dropdownchoose == 1) then
  887.         dropdownchoose2 = tostring((dungeonFunctions['OreDungeon'] and dungeonFunctions['OreDungeon']()) or "0");
  888.         chooselevels.Text = " OreDungeon,  Key:" .. Ore_Dungeonkey .. "  ,Level:" .. dropdownchoose2;
  889.     elseif (dropdownchoose == 2) then
  890.         dropdownchoose2 = tostring((dungeonFunctions['GemDungeon'] and dungeonFunctions['GemDungeon']()) or "0");
  891.         chooselevels.Text = " GemDungeon,  Key:" .. Gem_Dungeonkey .. "  ,Level:" .. dropdownchoose2;
  892.     elseif (dropdownchoose == 3) then
  893.         dropdownchoose2 = tostring((dungeonFunctions['RuneDungeon'] and dungeonFunctions['RuneDungeon']()) or "0");
  894.         chooselevels.Text = " RuneDungeon,  Key:" .. Rune_Dungeonkey .. "  ,Level:" .. dropdownchoose2;
  895.     elseif (dropdownchoose == 4) then
  896.         dropdownchoose2 = tostring((dungeonFunctions['RelicDungeon'] and dungeonFunctions['RelicDungeon']()) or "0");
  897.         chooselevels.Text = " RelicDungeon,  Key:" .. Relic_Dungeonkey .. "  ,Level:" .. dropdownchoose2;
  898.     elseif (dropdownchoose == 7) then
  899.         dropdownchoose2 = tostring((dungeonFunctions['HoverDungeon'] and dungeonFunctions['HoverDungeon']()) or "0");
  900.         chooselevels.Text = " HoverDungeon,  Key:" .. Hover_Dungeonkey .. "  ,Level:" .. dropdownchoose2;
  901.     elseif (dropdownchoose == 6) then
  902.         dropdownchoose2 = tostring((dungeonFunctions['GoldDungeon'] and dungeonFunctions['GoldDungeon']()) or "0");
  903.         chooselevels.Text = " GoldDungeon,  Key:" .. Gold_Dungeonkey .. "  ,Level:" .. dropdownchoose2;
  904.     elseif (dropdownchoose == 9) then
  905.         chooselevels.Text = " EventDungeon,  Key:" .. Event_Dungeonkey;
  906.     elseif (dropdownchoose == 8) then
  907.         chooselevels.Text = "    ...    ";
  908.     end
  909. end
  910. local function UDPDungeonchoose()
  911.     checkDungeonkey();
  912.     Dungeon1.Text = "      OreDungeon             Key:" .. Ore_Dungeonkey .. "  ";
  913.     Dungeon2.Text = "      GemDungeon          Key:" .. Gem_Dungeonkey .. "  ";
  914.     Dungeon3.Text = "      RuneDungeon         Key:" .. Rune_Dungeonkey .. "  ";
  915.     Dungeon4.Text = "      RelicDungeon          Key:" .. Relic_Dungeonkey .. "  ";
  916.     Dungeon5.Text = "      HoverDungeon        Key:" .. Hover_Dungeonkey .. "  ";
  917.     Dungeon6.Text = "      GoldDungeon           Key:" .. Gold_Dungeonkey .. "  ";
  918.     Dungeon7.Text = "      EventDungeon         Key:" .. Event_Dungeonkey .. "  ";
  919. end
  920. spawn(function()
  921.     while true do
  922.         UDPDungeonchoose();
  923.         UDPDungeontext();
  924.         wait(0.5);
  925.     end
  926. end);
  927. local updDungeonuiSwitch = features3:AddSwitch("Sync dungeon entry interface difficulty", function(bool)
  928.     updDungeonui = bool;
  929. end);
  930. updDungeonuiSwitch:Set(false);
  931. local function updateDungeonLevel(dungeonName, dataField, newLevel)
  932.     JsonHandler.updatePlayerData(filePath, player.Name, {[dataField]=newLevel});
  933.     updateDungeonFunctions();
  934.     print("更新後的 " .. dungeonName .. " 等級:", dungeonFunctions[dungeonName]());
  935. end
  936. local function adjustDungeonLevel(adjustment)
  937.     local newLevel = dropdownchoose2 + adjustment;
  938.     local dungeonMapping = {[1]={name="OreDungeon",field="OreDungeonMaxLevel"},[2]={name="GemDungeon",field="GemDungeonMaxLevel"},[3]={name="RuneDungeon",field="RuneDungeonMaxLevel"},[4]={name="RelicDungeon",field="RelicDungeonMaxLevel"},[7]={name="HoverDungeon",field="HoverDungeonMaxLevel"},[6]={name="GoldDungeon",field="GoldDungeonMaxLevel"}};
  939.     local dungeon = dungeonMapping[dropdownchoose];
  940.     if dungeon then
  941.         updateDungeonLevel(dungeon.name, dungeon.field, newLevel);
  942.     else
  943.         print("未選擇地下城");
  944.     end
  945. end
  946. local function DungeonTP()
  947.     local dropdownTP = tonumber(dropdownchoose2);
  948.     local args = {[1]=dropdownchoose,[2]=dropdownTP};
  949.     game:GetService("ReplicatedStorage"):FindFirstChild("\228\186\139\228\187\182"):FindFirstChild("\229\133\172\231\148\168"):FindFirstChild("\229\137\175\230\156\172"):FindFirstChild("\232\191\155\229\133\165\229\137\175\230\156\172"):FireServer(unpack(args));
  950. end
  951. local dungeonList = {"Ore Dungeon","Gem Dungeon","Rune Dungeon","Relic Dungeon","Hover Dungeon","Gold Dungeon"};
  952. local dungeonKeys = {["Ore Dungeon"]="OreDungeon",["Gem Dungeon"]="GemDungeon",["Rune Dungeon"]="RuneDungeon",["Relic Dungeon"]="RelicDungeon",["Hover Dungeon"]="HoverDungeon",["Gold Dungeon"]="GoldDungeon"};
  953. local changeDungeon = false;
  954. local function getDungeonWithMostKeys()
  955.     changeDungeon = true;
  956.     local maxKeys = 0;
  957.     local bestDungeon = nil;
  958.     local bestDropdownIndex = 1;
  959.     local dropdownMapping = {1,2,3,4,7,6};
  960.     for i, name in ipairs(dungeonList) do
  961.         local keyCount = tonumber(getDungeonKey(dungeonKeys[name])) or 0;
  962.         if (keyCount > maxKeys) then
  963.             maxKeys = keyCount;
  964.             bestDungeon = name;
  965.             bestDropdownIndex = dropdownMapping[i] or 0;
  966.         end
  967.     end
  968.     return bestDungeon, bestDropdownIndex;
  969. end
  970. local function selectDungeonWithMostKeys()
  971.     local bestDungeon, bestDropdownIndex = getDungeonWithMostKeys();
  972.     dropdownchoose = bestDropdownIndex;
  973.     local dungeonName = bestDungeon;
  974.     local dungeonLevel = tostring(dungeonFunctions[dungeonKeys[dungeonName]]() or "0");
  975.     print("已選擇最多鑰匙的地下城:" .. dungeonName);
  976.     showNotification("ChangeDungeon:" .. dungeonName);
  977.     wait(0.5);
  978.     wait(savemodetime2);
  979.     DungeonTP();
  980. end
  981. local function AutostartDungeonf()
  982.     local Dungeonuilevel = playerGui.GUI:WaitForChild("主界面"):WaitForChild("战斗"):WaitForChild("关卡信息"):WaitForChild("文本").Text;
  983.     local dungeonNametext = string.match(Dungeonuilevel, "^(.-)%s%d");
  984.     if (dungeonNametext == "Ore Dungeon") then
  985.         local lastKeysCount = getDungeonKey("OreDungeon");
  986.         local lastKeysCount1 = tonumber(lastKeysCount);
  987.         local currentKeysCount = tonumber(string.match(Dungeonuilevel, "Keys:%s*(%d+)"));
  988.         if ((lastKeysCount1 ~= currentKeysCount) and (lastKeysCount1 > 0)) then
  989.             if (AutoDungeonplus1 and not changeDungeon) then
  990.                 adjustDungeonLevel(1);
  991.             end
  992.             changeDungeon = false;
  993.             wait(savemodetime2);
  994.             teleporthome();
  995.             wait(0.5);
  996.             wait(savemodetime);
  997.             DungeonTP();
  998.         elseif ((lastKeysCount1 == 0) and Autofinishdungeon) then
  999.             if (lastKeysCount1 ~= currentKeysCount) then
  1000.                 if (AutoDungeonplus1 and not AutoDungeonplusonly) then
  1001.                     adjustDungeonLevel(1);
  1002.                     AutoDungeonplusonly = true;
  1003.                     wait(3);
  1004.                     AutoDungeonplusonly = false;
  1005.                 end
  1006.             end
  1007.             print("已啟用自動完成地下城");
  1008.             selectDungeonWithMostKeys();
  1009.         end
  1010.     elseif (dungeonNametext == "Gem Dungeon") then
  1011.         local lastKeysCount = getDungeonKey("GemDungeon");
  1012.         local lastKeysCount1 = tonumber(lastKeysCount);
  1013.         local currentKeysCount = tonumber(string.match(Dungeonuilevel, "Keys:%s*(%d+)"));
  1014.         if ((lastKeysCount1 ~= currentKeysCount) and (lastKeysCount1 > 0)) then
  1015.             if (AutoDungeonplus1 and not changeDungeon) then
  1016.                 adjustDungeonLevel(1);
  1017.             end
  1018.             changeDungeon = false;
  1019.             wait(savemodetime2);
  1020.             teleporthome();
  1021.             wait(0.5);
  1022.             wait(savemodetime);
  1023.             DungeonTP();
  1024.         elseif ((lastKeysCount1 == 0) and Autofinishdungeon) then
  1025.             if (lastKeysCount1 ~= currentKeysCount) then
  1026.                 if (AutoDungeonplus1 and not AutoDungeonplusonly) then
  1027.                     adjustDungeonLevel(1);
  1028.                     AutoDungeonplusonly = true;
  1029.                     wait(3);
  1030.                     AutoDungeonplusonly = false;
  1031.                 end
  1032.             end
  1033.             print("已啟用自動完成地下城");
  1034.             selectDungeonWithMostKeys();
  1035.         end
  1036.     elseif (dungeonNametext == "Rune Dungeon") then
  1037.         local lastKeysCount = getDungeonKey("RuneDungeon");
  1038.         local lastKeysCount1 = tonumber(lastKeysCount);
  1039.         local currentKeysCount = tonumber(string.match(Dungeonuilevel, "Keys:%s*(%d+)"));
  1040.         if ((lastKeysCount1 ~= currentKeysCount) and (lastKeysCount1 > 0)) then
  1041.             if (AutoDungeonplus1 and not changeDungeon) then
  1042.                 adjustDungeonLevel(1);
  1043.             end
  1044.             changeDungeon = false;
  1045.             wait(savemodetime2);
  1046.             teleporthome();
  1047.             wait(0.5);
  1048.             wait(savemodetime);
  1049.             DungeonTP();
  1050.         elseif ((lastKeysCount1 == 0) and Autofinishdungeon) then
  1051.             if (lastKeysCount1 ~= currentKeysCount) then
  1052.                 if (AutoDungeonplus1 and not AutoDungeonplusonly) then
  1053.                     adjustDungeonLevel(1);
  1054.                     AutoDungeonplusonly = true;
  1055.                     wait(3);
  1056.                     AutoDungeonplusonly = false;
  1057.                 end
  1058.             end
  1059.             print("已啟用自動完成地下城");
  1060.             selectDungeonWithMostKeys();
  1061.         end
  1062.     elseif (dungeonNametext == "Relic Dungeon") then
  1063.         local lastKeysCount = getDungeonKey("RelicDungeon");
  1064.         local lastKeysCount1 = tonumber(lastKeysCount);
  1065.         local currentKeysCount = tonumber(string.match(Dungeonuilevel, "Keys:%s*(%d+)"));
  1066.         if ((lastKeysCount1 ~= currentKeysCount) and (lastKeysCount1 > 0)) then
  1067.             if (AutoDungeonplus1 and not changeDungeon) then
  1068.                 adjustDungeonLevel(1);
  1069.             end
  1070.             changeDungeon = false;
  1071.             wait(savemodetime2);
  1072.             teleporthome();
  1073.             wait(0.5);
  1074.             wait(savemodetime);
  1075.             DungeonTP();
  1076.         elseif ((lastKeysCount1 == 0) and Autofinishdungeon) then
  1077.             if (lastKeysCount1 ~= currentKeysCount) then
  1078.                 if (AutoDungeonplus1 and not AutoDungeonplusonly) then
  1079.                     adjustDungeonLevel(1);
  1080.                     AutoDungeonplusonly = true;
  1081.                     wait(3);
  1082.                     AutoDungeonplusonly = false;
  1083.                 end
  1084.             end
  1085.             print("已啟用自動完成地下城");
  1086.             selectDungeonWithMostKeys();
  1087.         end
  1088.     elseif (dungeonNametext == "Hover Dungeon") then
  1089.         local lastKeysCount = getDungeonKey("HoverDungeon");
  1090.         local lastKeysCount1 = tonumber(lastKeysCount);
  1091.         local currentKeysCount = tonumber(string.match(Dungeonuilevel, "Keys:%s*(%d+)"));
  1092.         if ((lastKeysCount1 ~= currentKeysCount) and (lastKeysCount1 > 0)) then
  1093.             if (AutoDungeonplus1 and not changeDungeon) then
  1094.                 adjustDungeonLevel(1);
  1095.             end
  1096.             changeDungeon = false;
  1097.             wait(savemodetime2);
  1098.             teleporthome();
  1099.             wait(0.5);
  1100.             wait(savemodetime);
  1101.             DungeonTP();
  1102.         elseif ((lastKeysCount1 == 0) and Autofinishdungeon) then
  1103.             if (lastKeysCount1 ~= currentKeysCount) then
  1104.                 if (AutoDungeonplus1 and not AutoDungeonplusonly) then
  1105.                     adjustDungeonLevel(1);
  1106.                     AutoDungeonplusonly = true;
  1107.                     wait(3);
  1108.                     AutoDungeonplusonly = false;
  1109.                 end
  1110.             end
  1111.             print("已啟用自動完成地下城");
  1112.             selectDungeonWithMostKeys();
  1113.         end
  1114.     elseif (dungeonNametext == "Gold Dungeon") then
  1115.         local lastKeysCount = getDungeonKey("GoldDungeon");
  1116.         local lastKeysCount1 = tonumber(lastKeysCount);
  1117.         local currentKeysCount = tonumber(string.match(Dungeonuilevel, "Keys:%s*(%d+)"));
  1118.         if ((lastKeysCount1 ~= currentKeysCount) and (lastKeysCount1 > 0)) then
  1119.             if (AutoDungeonplus1 and not changeDungeon) then
  1120.                 adjustDungeonLevel(1);
  1121.             end
  1122.             changeDungeon = false;
  1123.             wait(savemodetime2);
  1124.             teleporthome();
  1125.             wait(0.5);
  1126.             wait(savemodetime);
  1127.             DungeonTP();
  1128.         elseif ((lastKeysCount1 == 0) and Autofinishdungeon) then
  1129.             if (lastKeysCount1 ~= currentKeysCount) then
  1130.                 if (AutoDungeonplus1 and not AutoDungeonplusonly) then
  1131.                     adjustDungeonLevel(1);
  1132.                     AutoDungeonplusonly = true;
  1133.                     wait(3);
  1134.                     AutoDungeonplusonly = false;
  1135.                 end
  1136.             end
  1137.             print("已啟用自動完成地下城");
  1138.             selectDungeonWithMostKeys();
  1139.         end
  1140.     end
  1141. end
  1142. local AutostartDungeonSwitch = features3:AddSwitch("Auto-start After Battle (Dungeon) -- Victory Required", function(bool)
  1143.     AutostartDungeon = bool;
  1144.     if AutostartDungeon then
  1145.         while AutostartDungeon do
  1146.             AutostartDungeonf();
  1147.             wait(0.5);
  1148.         end
  1149.     end
  1150. end);
  1151. AutostartDungeonSwitch:Set(false);
  1152. local AutoDungeonplus1Switch = features3:AddSwitch("Automatically Increase Level by +1 After Battle", function(bool)
  1153.     AutoDungeonplus1 = bool;
  1154. end);
  1155. AutoDungeonplus1Switch:Set(false);
  1156. features3:AddLabel("If open ,When no keys, it will change to other dungeon");
  1157. local AutofinishdungeonSwitch = features3:AddSwitch("Complete All Dungeons ", function(bool)
  1158.     Autofinishdungeon = bool;
  1159. end);
  1160. AutofinishdungeonSwitch:Set(false);
  1161. features3:AddTextBox("You can also manually input the level", function(text)
  1162.     local dropdownchoose0 = string.gsub(text, "[^%d]", "");
  1163.     local dropdownchoose3 = tonumber(dropdownchoose0);
  1164.     if not dropdownchoose3 then
  1165.         dropdownchoose3 = 1;
  1166.     end
  1167.     if (dropdownchoose == 1) then
  1168.         local field = "OreDungeonMaxLevel";
  1169.         JsonHandler.updateField(filePath, player.Name, field, dropdownchoose3);
  1170.         updateDungeonFunctions();
  1171.     elseif (dropdownchoose == 2) then
  1172.         local field = "GemDungeonMaxLevel";
  1173.         JsonHandler.updateField(filePath, player.Name, field, dropdownchoose3);
  1174.         updateDungeonFunctions();
  1175.     elseif (dropdownchoose == 3) then
  1176.         local field = "RuneDungeonMaxLevel";
  1177.         JsonHandler.updateField(filePath, player.Name, field, dropdownchoose3);
  1178.         updateDungeonFunctions();
  1179.     elseif (dropdownchoose == 4) then
  1180.         local field = "RelicDungeonMaxLevel";
  1181.         JsonHandler.updateField(filePath, player.Name, field, dropdownchoose3);
  1182.         updateDungeonFunctions();
  1183.     elseif (dropdownchoose == 5) then
  1184.         local field = "HoverDungeonMaxLevel";
  1185.         JsonHandler.updateField(filePath, player.Name, field, dropdownchoose3);
  1186.         updateDungeonFunctions();
  1187.     elseif (dropdownchoose == 6) then
  1188.         local field = "GoldDungeonMaxLevel";
  1189.         JsonHandler.updateField(filePath, player.Name, field, dropdownchoose3);
  1190.         updateDungeonFunctions();
  1191.     else
  1192.         print("未選擇地下城");
  1193.     end
  1194. end);
  1195. features3:AddButton("Level Selection +1", function()
  1196.     adjustDungeonLevel(1);
  1197. end);
  1198. features3:AddButton("Level Selection -1", function()
  1199.     adjustDungeonLevel(-1);
  1200. end);
  1201. features3:AddButton("TP", function()
  1202.     if ((Event_Dungeonkey == "NOT OPEN") and (dropdownchoose == 9)) then
  1203.         print("Event Dungeon Not Open");
  1204.         return;
  1205.     else
  1206.         DungeonTP();
  1207.     end
  1208. end);
  1209. local AutoelixirSwitch = features4:AddSwitch("Auto Elixir ", function(bool)
  1210.     Autoelixir = bool;
  1211.     if Autoelixir then
  1212.         while Autoelixir do
  1213.             local elixirspand = playerGui.GUI:WaitForChild("二级界面"):WaitForChild("炼丹炉"):WaitForChild("背景"):WaitForChild("形象"):WaitForChild("制作"):WaitForChild("按钮"):WaitForChild("数量区"):WaitForChild("价格").text;
  1214.             elixirspand = tonumber(elixirspand);
  1215.             local elixirnum = player:WaitForChild("值"):WaitForChild("货币"):WaitForChild("草药").Value;
  1216.             if (elixirnum >= elixirspand) then
  1217.                 game:GetService("ReplicatedStorage"):FindFirstChild("\228\186\139\228\187\182"):FindFirstChild("\229\133\172\231\148\168"):FindFirstChild("\231\130\188\228\184\185"):FindFirstChild("\229\136\182\228\189\156"):FireServer();
  1218.             else
  1219.                 print("草药不足");
  1220.             end
  1221.             wait(1);
  1222.         end
  1223.     end
  1224. end);
  1225. AutoelixirSwitch:Set(false);
  1226. local AutoelixirabsorbSwitch = features4:AddSwitch("Auto Absorb Elixir⚠️All Elixir in the backpack⚠️)", function(bool)
  1227.     Autoelixirabsorb = bool;
  1228.     if Autoelixirabsorb then
  1229.         while Autoelixirabsorb do
  1230.             local pllayerbag = playerGui.GUI:WaitForChild("二级界面"):waitForChild("主角"):WaitForChild("背景"):waitForChild("右侧界面"):WaitForChild("丹药"):waitForChild("背包区域"):WaitForChild("积分"):waitForChild("文本").text;
  1231.             if (pllayerbag ~= "0") then
  1232.                 game:GetService("ReplicatedStorage"):FindFirstChild("\228\186\139\228\187\182"):FindFirstChild("\229\133\172\231\148\168"):FindFirstChild("\228\184\185\232\141\175"):FindFirstChild("\229\144\184\230\148\182\229\133\168\233\131\168"):FireServer();
  1233.             end
  1234.             wait(1.5);
  1235.         end
  1236.     end
  1237. end);
  1238. AutoelixirabsorbSwitch:Set(false);
  1239. local player = game:GetService("Players").LocalPlayer;
  1240. local playerGui = game.Players.LocalPlayer.PlayerGui;
  1241. local lotteryskill = playerGui.GUI:WaitForChild("二级界面"):WaitForChild("商店"):WaitForChild("背景"):WaitForChild("右侧界面"):WaitForChild("召唤"):WaitForChild("技能");
  1242. local skilllevel = lotteryskill:WaitForChild("等级区域"):WaitForChild("值").text;
  1243. skilllevel = string.gsub(skilllevel, "%D", "");
  1244. local skilllevel2 = lotteryskill:WaitForChild("等级区域"):WaitForChild("进度条"):WaitForChild("值"):WaitForChild("值").text;
  1245. skilllevel2 = string.match(skilllevel2, "(%d+)/");
  1246. local lotteryweapon = playerGui.GUI:WaitForChild("二级界面"):WaitForChild("商店"):WaitForChild("背景"):WaitForChild("右侧界面"):WaitForChild("召唤"):WaitForChild("法宝");
  1247. local weaponlevel = lotteryweapon:WaitForChild("等级区域"):WaitForChild("值").text;
  1248. weaponlevel = string.gsub(weaponlevel, "%D", "");
  1249. local weaponlevel2 = lotteryweapon:WaitForChild("等级区域"):WaitForChild("进度条"):WaitForChild("值"):WaitForChild("值").text;
  1250. weaponlevel2 = string.match(weaponlevel2, "(%d+)/");
  1251. local currency = player:WaitForChild("值"):WaitForChild("货币");
  1252. local diamonds = currency:WaitForChild("钻石");
  1253. local sword_tickets = currency:WaitForChild("法宝抽奖券").value;
  1254. local skill_tickets = currency:WaitForChild("技能抽奖券").value;
  1255. local useDiamonds = false;
  1256. local Autolotteryspeed = 0.3;
  1257. local canstartticket = true;
  1258. local canstartticket2 = true;
  1259. local function updData()
  1260.     skilllevel = lotteryskill:WaitForChild("等级区域"):WaitForChild("值").text;
  1261.     skilllevel = string.gsub(skilllevel, "%D", "") or 0;
  1262.     skilllevel2 = lotteryskill:WaitForChild("等级区域"):WaitForChild("进度条"):WaitForChild("值"):WaitForChild("值").text;
  1263.     skilllevel2 = string.match(skilllevel2, "(%d+)/") or 0;
  1264.     weaponlevel = lotteryweapon:WaitForChild("等级区域"):WaitForChild("值").text;
  1265.     weaponlevel = string.gsub(weaponlevel, "%D", "") or 0;
  1266.     weaponlevel2 = lotteryweapon:WaitForChild("等级区域"):WaitForChild("进度条"):WaitForChild("值"):WaitForChild("值").text;
  1267.     weaponlevel2 = string.match(weaponlevel2, "(%d+)/") or 0;
  1268.     diamonds = currency:WaitForChild("钻石").value;
  1269.     sword_tickets = currency:WaitForChild("法宝抽奖券").value;
  1270.     skill_tickets = currency:WaitForChild("技能抽奖券").value;
  1271.     print("技能等級:" .. skilllevel .. "技能進度:" .. skilllevel2);
  1272.     print("法寶等級:" .. weaponlevel .. "法寶進度:" .. weaponlevel2);
  1273.     print("鑽石:" .. diamonds .. "法寶抽獎券:" .. sword_tickets .. "技能抽獎券:" .. skill_tickets);
  1274. end
  1275. local function useskill_ticket()
  1276.     print("抽獎:技能");
  1277.     if canstartticket then
  1278.         local args = {[1]="\230\138\128\232\131\189"};
  1279.         game:GetService("ReplicatedStorage"):FindFirstChild("\228\186\139\228\187\182"):FindFirstChild("\229\133\172\231\148\168"):FindFirstChild("\229\149\134\229\186\151"):FindFirstChild("\229\143\172\229\148\164"):FindFirstChild("\230\138\189\229\165\150"):FireServer(unpack(args));
  1280.     end
  1281. end
  1282. local function usesword_ticket()
  1283.     print("抽獎:法寶");
  1284.     if canstartticket2 then
  1285.         local args = {[1]="\230\179\149\229\174\157"};
  1286.         game:GetService("ReplicatedStorage"):FindFirstChild("\228\186\139\228\187\182"):FindFirstChild("\229\133\172\231\148\168"):FindFirstChild("\229\149\134\229\186\151"):FindFirstChild("\229\143\172\229\148\164"):FindFirstChild("\230\138\189\229\165\150"):FireServer(unpack(args));
  1287.     end
  1288. end
  1289. local function Compareskilltickets()
  1290.     if ((skill_tickets <= 8) and useDiamonds) then
  1291.         if (diamonds >= 400) then
  1292.             local compare = 8 - tonumber(skill_tickets);
  1293.             print("技能抽獎券不足,使用鑽石補足:" .. compare .. "張");
  1294.             print("鑽石消耗:" .. (compare * 50));
  1295.             useskill_ticket();
  1296.         else
  1297.             print("鑽石不足");
  1298.         end
  1299.     elseif (skill_tickets >= 8) then
  1300.         print("技能抽獎券足夠");
  1301.         useskill_ticket();
  1302.     else
  1303.         print("技能抽獎券不足且沒開啟鑽石補足");
  1304.     end
  1305. end
  1306. local function Compareweapentickets()
  1307.     if ((sword_tickets <= 8) and useDiamonds) then
  1308.         if (diamonds > 400) then
  1309.             local compare = 8 - tonumber(sword_tickets);
  1310.             print("法寶抽獎券不足,使用鑽石補足:" .. compare .. "張");
  1311.             print("鑽石消耗:" .. (compare * 50));
  1312.             usesword_ticket();
  1313.         else
  1314.             print("鑽石不足");
  1315.         end
  1316.     elseif (sword_tickets >= 8) then
  1317.         print("法寶抽獎券足夠");
  1318.         usesword_ticket();
  1319.     else
  1320.         print("法寶抽獎券不足且沒開啟鑽石補足");
  1321.     end
  1322. end
  1323. local function Compareprogress()
  1324.     if (skilllevel2 > weaponlevel2) then
  1325.         print("法寶進度小於技能進度");
  1326.         Compareweapentickets();
  1327.     elseif (skilllevel2 < weaponlevel2) then
  1328.         print("技能進度小於法寶進度");
  1329.         Compareskilltickets();
  1330.     else
  1331.         print("技能進度等於法寶進度");
  1332.         spawn(function()
  1333.             Compareskilltickets();
  1334.         end);
  1335.         Compareweapentickets();
  1336.     end
  1337. end
  1338. local function Comparelevel()
  1339.     updData();
  1340.     if (skilllevel > weaponlevel) then
  1341.         usesword_ticket();
  1342.         print("法寶等級小於技能等級");
  1343.     elseif (skilllevel < weaponlevel) then
  1344.         useskill_ticket();
  1345.         print("技能等級小於法寶等級");
  1346.     else
  1347.         print("技能等級等於法寶等級");
  1348.         Compareprogress();
  1349.     end
  1350. end
  1351. features4:AddLabel("⚠️If lottery tickets are insufficient, it will stop");
  1352. local lotterynum = features4:AddLabel("Weapon Tickets: " .. sword_tickets .. "  Skill Tickets: " .. skill_tickets);
  1353. local function updateExtractedValues()
  1354.     local sword_ticketslable = currency:WaitForChild("法宝抽奖券").value;
  1355.     local skill_ticketslable = currency:WaitForChild("技能抽奖券").value;
  1356.     lotterynum.Text = "Weapon Tickets: " .. sword_ticketslable .. "  Skill Tickets: " .. skill_ticketslable;
  1357. end
  1358. spawn(function()
  1359.     while true do
  1360.         updateExtractedValues();
  1361.         wait(1);
  1362.     end
  1363. end);
  1364. local AutolotterySwitch = features4:AddSwitch("Auto Draw Weapons/Skills -- Need Fix", function(bool)
  1365.     Autolottery = bool;
  1366.     if Autolottery then
  1367.         canstartticket = true;
  1368.         canstartticket2 = true;
  1369.         while Autolottery do
  1370.             Comparelevel();
  1371.             wait(Autolotteryspeed);
  1372.             wait(0.4);
  1373.         end
  1374.     else
  1375.         canstartticket = false;
  1376.         canstartticket2 = false;
  1377.     end
  1378. end);
  1379. AutolotterySwitch:Set(false);
  1380. local USEDiamondSwitch = features4:AddSwitch("Enable Diamond Draw", function(bool)
  1381.     useDiamonds = bool;
  1382. end);
  1383. USEDiamondSwitch:Set(false);
  1384. local AutoupdFlyingSwordSwitch = features5:AddSwitch("Upd Flying Sword", function(bool)
  1385.     AutoupdFlyingSword = bool;
  1386.     if AutoupdFlyingSword then
  1387.         while AutoupdFlyingSword do
  1388.             game:GetService("ReplicatedStorage"):FindFirstChild("\228\186\139\228\187\182"):FindFirstChild("\229\133\172\231\148\168"):FindFirstChild("\233\163\158\229\137\145"):FindFirstChild("\229\141\135\231\186\167"):FireServer();
  1389.             wait(0.2);
  1390.         end
  1391.     end
  1392. end);
  1393. AutoupdFlyingSwordSwitch:Set(false);
  1394. local AutoupdskillSwordSwitch = features5:AddSwitch("Upd weapon/skill", function(bool)
  1395.     AutoupdskillSword = bool;
  1396.     if AutoupdskillSword then
  1397.         while AutoupdskillSword do
  1398.             game:GetService("ReplicatedStorage"):FindFirstChild("\228\186\139\228\187\182"):FindFirstChild("\229\133\172\231\148\168"):FindFirstChild("\230\179\149\229\174\157"):FindFirstChild("\229\141\135\231\186\167\229\133\168\233\131\168\230\179\149\229\174\157"):FireServer();
  1399.             game:GetService("ReplicatedStorage"):FindFirstChild("\228\186\139\228\187\182"):FindFirstChild("\229\133\172\231\148\168"):FindFirstChild("\230\138\128\232\131\189"):FindFirstChild("\229\141\135\231\186\167\229\133\168\233\131\168\230\138\128\232\131\189"):FireServer();
  1400.             wait(1.5);
  1401.         end
  1402.     end
  1403. end);
  1404. AutoupdskillSwordSwitch:Set(false);
  1405. local AutoupdRuneSwordSwitch = features5:AddSwitch("Upd Rune", function(bool)
  1406.     AutoupdRuneSwordSwitch = bool;
  1407.     if AutoupdRuneSwordSwitch then
  1408.         while AutoupdRuneSwordSwitch do
  1409.             game:GetService("ReplicatedStorage"):FindFirstChild("\228\186\139\228\187\182"):FindFirstChild("\229\133\172\231\148\168"):FindFirstChild("\233\152\181\230\179\149"):FindFirstChild("\229\141\135\231\186\167"):FireServer();
  1410.             wait(0.2);
  1411.         end
  1412.     end
  1413. end);
  1414. AutoupdRuneSwordSwitch:Set(false);
  1415. local Guidename = playerGui.GUI:WaitForChild("二级界面"):WaitForChild("公会"):WaitForChild("背景"):WaitForChild("右侧界面"):WaitForChild("主页"):WaitForChild("介绍"):waitForChild("名称"):waitForChild("文本"):waitForChild("文本").Text;
  1416. local Donatetimes = playerGui.GUI:WaitForChild("二级界面"):WaitForChild("公会"):WaitForChild("捐献"):WaitForChild("背景"):WaitForChild("按钮"):WaitForChild("确定按钮"):WaitForChild("次数").Text;
  1417. local Donatetimesnumber = tonumber(string.match(Donatetimes, "%d+"));
  1418. local Guildname = features5:AddLabel("Guide Name:Need chack Upd Guide" .. " || Contribute times: " .. Donatetimesnumber);
  1419. features5:AddButton("Upd Guide", function()
  1420.     local replicatedStorage = game:GetService("ReplicatedStorage");
  1421.     local event = replicatedStorage:FindFirstChild("打开公会", true);
  1422.     event:Fire("打开公会");
  1423.     wait(0.5);
  1424.     Donatetimes = playerGui.GUI:WaitForChild("二级界面"):WaitForChild("公会"):WaitForChild("捐献"):WaitForChild("背景"):WaitForChild("按钮"):WaitForChild("确定按钮"):WaitForChild("次数").Text;
  1425.     Donatetimesnumber = tonumber(string.match(Donatetimes, "%d+"));
  1426.     Guildname.Text = "Guide Name:" .. Guidename .. " || Contribute times: " .. Donatetimesnumber;
  1427. end);
  1428. local AutoDonateSwitch = features5:AddSwitch("Auto Contribute", function(bool)
  1429.     AutoDonate = bool;
  1430.     if AutoDonate then
  1431.         while AutoDonate do
  1432.             Donatetimes = playerGui.GUI:WaitForChild("二级界面"):WaitForChild("公会"):WaitForChild("捐献"):WaitForChild("背景"):WaitForChild("按钮"):WaitForChild("确定按钮"):WaitForChild("次数").Text;
  1433.             Donatetimesnumber = tonumber(string.match(Donatetimes, "%d+"));
  1434.             Guildname.Text = "Guide Name:" .. Guidename .. " || Contribute times: " .. Donatetimesnumber;
  1435.             if (Donatetimesnumber > 0) then
  1436.                 game:GetService("ReplicatedStorage"):FindFirstChild("\228\186\139\228\187\182"):FindFirstChild("\229\133\172\231\148\168"):FindFirstChild("\229\133\172\228\188\154"):FindFirstChild("\230\141\144\231\140\174"):FireServer();
  1437.             end
  1438.             wait(0.5);
  1439.         end
  1440.     end
  1441. end);
  1442. AutoDonateSwitch:Set(false);
  1443. local replicatedStorage = game:GetService("ReplicatedStorage");
  1444. features6:AddButton("Daily Tasks", function()
  1445.     local event = replicatedStorage:FindFirstChild("打开每日任务", true);
  1446.     if (event and event:IsA("BindableEvent")) then
  1447.         event:Fire("打開每日任務");
  1448.     end
  1449. end);
  1450. features6:AddButton("Mail", function()
  1451.     local event = replicatedStorage:FindFirstChild("打开邮件", true);
  1452.     if (event and event:IsA("BindableEvent")) then
  1453.         event:Fire("打开郵件");
  1454.     end
  1455. end);
  1456. features6:AddButton("Wheel", function()
  1457.     local event = replicatedStorage:FindFirstChild("打开转盘", true);
  1458.     if (event and event:IsA("BindableEvent")) then
  1459.         event:Fire("打開轉盤");
  1460.     end
  1461. end);
  1462. features6:AddButton("Formation", function()
  1463.     local event = replicatedStorage:FindFirstChild("打开阵法", true);
  1464.     if (event and event:IsA("BindableEvent")) then
  1465.         event:Fire("打开陣法");
  1466.     end
  1467. end);
  1468. features6:AddButton("World Tree", function()
  1469.     local event = replicatedStorage:FindFirstChild("打开世界树", true);
  1470.     if (event and event:IsA("BindableEvent")) then
  1471.         event:Fire("打開世界樹");
  1472.     end
  1473. end);
  1474. features6:AddButton("Training Bench", function()
  1475.     local event = replicatedStorage:FindFirstChild("打开炼器台", true);
  1476.     if (event and event:IsA("BindableEvent")) then
  1477.         event:Fire("打開練器台");
  1478.     end
  1479. end);
  1480. features6:AddButton("Alchemy Furnace", function()
  1481.     local event = replicatedStorage:FindFirstChild("打开炼丹炉", true);
  1482.     if (event and event:IsA("BindableEvent")) then
  1483.         event:Fire("打開煉丹爐");
  1484.     end
  1485. end);
  1486. features7:AddLabel(" -- 語言配置/language config");
  1487. features7:AddButton("刪除語言配置/language config delete", function()
  1488.     local HttpService = game:GetService("HttpService");
  1489.     function deleteConfigFile()
  1490.         if isfile("Cultivation_languageSet.json") then
  1491.             delfile("Cultivation_languageSet.json");
  1492.             print("配置文件 Cultivation_languageSet.json 已刪除。");
  1493.         else
  1494.             print("配置文件 Cultivation_languageSet.json 不存在,無法刪除。");
  1495.         end
  1496.     end
  1497.     deleteConfigFile();
  1498. end);
  1499. features7:AddLabel("- - Statistics");
  1500. features7:AddButton("每秒擊殺/金幣數", function()
  1501.     loadstring(game:HttpGet("https://pastebin.com/raw/0NqSi46N"))();
  1502.     loadstring(game:HttpGet("https://pastebin.com/raw/HGQXdAiz"))();
  1503. end);
  1504. features7:AddLabel(" If you have any questions or ideas, leave a comment on GitHub.");
  1505. features7:AddButton("Github Link", function()
  1506.     local urlToCopy = "https://github.com/Tseting-nil";
  1507.     if setclipboard then
  1508.         setclipboard(urlToCopy);
  1509.         showNotification("Link Copied:) !!");
  1510.     else
  1511.         showNotification("error!Link:github.com/Tseting-nil");
  1512.     end
  1513. end);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement