blob: 5b1631ffb8d00fbba8592f0676cef489b50c8f81 (
plain)
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
|
<?php
$messages = array(
"shop_already_built" => "You have already built a shop.",
"gold_insufficient" => "You don't have enough gold.",
"shop_missing_item" => "This item does not exist.",
"guild_not_yet_created" => "You need to create a guild first.",
"guild_already_built" => "You have aready built a guild."
);
function sendMessage($type, $msg) {
global $messages;
$text = $messages[$msg];
echo json_encode(array($type => $text));
}
function sendError($msg) {
sendMessage("error", $msg);
}
function sendInfo($msg) {
sendMessage("info", $msg);
}
?>
|