This repository has been archived on 2024-07-18. You can view files and clone it, but cannot push or open issues or pull requests.
lwb5/scripts/game/beta5/msgformat/en/revolt.inc

52 lines
1.2 KiB
PHP

<?php
class msgformat_revolt {
function msgformat_revolt($game) {
$this->game = $game;
$this->players = $game->getLib('beta5/player');
}
function getSender() {
return 'Governor of ' . utf8entities($this->data['pname']);
}
function getSLink() {
return "";
}
function getRecipient() {
$pinf = $this->players->call('getName', $this->player);
return utf8entities($pinf);
}
function getRLink() {
return "";
}
function getSubject() {
if ($this->data['started'] == 't') {
return "Civil unrest on " . utf8entities($this->data['pname']);
}
return "End of the uprising on " . utf8entities($this->data['pname']);
}
function getReplyLink() {
return "";
}
function getContents() {
$planet = '<a href="planet?id='.$this->data['planet'].'"><b>'.utf8entities($this->data['pname'])."</b></a>";
if ($this->data['started'] == 't') {
$str = "Sir! The citizens of $planet are most displeased with their treatment! "
. "They are protesting in the streets at being so unhappy! The riots are intensifying, "
. "and we suspect that they will soon start destroying our infrastructure if no action "
. "is taken!";
} else {
$str = "Sir, the riots on planet $planet have ended.";
}
return $str;
}
}
?>