blob: f1ca8b32edba823410ce2d8f96c7dccc732bb945 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
<?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.",
);
function sendError($msg) {
global $messages;
$text = $messages[$msg];
echo json_encode(array("error" => $text));
}
?>
|