Discussione Quest sbagliata? Chi mi aiuta a correggerla?

Stato
Discussione chiusa ad ulteriori risposte.

AcronicDesign

Utente Gold
3 Marzo 2011
421
51
96
239
Salve inforge.
Ho creato questa quest.. però quando la provo ad implementare mi esce questo errore:
30w6mnc.jpg

Questa è la quest:
Codice:
quest Armi Del Risveglio begin
    state start begin
        when letter begin
            send_letter("Vai da Uriel Nabbo")
        end
        when button or info begin
            say("Va da Uriel")
        end
        when 20011.chat."Ehi Avventuriero!" begin
            say("Ciao avventuriero avventuroso, vorrei che mi portassi una cosa molto importante" )
            say("Potresti trovarla nella mappa del Risveglio")
            set_state("uccidiilboss")
        end
    end
    state uccidiilboss begin
        when letter begin
            send_letter("Uccidi il Boss del Risveglio!")
        end
        when button or info begin
            say("Uriel vuole che uccidi il Boss!")
        end
        when 2596.kill begin
            chat("Hai ucciso il Boss, torna da Uriel")
            pc . give_item2("71056", 1)
            set_state("ritorna")
        end
    end
    state ritorna begin
        when 20011.chat."Grazie!" with pc.count_item("71056") >= 1 begin
            say("Grazie avventuriero, ti darò un forziere del Re Ragno speciale.." )
            pc . give_item2("50073",1)
            set_state("__COMPLETE__")
        end
    end
    state __COMPLETE__ begin
    end
end

Il file si chiama risveglio.quest.. (se serve)

Do +1 a chi mi aiuta :)
 
PHP:
quest risveglio begin
    state start begin
        when letter begin
            send_letter("Vai da Uriel Nabbo")
        end
        when button or info begin
            say("Va da Uriel")
        end
        when 20011.chat."Ehi Avventuriero!" begin
            say("Ciao avventuriero avventuroso, vorrei che mi portassi una cosa molto importante" )
            say("Potresti trovarla nella mappa del Risveglio")
            set_state("uccidiilboss")
        end
    end
    state uccidiilboss begin
        when letter begin
            send_letter("Uccidi il Boss del Risveglio!")
        end
        when button or info begin
            say("Uriel vuole che uccidi il Boss!")
        end
        when 2596.kill begin
            chat("Hai ucciso il Boss, torna da Uriel")
            pc . give_item2("71056", 1)
            set_state("ritorna")
        end
    end
    state ritorna begin
        when 20011.chat."Grazie!" with pc.count_item("71056") >= 1 begin
            say("Grazie avventuriero, ti darò un forziere del Re Ragno speciale.." )
            pc . give_item2("50073",1)
            set_state("__COMPLETE__")
        end
    end
    state __COMPLETE__ begin
    end
end
 
PHP:
quest risveglio begin
    state start begin
        when letter begin
            send_letter("Vai da Uriel Nabbo")
        end
        when button or info begin
            say("Va da Uriel")
        end
        when 20011.chat."Ehi Avventuriero!" begin
            say("Ciao avventuriero avventuroso, vorrei che mi portassi una cosa molto importante" )
            say("Potresti trovarla nella mappa del Risveglio")
            set_state("uccidiilboss")
        end
    end
    state uccidiilboss begin
        when letter begin
            send_letter("Uccidi il Boss del Risveglio!")
        end
        when button or info begin
            say("Uriel vuole che uccidi il Boss!")
        end
        when 2596.kill begin
            chat("Hai ucciso il Boss, torna da Uriel")
            pc . give_item2("71056", 1)
            set_state("ritorna")
        end
    end
    state ritorna begin
        when 20011.chat."Grazie!" with pc.count_item("71056") >= 1 begin
            say("Grazie avventuriero, ti darò un forziere del Re Ragno speciale.." )
            pc . give_item2("50073",1)
            set_state("__COMPLETE__")
        end
    end
    state __COMPLETE__ begin
    end
end

ah lol grazie haha ^^ +1 come promesso.
Chiudo
 
Stato
Discussione chiusa ad ulteriori risposte.
Indietro
Top Bottom