-
Notifications
You must be signed in to change notification settings - Fork 21
/
ajax.php
26 lines (25 loc) · 1.52 KB
/
ajax.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
<?php
#################################################################################
## ##
## -= YOU MUST NOT REMOVE OR CHANGE THIS NOTICE =- ##
## ##
## --------------------------------------------------------------------------- ##
## ##
## Project: ZravianX ##
## Version: 2011.12.04 ##
## Filename: ajax.php ##
## Developed by: Dzoki ##
## Improved by: ZZJHONS ##
## License: Creative Commons BY-NC-SA 3.0 ##
## Copyright: ZravianX (c) 2011 - All rights reserved ##
## URLs: http://zravianx.zzjhons.com ##
## Source code: http://www.github.com/ZZJHONS/ZravianX ##
## ##
#################################################################################
include_once 'GameEngine/config.php';
if(ZRAVIANX4 == true){
include("Templates/Travian/4/ajax.tpl");
} else {
include("Templates/Travian/3.6/ajax.tpl");
}
?>