简单挂 发表于 2023-5-1 09:37:52

简单挂A版本多地图脚本

function 地图1()
--进图代码
end

function 地图1战斗()
--边走边打
   n=2
   使用物品("回城石")
   等待(2500)
   return 回城()
end

function 地图2()
--进图代码
end

function 地图2战斗()
--边走边打
   n=3
   使用物品("回城石")
   等待(2500)
   return 回城()
end

function 地图3()
--进图代码
end

function 地图3战斗()
--边走边打
   n=1
   使用物品("回城石")
   等待(2500)
   return 回城()
end

function 回城()
--顺序出发
if n==null then
n=1
end
if n==1 then
地图1()
elseif n==2 then
地图2()
elseif n==3 then
地图3()
end
return 开搞()
end

function 开搞()
local map=获取地图()
--这里获取的是地图名字,也可以获取地图编号
if map=="地图1" then
      地图1战斗()
elseif map=="地图2" then
      地图2战斗()
elseif map=="地图3" then
   地图3战斗()
    end
end

do
local mapid=获取地图id()
if mapid=="爱心土城" then
回城()
else
开搞()
end
end

页: [1]
查看完整版本: 简单挂A版本多地图脚本