Welcome!

Join our community of MMORPG enthusiasts and private server developers! By registering, you'll gain access to in-depth discussions on source codes, binaries, and the latest developments in MMORPG server files. Collaborate with like-minded individuals, explore tutorials, and share insights on building and optimizing private servers. Join us today and unlock the full potential of MMORPG server development!

Join Today!

How to make wyvern spawn?

After some trying I found it out:

u can add this example to one of the Mop00XXX files in the bin\data\Mop map where XXX is the map number:

Wyvern 75 145 124 146 125 5 6 107 1 6 108 1 6 110 1 6 111 1 6 112 1 0 1 1

what does it do:

- wyvern is the name, u can change it to anything u want
- 75 is the monsterID of wyvern if u change it, another monster will spawn
- 145 124 is the top left corner of the box the wyvern will spawn in
- 146 125 is the down right corner of the box the wyvern will spawn in
- In my example the wyvern always does spawn at the same place because the box is very small
- The 5 tells that this wyvern can drop 5 different things
- The next 5 pairs of 3 numbers are the 5 items that the wyvern will drop:
6 107 1 means drop 1 item out of itemtable 6 with ID 107, this
is a clear majestic ring
6 108 1 means drop 1 item out of itemtable 6 with ID 108, this
is a clear majestic necklace
6 110 1 means drop 1 item out of itemtable 6 with ID 110, this
is a clear manusblade sword
6 111 1 means drop 1 item out of itemtable 6 with ID 111, this
is a clear measure wand
6 112 1 means drop 1 item out of itemtable 6 with ID 112, this
is a clear destrucion spear
- the 0 says make it a normal monster, so no assasin or super, etc
- the 1 says make 1 wyvern spawn at a time
- the 1 says if the wyvern dies respawn it in 1 second

If u put this example in Mop00179 (school dungeon 3) it will spawn a wyvern at the entrance. If it dies it can drop a clear maj ring, maj neck, measure, destruction or manusblade. When it dies it will spawn again 1 second after it is killed.

If u make the spawn box very large, lets say 1 1 to 200 200 the wyvern will spawn random in that box

If u insert this info into another mop file than 179 the wyvern will spawn at a different map.

If u only want the regular 3 wyverns to spawn faster, change the last numbers in the info of the monsters with id 75 in Mop00179 into a 1. This will make the respawn every second.

U dont need to reset whole server after u have changed map info. Just close the map u edited and reload it.

Hope it will help ;)
 
l_vatos said:
After some trying I found it out:

u can add this example to one of the Mop00XXX files in the bin\data\Mop map where XXX is the map number:

Wyvern 75 145 124 146 125 5 6 107 1 6 108 1 6 110 1 6 111 1 6 112 1 0 1 1

what does it do:

- wyvern is the name, u can change it to anything u want
- 75 is the monsterID of wyvern if u change it, another monster will spawn
- 145 124 is the top left corner of the box the wyvern will spawn in
- 146 125 is the down right corner of the box the wyvern will spawn in
- In my example the wyvern always does spawn at the same place because the box is very small
- The 5 tells that this wyvern can drop 5 different things
- The next 5 pairs of 3 numbers are the 5 items that the wyvern will drop:
6 107 1 means drop 1 item out of itemtable 6 with ID 107, this
is a clear majestic ring
6 108 1 means drop 1 item out of itemtable 6 with ID 108, this
is a clear majestic necklace
6 110 1 means drop 1 item out of itemtable 6 with ID 110, this
is a clear manusblade sword
6 111 1 means drop 1 item out of itemtable 6 with ID 111, this
is a clear measure wand
6 112 1 means drop 1 item out of itemtable 6 with ID 112, this
is a clear destrucion spear
- the 0 says make it a normal monster, so no assasin or super, etc
- the 1 says make 1 wyvern spawn at a time
- the 1 says if the wyvern dies respawn it in 1 second

If u put this example in Mop00179 (school dungeon 3) it will spawn a wyvern at the entrance. If it dies it can drop a clear maj ring, maj neck, measure, destruction or manusblade. When it dies it will spawn again 1 second after it is killed.

If u make the spawn box very large, lets say 1 1 to 200 200 the wyvern will spawn random in that box

If u insert this info into another mop file than 179 the wyvern will spawn at a different map.

If u only want the regular 3 wyverns to spawn faster, change the last numbers in the info of the monsters with id 75 in Mop00179 into a 1. This will make the respawn every second.

U dont need to reset whole server after u have changed map info. Just close the map u edited and reload it.

Hope it will help ;)

I suggest not setting it to 1 though, because it generates a bug in which you cannot retrieve your dropped item (unless you are a blue destino) because the wyvern spawns ontop of it. You cant step into the wyvern, or it's dying body, and therefore you are screwed out of items. I suggest 10 or so.

PS. Wyvern is monster ID 98 :)
 
hmm ur right about the 1 second thingy, just like u said it doesnt bother me cuz of psycho kinesis... But I entered id 75 in my files and it really spawns a wyvern :D
 
Back