init
This commit is contained in:
commit
c128fd5032
12 changed files with 166 additions and 0 deletions
28
config/dailyChests.php
Normal file
28
config/dailyChests.php
Normal file
|
@ -0,0 +1,28 @@
|
|||
<?php
|
||||
/*
|
||||
QUESTS
|
||||
*/
|
||||
//NOW SET IN THE QUESTS TABLE IN THE MYSQL DATABASE
|
||||
/*
|
||||
REWARDS
|
||||
*/
|
||||
//SMALL CHEST
|
||||
$chest1minOrbs = 200;
|
||||
$chest1maxOrbs = 400;
|
||||
$chest1minDiamonds = 2;
|
||||
$chest1maxDiamonds = 10;
|
||||
$chest1items = [1, 2, 3, 4, 5, 6];
|
||||
$chest1minKeys = 1;
|
||||
$chest1maxKeys = 6;
|
||||
//BIG CHEST
|
||||
$chest2minOrbs = 2000;
|
||||
$chest2maxOrbs = 4000;
|
||||
$chest2minDiamonds = 20;
|
||||
$chest2maxDiamonds = 100;
|
||||
$chest2items = [1, 2, 3, 4, 5, 6];
|
||||
$chest2minKeys = 1;
|
||||
$chest2maxKeys = 6;
|
||||
//REWARD TIMES (in seconds)
|
||||
$chest1wait = 3600;
|
||||
$chest2wait = 14400;
|
||||
?>
|
Loading…
Add table
Add a link
Reference in a new issue