Jump to content

Teleport double mount bonus


Recommended Posts

  • Replies 5
  • Created
  • Last Reply

Top Posters In This Topic

hmm?

	Group    Mounts
{
    Vnum    10030
    1    71115    1    1
    2    71117    1    1
    3    71119    1    1
    4    71121    1    1
    5    71124    1    1
    6    71125    1    1
    7    71126    1    1
    8    71127    1    1
    9    71128    1    1
    10    71131    1    1
    11    71132    1    1
    12    71133    1    1
    13    71134    1    1
    14    71137    1    1
    15    71138    1    1
    16    71139    1    1
    17    71140    1    1
    18    71141    1    1
    19    71142    1    1
    20    50138    1    1
}
	

Link to comment
Share on other sites

  • 3 weeks later...
  • Premium

That is a shitty quest, the end is not complete.

Btw go into quest/object

Look at the start of your quest vector

[71114] = { 20110,

The first value  is the item to get the mount the second is the value of the mob, now go into OBJECT folder called 71114 .

If the folder doesnt exists, create it and create a subfolder (another folder inside the folder) called mount

 

Insert this:

Create a file called mount.start and insert this code in it

if pc.is_polymorphed() then
	syschat("You can't summon a mount while polymorphed.") 
-- add something if you want to poly 1 the user or something like that
end
if pc.is_riding() then 
    horse.unride()
    horse.unsummon()
end
pc.mount(20110,60*60*24*7) -- this is 1 week mount
pc.mount_bonus(apply.DEF_GRADE_BONUS, 75, 60*60*24*7) -- 1 week bonus

This works for me in a proper manner, you should even add a check for the wedding armor etc.

Im a newbie so dont get cocky

 

Link to comment
Share on other sites

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.