Jump to content
  • 0

Is there a way to increase Exp at night?


nikita54421

Question


  • Group:  Members
  • Topic Count:  16
  • Topics Per Day:  0.01
  • Content Count:  31
  • Reputation:   0
  • Joined:  05/06/17
  • Last Seen:  

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;

}

 

Link to comment
Share on other sites

1 answer to this question

Recommended Posts

  • 0

  • Group:  Members
  • Topic Count:  11
  • Topics Per Day:  0.00
  • Content Count:  38
  • Reputation:   1
  • Joined:  07/21/16
  • Last Seen:  

-	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
Link to comment
Share on other sites

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.

×
×
  • Create New...