VIP System Bug after remove alternative boost constant

OverLord

New member
Messages
168
Points
0
Age
36
Location
Brazil
Emulator
In some post here in the forum, I read that it was recommended to use the new constants to update the NPC "VIP System," used the following.
 
sc_start SC_CASH_PLUSEXP,(( prmm - gettimetick(2) ) * 1000 ),200;
sc_start SC_CASH_PLUSONLYJOBEXP,(( prmm - gettimetick(2) ) * 1000 ),200;
sc_start SC_CASH_RECEIVEITEM,(( prmm - gettimetick(2) ) * 1000 ),200;
 
 
However I make available  battle manuals on my server, and if I use the above commands, the VIP players do not use the "BM" because they use the same bonus, and they do not have "stack"...
 
How can I produce the effect of the constants above for VIP Players, without disturbing the use of the manuals?
 
Last edited by a moderator:
// use this when you add the vip

ModDrop = 200;
ModExp = 200;

// and this when it ends

ModDrop = 100;
ModExp = 100;

ModExp = 100 = normal exp (100%)

ModExp = 150 = 50% plus normal exp (150%)
 
Back
Top