ho provato a creare un anello teletrasporto, ma non riesco a farlo funzionare, ha type "18" su mob_proto e tutti i permessi (ottale 0777)
Questo è lo script:
say_title ( "Anello teletrasporto" )
say ( "dove vuoi essere teletrasportato?" )
local tipo = select ( "Villaggi" , "Mappe da EXP" , "Annulla" )
if tipo == 1 then
local villi = select ( "Villo 1 Blu" , "Villo 1 Rossi" , "Villo 1 Gialli" , "Villo 2 Rossi" , "Villo 2 Gialli" , "Villo 2 Blu" , "Chiudi" )
if villi == 1 then
pc . warp ( 969600 , 278400 )
end
if villi == 2 then
pc . warp ( 469300 , 964200 )
end
if villi == 3 then
pc . warp ( 55700 , 157900 )
end
if villi == 4 then
pc . warp ( 353100 , 882900 )
end
if villi == 5 then
pc . warp ( 145500 , 240000 )
end
if villi == 6 then
pc . warp ( 863900 , 246000 )
end
if villi == 7 then
return
end
if tipo == 2 then
local exp = select ( "Valle " , "Lungasam" , "Bosco Rosso" , "Covo2" , "Altre Mappe" , "Chiudi" )
if exp == 1 then
pc . warp ( 402100 , 673900 )
end
if exp == 2 then
pc . warp ( 288700 , 5700 )
end
if exp == 3 then
pc . warp ( 1119900 , 70800 )
end
if exp == 4 then
pc . warp ( 704100 , 464100 )
end
if exp == 6 then
return
end
if exp == 5 then
local altre = select ( "Torre dei Demoni" , "Atlantide" , "Atlantide 2" , "Chiudi" )
if altre == 1 then
pc . warp ( 590500 , 110500 )
end
if altre == 2 then
pc . warp ( 10000 , 1207800 )
end
if altre == 3 then
pc . warp ( 241300 , 1275500 )
end
if altre == 4 then
return
end
if tipo == 3 then
return
end
penso che il problema sia nello script, soluzioni?
Grazie in anticipo!
Questo è lo script:
say_title ( "Anello teletrasporto" )
say ( "dove vuoi essere teletrasportato?" )
local tipo = select ( "Villaggi" , "Mappe da EXP" , "Annulla" )
if tipo == 1 then
local villi = select ( "Villo 1 Blu" , "Villo 1 Rossi" , "Villo 1 Gialli" , "Villo 2 Rossi" , "Villo 2 Gialli" , "Villo 2 Blu" , "Chiudi" )
if villi == 1 then
pc . warp ( 969600 , 278400 )
end
if villi == 2 then
pc . warp ( 469300 , 964200 )
end
if villi == 3 then
pc . warp ( 55700 , 157900 )
end
if villi == 4 then
pc . warp ( 353100 , 882900 )
end
if villi == 5 then
pc . warp ( 145500 , 240000 )
end
if villi == 6 then
pc . warp ( 863900 , 246000 )
end
if villi == 7 then
return
end
if tipo == 2 then
local exp = select ( "Valle " , "Lungasam" , "Bosco Rosso" , "Covo2" , "Altre Mappe" , "Chiudi" )
if exp == 1 then
pc . warp ( 402100 , 673900 )
end
if exp == 2 then
pc . warp ( 288700 , 5700 )
end
if exp == 3 then
pc . warp ( 1119900 , 70800 )
end
if exp == 4 then
pc . warp ( 704100 , 464100 )
end
if exp == 6 then
return
end
if exp == 5 then
local altre = select ( "Torre dei Demoni" , "Atlantide" , "Atlantide 2" , "Chiudi" )
if altre == 1 then
pc . warp ( 590500 , 110500 )
end
if altre == 2 then
pc . warp ( 10000 , 1207800 )
end
if altre == 3 then
pc . warp ( 241300 , 1275500 )
end
if altre == 4 then
return
end
if tipo == 3 then
return
end
penso che il problema sia nello script, soluzioni?
Grazie in anticipo!