Discussione script per teleportare nei villaggi?

Stato
Discussione chiusa ad ulteriori risposte.

Vukovic

Utente Gold
15 Dicembre 2009
653
76
19
249
qualcuno può gentilmente darmi uno script per teleportare nei villaggi? non il comando ma proprio lo script da inserire a un teleporter... +1 a chi me lo da

grazie a tutti in anticipo
 
Prova questo non l'ho testato, lo script non l'ho fatto io ho preso un pezzo dell'npc di babau e l'ho modificato un pò..
Codice:
say_title ( "Teleporter[ENTER" ) 
say ( "Questo è un villaggio molto carino.." ) 
say ( "ma io posso portarti anche" ) 
say ( "negli altri villaggi.." ) 
say ( "" ) 
say ( "Vuoi essere teletrasportato?" ) 
say ( "" ) 
local risp = select ( "Si" , "No" ) 
if risp == 2 then
say ("Allora che sei venuto a fare?")
return 
end 

say ( "Teleporter:" ) 
say ( "Dove vuoi essere teletrasportato?" ) 
local teleporter =select ("Villaggi","Chiudi")
if teleporter == 2 then
return
end

villaggiz = select ( "Di Shinsoo" , "Di Chunjo" , "Di Jinno" , "Annulla" ) 
if 1 == villaggiz then
rossiz = select ( "Villo 1" , "Villo 2" , "Annulla" ) 
if 1 == rossiz then
say ( "Ora verrai teletrasportato." ) 
wait ( ) 
pc . warp ( 469300 , 964200 ) 

elseif 2 == rossiz then 
say ( "Ora verrai teletrasportato." ) 
wait ( ) 
pc . warp ( 360800 , 877600 ) 
end

elseif 2 == villaggiz then 
gialliz = select ( "Villo 1" , "Villo 2" , "Annulla" ) 
if 1 == gialliz then
say ( "Ora verrai teletrasportato." ) 
wait ( ) 
pc . warp ( 55700 , 157900 ) 

elseif 2 == gialliz then 
say ( "Ora verrai teletrasportato." ) 
wait ( ) 
pc . warp ( 138500 , 234900 ) 
end

elseif 3 == villaggiz then
bluz = select ( "Villo 1" , "Villo 2" , "Annulla" ) 
if 1 == bluz then
say ( "Ora verrai teletrasportato." ) 
wait ( ) 
pc . warp ( 969600 , 278400 ) 

elseif 2 == bluz then 
say ( "Ora verrai teletrasportato." ) 
wait ( ) 
pc . warp ( 873100 , 242600 ) 
end
end
 
  • Mi piace
Reazioni: Vukovic
Prova questo non l'ho testato, lo script non l'ho fatto io ho preso un pezzo dell'npc di babau e l'ho modificato un pò..
Codice:
say_title ( "Teleporter[ENTER" ) 
say ( "Questo è un villaggio molto carino.." ) 
say ( "ma io posso portarti anche" ) 
say ( "negli altri villaggi.." ) 
say ( "" ) 
say ( "Vuoi essere teletrasportato?" ) 
say ( "" ) 
local risp = select ( "Si" , "No" ) 
if risp == 2 then
say ("Allora che sei venuto a fare?")
return 
end 

say ( "Teleporter:" ) 
say ( "Dove vuoi essere teletrasportato?" ) 
local teleporter =select ("Villaggi","Chiudi")
if teleporter == 2 then
return
end

villaggiz = select ( "Di Shinsoo" , "Di Chunjo" , "Di Jinno" , "Annulla" ) 
if 1 == villaggiz then
rossiz = select ( "Villo 1" , "Villo 2" , "Annulla" ) 
if 1 == rossiz then
say ( "Ora verrai teletrasportato." ) 
wait ( ) 
pc . warp ( 469300 , 964200 ) 

elseif 2 == rossiz then 
say ( "Ora verrai teletrasportato." ) 
wait ( ) 
pc . warp ( 360800 , 877600 ) 
end

elseif 2 == villaggiz then 
gialliz = select ( "Villo 1" , "Villo 2" , "Annulla" ) 
if 1 == gialliz then
say ( "Ora verrai teletrasportato." ) 
wait ( ) 
pc . warp ( 55700 , 157900 ) 

elseif 2 == gialliz then 
say ( "Ora verrai teletrasportato." ) 
wait ( ) 
pc . warp ( 138500 , 234900 ) 
end

elseif 3 == villaggiz then
bluz = select ( "Villo 1" , "Villo 2" , "Annulla" ) 
if 1 == bluz then
say ( "Ora verrai teletrasportato." ) 
wait ( ) 
pc . warp ( 969600 , 278400 ) 

elseif 2 == bluz then 
say ( "Ora verrai teletrasportato." ) 
wait ( ) 
pc . warp ( 873100 , 242600 ) 
end
end


perfetto funziona grazie 1000 +1
 
Stato
Discussione chiusa ad ulteriori risposte.