I need some help ! How to set reset formula for first 10 rr to be at lvl 300 and afther to be normal on lvl 400 ?
Printable View
I need some help ! How to set reset formula for first 10 rr to be at lvl 300 and afther to be normal on lvl 400 ?
go to your reset command, then use something like this if statement:
hope you got the ideaQuote:
if(lpObj->Reset<10) {
if(lpObj->Level<300){
GCServerMsgStringSend(); // you must be level 300 or somethin
return;
} else {
// reset proc here
}
} else {
if(lpObj->Level<400){
GCServerMsgStringSend(); // you must be level 400 or somethin
return;
}
// reset proc here
}
btw this should be posted at Mu Help section