Jump to content

Recommended Posts

I am trying to remove the need to wait a day every time you level up your horse.

I tried to edit

quest horse_levelup begin

I removed this function :

            elseif get_time()<pc.getqf("next_time") then
                say_title(gameforge.horse_levelup._240_sayTitle)
                say(gameforge.horse_levelup._270_say)

it did not work. 

If you know how to do this please let me know thanks in advance ❤️

Link to comment
Share on other sites

  • Contributor
2 hours ago, MuffinBoi said:

I am trying to remove the need to wait a day every time you level up your horse.

I tried to edit

quest horse_levelup begin

I removed this function :

            elseif get_time()<pc.getqf("next_time") then
                say_title(gameforge.horse_levelup._240_sayTitle)
                say(gameforge.horse_levelup._270_say)

it did not work. 

If you know how to do this please let me know thanks in advance ❤️

Either remove next_time completly everywhere from the quest or just edit this:

				if is_test_server() then
					pc.setqf("next_time", get_time()+10)
				else
					pc.setqf("next_time", get_time()+number(16, 32)*60*60)
				end

to this:

				pc.setqf("next_time", get_time()+10)

Then the wait time will be 10 second.

  • Love 1
  • Love 1
Link to comment
Share on other sites

for horses Level  0 - 10

go to pony_levelup quest

find this:

else

        pc.setqf("next_time", get_time()+number(16, 32)*60*60)

 

and remove it everywhere you can find it in this quest

keep the next line "end" and the if statement on the line before

 

you have to compile the quests for it to work.

 

NOTE: you will have to wait a day to craft horse picture and armored horse. this removes timer only for the horse level up

 

 

Thank you TMP4 for your help

and I love you

 

 

  • Lmao 1
  • Love 1
Link to comment
Share on other sites

  • 1 month later...

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now

Announcements



×
×
  • 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.