Jump to content
  • 0

Is there a way to increase Exp at night?


Question

Posted

Hello friends!
Tell me please! Is there a way to increase Exp at night? And include pvp behind cities?


As with the announcement here))

-    script    DayNight    -1,{
   end;
OnClock0600:
   announce "Disgusting morning!",bc_blue|bc_all;
   day;
   end;
OnClock2300:
   announce "Disgusting night!",bc_blue|bc_all;
   night;
   end;
OnInit:
   if(gettime(3)>=6 && gettime(3)<23)
       end;
   else
       night;
end;

}

 

1 answer to this question

Recommended Posts

  • 0
Posted
-	script	DayNight	-1,{

OnClock0600:
   announce "Disgusting morning!",bc_blue|bc_all;
   day;
   setbattleflag "base_exp_rate", .bexp_rate*100;
   end;
OnClock2300:
   announce "Disgusting night!",bc_blue|bc_all;
   night;
   setbattleflag "base_exp_rate", .bexp_rate*100 * 2;
   end;
OnInit:
   set .bexp_rate, 300; //Change that 300 to your server exp rate
   if(gettime(3)>=6 && gettime(3)<23)
       end;
   else
       night;
end;
}

try that

  • Upvote 1

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...