コード例 #1
0
ファイル: commands.php プロジェクト: ninjajerry/ninjawars
function rewardBounty($bounty_to, $bounty_on)
{
    global $sql;
    $bounty = getBounty($bounty_on);
    setBounty($bounty_on, 0);
    //Sets bounty to zero.
    addGold($bounty_to, $bounty);
    return $bounty;
}
コード例 #2
0
ファイル: commands.php プロジェクト: reillo/ninjawars
function rewardBounty($bounty_to, $bounty_on)
{
    $bounty = getBounty($bounty_on);
    setBounty($bounty_on, 0);
    //Sets bounty to zero.
    add_gold($bounty_to, $bounty);
    return $bounty;
}