can an artifact be added like pops up random in every area and gives quest point and an artifact that is carried by a mob in realm and which pops random again and the artifact might be deck of many things or something like that gives good or bad surprises?
artifact,questor
Posted by Ronald on Wed 27 Feb 2002 09:12 PM — 2 posts, 13,741 views.
It is possible... using mobprogs you can use a mob to load a particular object and put it somewhere.
Also with mobprogs you can make any event happen very rarely using the random check.
Unfortunately I arent going to write the complete mobprog for you, but that should be enough to get you started if you have used mobprogs before. If you havent used mobprogs before, I suggest starting with something a little more basic.
- Kal :)
Also with mobprogs you can make any event happen very rarely using the random check.
if rand 1
* this code is accessed 1 in every 100 times
* read 'ifhelp rand'
if rand 20
* this code is accessed 1 in every 500 times
* because rand 20 = 20% of the time, 1 in 5
* 1 in 5 x 100 = 1 in 500
mob oload 1234
* above line loads object 1234
endif
endif
Unfortunately I arent going to write the complete mobprog for you, but that should be enough to get you started if you have used mobprogs before. If you havent used mobprogs before, I suggest starting with something a little more basic.
- Kal :)