[Help] Zulie wont drop from any Monsters

Status
Not open for further replies.
Newbie Spellweaver
Joined
Jan 3, 2009
Messages
21
Reaction score
0
hello again

and i need some help how to fix this bug
every monster i killed Zulie will not drop from
it if you want to no my Rates here they are

Exp rate: 1000 Drop Rate: 500 Zulie Rate: 2000
Drop type Rate: 500

i dont get it whats going on :S if any of you
no how to fix this please reply and thank you

P.S still learning to C++

btw i'm on Rev 80 and using Rose Online v139
 
first of all, why are you using that old dinosaur that fails in almost every sense, is a pain in the ass to use and has nobody working on the source any more? :rolleyes:

I already gave you a perfectly good link to a nice shiny new server that is being constantly developed, uses teh latest version of NARose and works a million times better than rev 80.

As to your problem.
It's easy enough to fix.
Just open Serverfunctions.cpp and find this line in function GetDrop()
if(thismon->MonsterDrop->mapdrop->level_max < thismon->MonsterDrop->firstlevel) randv = 100;
Now delete it and recompile your server.
I never figured out why this line was ever added. It doesn't serve any useful purpose and prevents zuly from dropping from most monsters by setting randv to 100 in almost every case. :laugh:

You're just lucky I remember this kind of stuff from back in the day when I was devving an old evo server.
 
first of all, why are you using that old dinosaur that fails in almost every sense, is a pain in the ass to use and has nobody working on the source any more?

yes i would have loved to go up to V241 and drop
rev 80 but there were some bits that i could not understand
like


4
 
I'm new to the whole Rose development, I'm using Rev80 and from what I just read, theres a better version. If you don't mind, could you redirect me to it?
 
Zulie fixed by DL a drop_data from that ROSE NEW DOWNLOAD THREAD and it gives good drop as well i like it. no need to compile lol
 
Zulie fixed by DL a drop_data from that ROSE NEW DOWNLOAD THREAD and it gives good drop as well i like it. no need to compile lol
NO NO NO NO NO!!!!!

That is a lame ass band aid fix, not a proper fix.
You can't fix the zuly drops by creating a drops database that deliberately has bad drops in it so that it makes the drops function return NULL values.

Doing it that way doesn't give the correct zuly drop chance at all.
I already gave the correct fix. Please stop giving retarded advice like that.
It bugs me when people do half ass band aid repairs.
Do it right already :glare:
 
Really? i dunno i just replaced my old Drop_Data with the new ones then i see zulies drop lol.. so i thought it fixed lol...for recompiling stuff im still need to learn that lol.
 
well yes you will see some zuly drop but only because somebody added some code to the server that converts NULL drops (i.e. screwed up ones) into zuly.

Real zuly drops should happen on a percentage chance from any monster. Removing the line of code I mentioned at the top of this thread fixes the actual problem rather than exploiting an error.

here is an even better idea.
Drop the rev 80 server completely and move to one that actually works properly. get the dev rev from dev-osrose.com. I've added links to the tutorial all over the place in these forums
 
Hi,

I finally got the "No Zuly" drop problem fixed thanks to this thread. However, every time a new character is created, he/she would have 10,000 zuly starting out. Is there a way to fix this? I'm using saga rev 75. Thanks in advance for any reply.

VD
 
starting zuly is defined in your CharServer. It's hard coded I think.
TBH though, it's been such a long time since since i did anything related to this that i could be remembering it wrong.

And I've never heard of this saga rev 75. What's all that about?
 
Excually you have to search in your files on 10000.
I can't remember what file it was.
But there is a way to change that (I was able to do it and it wasn't hard).
try it :) Good Luck ;)

EDIT:
Make a Backup of your SQL Database open it up with Notepad
search for:
Code:
  `zuly` decimal(11,0) NOT NULL default
And look what it says for you it will be 10000 after it change that :)
And use the backup back on your database and done!
(make sure your server is offline in the mean while)
 
Last edited:
Status
Not open for further replies.
Back