Jump to content

Recommended Posts

quest mount_system begin
    state start begin
        when 71124.use begin
            horse.set_appearance(20114)
            if pc.is_polymorphed() then
                 syschat("Nu poti calarii cat esti transformat.")
            elseif pc.is_riding() then
                 syschat("Nu poti invoca un mount cat timp calaresti!")
            else
                if true == horse.is_summon() then
                    horse.unsummon()
                else
                    horse.summon()
                end
            end
        end
    end
end

 

@Abel(Tiger)

Link to comment
https://metin2.dev/topic/17674-bug-horse-appearance/#findComment-96756
Share on other sites

You can use that quest to ride it as a mount

quest mount_system begin
    state start begin
        when 71124.use begin
            if pc.is_polymorphed() then
                 syschat("Nu poti calarii cat esti transformat.")
            elseif pc.is_riding() then
                 syschat("Nu poti invoca un mount cat timp calaresti!")
  			elseif pc.is_mount() then
  				pc.unmount()
            else
                if true == horse.is_summon() then
                    horse.unsummon()
                end
                    pc.mount(20114, 365*24*60*60) --1year time
            end
        end
    end
end

Your bug because when you teleport, the horse appearance resets to normal, you can override that by using login state

 

  • Love 1
Link to comment
https://metin2.dev/topic/17674-bug-horse-appearance/#findComment-96774
Share on other sites

  • Bot

Try like that : 

quest mount_system begin
    state start begin
-------------------------------------------------------------
		when login with horse.is_riding() begin
			horse.set_appearance(horse.get_appearance())
		end
-------------------------------------------------------------	
        when 71124.use begin
            horse.set_appearance(20114)
            if pc.is_polymorphed() then
                 syschat("Nu poti calarii cat esti transformat.")
            elseif pc.is_riding() then
                 syschat("Nu poti invoca un mount cat timp calaresti!")
            else
                if true == horse.is_summon() then
                    horse.unsummon()
                else
                    horse.summon()
                end
            end
        end
    end
end

 

english_banner.gif

Link to comment
https://metin2.dev/topic/17674-bug-horse-appearance/#findComment-96783
Share on other sites

Acum 13 minute, Abel(Tiger) a spus:

Try like that : 


quest mount_system begin
    state start begin
-------------------------------------------------------------
		when login with horse.is_riding() begin
			horse.set_appearance(horse.get_appearance())
		end
-------------------------------------------------------------	
        when 71124.use begin
            horse.set_appearance(20114)
            if pc.is_polymorphed() then
                 syschat("Nu poti calarii cat esti transformat.")
            elseif pc.is_riding() then
                 syschat("Nu poti invoca un mount cat timp calaresti!")
            else
                if true == horse.is_summon() then
                    horse.unsummon()
                else
                    horse.summon()
                end
            end
        end
    end
end

 

 

Don't work. Will summon the horse after login / teleport. Thank you TIger. I appreciate.

Link to comment
https://metin2.dev/topic/17674-bug-horse-appearance/#findComment-96784
Share on other sites

  • Bot

It should save in database horse appearance when you call that function "horse.set_appearance(20114)" and on the next login should summon horse with new appearance.

You forget some steps from Alina's tutorial or the tutorial is wrong.

english_banner.gif

Link to comment
https://metin2.dev/topic/17674-bug-horse-appearance/#findComment-96786
Share on other sites

Don't use any images from : imgur, turkmmop, freakgamers, inforge, hizliresim... Or your content will be deleted without notice...
Use : https://metin2.download/media/add/

Please use https://metin2.download/ when uploading files smaller than 100MB, otherwise the approval will take longer due to manual upload.

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now
×
×
  • Create New...

Important Information

Terms of Use / Privacy Policy / Guidelines / We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.