• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    迪恩网络公众号

PHP fText函数代码示例

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

本文整理汇总了PHP中fText函数的典型用法代码示例。如果您正苦于以下问题:PHP fText函数的具体用法?PHP fText怎么用?PHP fText使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。



在下文中一共展示了fText函数的20个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的PHP代码示例。

示例1: fTitle

        $no = 1;
    }
    if ($no == 0) {
        $sql = "DELETE FROM faq WHERE id = '{$fid}'";
        $result = $db->query($sql);
        echo 'FAQ question deleted.';
    }
}
if ($action == "changefaq") {
    $sql = "SELECT * FROM faq WHERE id = '{$fid}'";
    $result = $db->query($sql);
    $row = $db->fetch_array($result);
    fTitle("index.php?page=help&action=submitchangefaq&fid=" . $row["id"]);
    fText("Question:", "question", $row["question"]);
    fTextarea("Answer:", "answer", $row["answer"]);
    fText("Importance:", "importance", $row["importance"], 5);
    fEnd("Change");
}
if ($action == "submitchangefaq") {
    $no = 0;
    if (!$question || !$answer || !$fid) {
        echo 'Data is incomplete.';
        $no = 1;
    }
    if (!$importance) {
        $importance = 0;
    }
    $sql = "SELECT * FROM faq WHERE id = '{$fid}'";
    $result = $db->query($sql);
    $numrows = $db->num_rows($result);
    if ($numrows != 1) {
开发者ID:KristofMols,项目名称:castlequest2,代码行数:31,代码来源:ahelp.php


示例2: fTitle

if ($status == 3) {
    if (!$action) {
        echo '
			You face an immense wall. Your eyes try to grasp where it ends, 
			but in neither of the directions you can see and ending. Curious you touch 
			the wall and feel that it\'s made out of the same smooth black stone as the 
			narrow walls you were walking before. You walk a whole time alongside it, 
			until your reach small holes in the wall. You can\'t see inside them, because 
			it\'s darker as hell inside these hallways. You figure you can crawl through 
			one of these small tunnels to the other side of that wall.<br>
			You find about 10 holes right next to each other.<br><br>
			
			Which one will you enter?
			';
        fTitle("index.php?page=Maze&action=enter");
        fText("Entrance:", "entrance");
        fEnd("Enter");
    }
    if ($action == "enter") {
        if ($entrance == 5) {
            $sql = "UPDATE mazestatus SET status = '4' WHERE account = '{$acc['id']}'";
            $result = $db->query($sql);
            echo '
				You enter the dark passage. Before you know it, you have passed underneath the huge wall. You are standing in a gigantic hall.<br><br>
				
				As you wander through the Great Room, as you\'ve come to call it, you suddenly see, in the distance, a great structure. Running towards it, your anxiety grows, because you feel power emerging from that place, you can feel the greatness that once was.
				When you\'ve almost reached the structure, you gasp in awe at the colossal building in front of you, made entirely out of a low pulsing and gleaming material which emits a strange scent, one you\'ve never smelled before. When you\'re standing a few yards away from it, you realize this is some sort of tomb. A tomb that no man could build, for it seems entirely made out of one piece. Looking up at it, you see no end and circling the grave looks nearly impossible, because in the distance there is nothing to be seen but the giant wall.
				Surrounding the huge block of stone, there are little rooms. When you enter a few of those, you can see walls full of strange glowing symbols, huge ornaments with a frightening look, but nothing you can use. Several other rooms are completely empty, creating the feeling that this fascinating tomb is not yet finished - as if the creators were interupted in the middle of their work.<br><br>
				
				You feel lost in an eternal space.<br><br>
				
开发者ID:KristofMols,项目名称:castlequest2,代码行数:30,代码来源:Maze.php


示例3: stripslashes

    if (strlen($info) > gdMaxPrivateLength) {
        echo 'That text is too long.<br>';
    } else {
        $sql = "UPDATE accounts SET private = '{$private}' WHERE id = '{$acc['id']}'";
        $result = $db->query($sql);
        echo 'Private notes successfully changed!<br>';
        $acc["private"] = stripslashes($private);
        unset($action);
    }
}
if ($action == "raiseskill") {
    $availablepoints = gGetSkillPointsLeft();
    $raise = $gdClass[$class]["value"] == $acc["class"] ? 2 : 1;
    echo 'How many skill points do you want to spend on your ', strtolower($gdClass[$class]["name"]), ' skill? (maximum ', $availablepoints, ', skill raises by ', $raise, ' for every point spent)<br><br><br>';
    fTitle("index.php?page=character&action=raise&class={$class}");
    fText("Skill points:", "amount", "0", 5);
    fEnd("Raise skill");
}
if (!$action) {
    tBegin("Character Development");
    $togo = $acc["nextlevelxp"] - $acc["xp"];
    $previous = gCalcXp($acc["level"] - 1, $gdXpVar, $gdStartXp);
    $percent = round(($acc["xp"] - $previous) * 100 / ($acc["nextlevelxp"] - $previous));
    $xpbar = '<table border="0" cellspacing="0" cellpadding="0"><tr>';
    for ($m = 0; $m < 50; $m++) {
        if ($m < $percent / 2) {
            $xpbar .= '<td width="1" class="alert">';
        } else {
            $xpbar .= '<td width="1" class="head">';
        }
        $xpbar .= '|</td>';
开发者ID:KristofMols,项目名称:castlequest2,代码行数:31,代码来源:character.php


示例4: while

    $numrows = $db->num_rows($result);
    while ($row = $db->fetch_array($result)) {
        echo $row["name"], ': <a href="index.php?page=creatures&action=useitemconfig&icid=', $row["id"], '">use</a>, <a href="index.php?page=creatures&action=modifyitemconfig&icid=', $row["id"], '">modify</a>, <a href="index.php?page=creatures&action=renameitemconfig&icid=', $row["id"], '">rename</a>, <a href="index.php?page=creatures&action=deleteitemconfig&icid=', $row["id"], '">delete</a><br>';
    }
    if ($numrows < gdMaxItemConfigs) {
        echo '<br><a href="index.php?page=creatures&action=newitemconfig">Create a new item configuration.</a><br>';
    } else {
        echo '<br>You can only have ', gdMaxItemConfigs, ' item configurations.<br>';
    }
}
if ($action == "renameitemconfig") {
    $sql = "SELECT name FROM itemconfig WHERE id = '{$icid}'";
    $result = $db->query($sql);
    $name = $db->result($result, 0);
    fTitle("index.php?page=creatures&action=submitrenameitemconfig&icid={$icid}");
    fText("Name:", "name", $name);
    fEnd("Rename");
}
if ($action == "removeitemconfigset") {
    $no = 0;
    $sql = "SELECT count(*) FROM itemconfig WHERE account = '{$acc['id']}' AND id = '{$icid}'";
    $result = $db->query($sql);
    $numrows = $db->result($result, 0);
    if ($numrows != 1) {
        echo 'Invalid icid.<br>';
        $no = 1;
    } else {
        $sql = "SELECT count(*) FROM itemconfigset WHERE creature = '{$sid}' AND config = '{$icid}'";
        $result = $db->query($sql);
        $numrows = $db->result($result, 0);
        if ($numrows != 1) {
开发者ID:KristofMols,项目名称:castlequest2,代码行数:31,代码来源:creatures.php


示例5: topic

<?php

topic("{$library} curseshop");
if ($action == "newcurse") {
    echo '
		Please enter the name of the creature you want to be able to curse.<br>
		This choice is irreversible.
		';
    fTitle("index.php?page=library&action=submitnewcurse&curse={$curse}");
    fText("Creature:", "creature");
    fEnd("Learn Curse");
}
if (!$action) {
    echo '
		Welcome to my shop.<br>
		Some of the items here are too powerful for unexperienced magi, I really can\'t offer you those.<br>
		';
    if ($acc["level"] >= $gdCurseLevelMin) {
        // get curses already learned
        $sql = "SELECT s.code, s.id FROM skills AS s, accskills AS acs WHERE acs.account = '{$acc['id']}' AND acs.skill = s.id AND s.tree = 'curses'";
        $result = $db->query($sql);
        // settings
        $learnedCurses = array();
        $topProficiency = 0;
        $cursesActivated = false;
        while ($row = $db->fetch_array($result)) {
            // curses activated
            if ($row["code"] == gdsCurses) {
                $cursesActivated = TRUE;
            } elseif ($row["code"] == gdsExpert && $topProficiency < 1) {
                $topProficiency = 1;
开发者ID:KristofMols,项目名称:castlequest2,代码行数:31,代码来源:library.php


示例6: topic

<?php

topic("Creature And Item Database");
if (!$action) {
    echo '
		Enter the name of a creature or item in the field below to get information about that spell.
		You can only get information about the spells that are somewhat in your reach.
		Only creatures and items that have a usage level lower than your own will be available here.
		<br><br>
		';
    fTitle("index.php?page=spellinfo&action=viewinfo");
    fText("Spell Name:", "name");
    fEnd("Search");
}
if ($action == "viewinfo") {
    $no = 1;
    if ($type && $sid) {
        if ($type == "creature") {
            $sql = "SELECT count(*) FROM creatures WHERE id = '{$sid}'";
            $result = $db->query($sql);
            $numrows = $db->result($result, 0);
            if ($numrows == 1) {
                $no = 0;
            }
        }
        if ($type == "item") {
            $sql = "SELECT count(*) FROM items WHERE id = '{$sid}'";
            $result = $db->query($sql);
            $numrows = $db->result($result, 0);
            if ($numrows == 1) {
                $no = 0;
开发者ID:KristofMols,项目名称:castlequest2,代码行数:31,代码来源:spellinfo.php


示例7: topic

<?php

topic("Report Abuse");
if (!$action) {
    fTitle("index.php?page=reportabuse&action=submitabuse");
    fText("Account name of abuser:", "name");
    fTextArea("Abuse Description:", "description");
    fEnd("Submit");
    echo '
		You can report anything abusive you encounter here.<br>
		Typical abuse can be the use of offensive language or a player with more than one account.<br>
		';
}
if ($action == "submitabuse") {
    $no = 0;
    if (!$description) {
        echo 'You have to enter a description and an account name.<br>';
        $no = 1;
    }
    $sql = "SELECT id, name FROM accounts WHERE name = '{$name}'";
    $result = $db->query($sql);
    $numrows = $db->num_rows($result);
    if ($numrows != 1) {
        echo 'You have to enter a valid account name.<br>';
        $no = 1;
    } else {
        $row = $db->fetch_array($result);
        $name = "{$row['name']} (" . $cq2url . "index.php?page=playerinfo&action=viewinfo&aid={$row['id']}";
    }
    if ($no == 0) {
        $date = date("Y-m-d @ H:i");
开发者ID:KristofMols,项目名称:castlequest2,代码行数:31,代码来源:reportabuse.php


示例8: tEnd

        if ($offset < 0) {
            $offset = 0;
        }
        echo '<a href="index.php?page=battles&outgoingreportoffset=', $offset, '">previous</a>';
    }
    if ($outgoingreportoffset != 0 && $counter > $gdDisplayBattles) {
        echo '<br>';
    }
    if ($counter > $gdDisplayBattles) {
        $offset = $outgoingreportoffset + $gdDisplayBattles;
        echo '<a href="index.php?page=battles&outgoingreportoffset=', $offset, '">next</a>';
    }
    tEnd();
    tBegin("Attack");
    fTitle("index.php?page=battles&action=attack");
    fText("Target:", "targetname");
    fEnd("Attack");
    tEnd();
}
if ($action == "battleinfo") {
    $no = 0;
    $sql = "SELECT b.*, a.name AS aname, a.id AS aid, a.gender AS agender, k.id AS kid, k.name AS kname FROM battles AS b, accounts AS a, kingdoms AS k WHERE b.id = '{$bid}' AND b.account = '{$acc['id']}' AND b.status = '1' AND b.target = a.id AND a.kingdom = k.id";
    $result = $db->query($sql);
    $numrows = $db->num_rows($result);
    if ($numrows != 1) {
        echo 'Invalid data.<br>';
        $no = 1;
    }
    if ($no == 0) {
        $row = $db->fetch_array($result);
        tBegin("Status");
开发者ID:KristofMols,项目名称:castlequest2,代码行数:31,代码来源:battles.php


示例9: gCalcTimeDif

         $addon = "";
     } else {
         if ($row["timelimit"] == 0) {
             $addon = " for unlimited time";
         } else {
             $dif = gCalcTimeDif($row["timelimit"], $row["time"]);
             $addon = " for {$dif['days']} days";
         }
         $addon .= ", <a href=\"index.php?page=kingdom&action=changebandays&aid={$row['aid']}\">change</a>";
     }
     echo '<a href="index.php?page=playerinfo&action=viewinfo&aid=', $row["aid"], '">', $row["name"], '</a> by <a href="index.php?page=playerinfo&action=viewinfo&aid=', $row["banner"], '">', $row["bannername"], '</a> (since ', $date, '', $addon, ') - <a href="index.php?page=kingdom&action=unban&pbid=', $row["id"], '">unban</a><br>';
 }
 tEnd();
 tBegin("Ban Account");
 fTitle("index.php?page=kingdom&action=ban");
 fText("Name:", "name");
 fEnd("Ban");
 tEnd();
 if (in_array($acc["id"], $moderators)) {
     tBegin("Violations");
     $sql = "SELECT id, subject, days FROM violations ORDER BY subject ASC";
     $result = $db->query($sql);
     while ($row = $db->fetch_array($result)) {
         echo $row["subject"], ' (', $row["days"], '): <a href="index.php?page=kingdom&action=editviolation&vid=', $row["id"], '">edit</a>, <a href="index.php?page=kingdom&action=deleteviolation&vid=', $row["id"], '">delete</a><br>';
     }
     echo '<br><a href="index.php?page=kingdom&action=addviolation">Add violation.</a><br>';
     tEnd();
     tBegin("Violation Logs");
     echo '<a href="index.php?page=kingdom&action=violationlogs">View logs.</a>';
     tEnd();
 }
开发者ID:KristofMols,项目名称:castlequest2,代码行数:31,代码来源:kd_pub.php


示例10: round

        // cost based on creature level and spell multiplier (= positive effect on gem spell)
        if ($creature->data["baselevel"] == 0) {
            $creature->data["baselevel"] = 1;
        }
        $cost = round($basecost * $creature->data["baselevel"] * $gdGemSpells[$gemspell]["multiplier"] * gdGemSpellKDBCostMultiplier);
        // minimum/maximum investment
        $mincost = $cost;
        $maxcost = round($cost * gdGemSpellKDBMaxLevelBonusCostIncrease);
        echo '
			You are going to cast a ', $gdGemSpells[$gemspell]["name"], ' wave enchant on the ', $creature->data["creaturename"], ' creatures in the wave.<br>
			The quality of the spell depends on the amount of ', $creature->data["creaturename"], ' creatures in your kingdom and on the amount of resources you use for it.<br>
			The more resources you use, the higher your chance of casting a better spell.<br>
			You can invest between ', $mincost, ' and ', $maxcost, ' resources in this spell.<br>
			';
        fTitle("index.php?page=kingdom&action=submitcastenchantment&kdbid={$kdbid}&wave={$wave}&cid=" . $creature->data["cid"] . "&gemspell={$gemspell}");
        fText("Kingdom Resources:", "resources", "0");
        fEnd("Cast Enchantment");
    }
}
if ($action == "submitcastenchantment") {
    $no = 0;
    // get kingdom battle
    $sql = "SELECT * FROM kdbattles WHERE id = '{$kdbid}' AND (kingdom = '{$acc['kingdom']}' OR target = '{$acc['kingdom']}') AND building != '0'";
    $result = $db->query($sql);
    $numrows = $db->num_rows($result);
    if ($numrows != 1) {
        echo 'Invalid kingdom battle.<br>';
        $no = 1;
    } else {
        $kdbattle = $db->fetch_array($result);
        // we are the attackers -> we can only cast an enchantment during battle setup, and on any wave
开发者ID:KristofMols,项目名称:castlequest2,代码行数:31,代码来源:kd_warroom.php


示例11: addslashes

if ($action == "submiteditreport") {
    $sql = "SELECT r.*, a.name FROM reports AS r, accounts AS a WHERE r.id = '{$rid}' AND r.reporter = a.id";
    $result = $db->query($sql);
    $numrows = $db->num_rows($result);
    if ($numrows != 1) {
        echo 'Invalid report id.<br>';
    } else {
        $sql = "UPDATE reports SET text = '" . addslashes($text) . "' WHERE id = '{$rid}'";
        $result = $db->query($sql);
        echo 'Report modified!<br><br>';
        $action = "reports";
    }
}
if ($action == "forwardreport") {
    fTitle("index.php?page=admin&action=submitforwardreport&rid={$rid}");
    fText("Admin name:", "name");
    fEnd("Forward");
}
if ($action == "submitforwardreport") {
    $no = 0;
    $sql = "SELECT r.* FROM reports AS r WHERE r.id = '{$rid}'";
    $result = $db->query($sql);
    $numrows = $db->num_rows($result);
    if ($numrows != 1) {
        echo 'Invalid report id.<br>';
        $no = 1;
    }
    $sql = "SELECT id FROM accounts WHERE name = '{$name}'";
    $result = $db->query($sql);
    $numrows = $db->num_rows($result);
    if ($numrows != 1) {
开发者ID:KristofMols,项目名称:castlequest2,代码行数:31,代码来源:admin.php


示例12: fTitle

        }
    }
    echo '<table width="100%" border="0" cellspacing="0" cellpadding="0"><tr><td align="right">';
    if ($offset != 0) {
        $prevoffset = $offset - $gdPostMax;
        if ($prevoffset < 0) {
            $prevoffset = 0;
        }
        if ($filter) {
            echo '<a href="index.php?page=news&offset=', $prevoffset, '&filter=', $filter, '">previous page</a>';
        } else {
            echo '<a href="index.php?page=news&offset=', $prevoffset, '">previous page</a>';
        }
    }
    if ($offset != 0 && $more == TRUE) {
        echo ' - ';
    }
    if ($more == TRUE) {
        $nextoffset = $offset + $gdPostMax;
        if ($filter) {
            echo '<a href="index.php?page=news&offset=', $nextoffset, '&filter=', $filter, '">next page</a>';
        } else {
            echo '<a href="index.php?page=news&offset=', $nextoffset, '">next page</a>';
        }
    }
    echo '</td></tr></table>';
    fTitle("index.php?page=news");
    fText("Filter:", "filter", 0, 30);
    //		echo $filter;
    fEnd("Filter");
}
开发者ID:KristofMols,项目名称:castlequest2,代码行数:31,代码来源:newsindex.php


示例13: array

    }
} else {
    if ($hometeam && $awayteam) {
        $array = array(array("value" => "H", "name" => $hometeam), array("value" => "A", "name" => $awayteam));
        echo 'We are currently trying to predict the result of the game between ' . $hometeam . ' and ' . $awayteam . '.<p>
			
			You have to bet ' . $betamount . ' resources, and you\'re only allowed to wager once on each game.<br>
			In the form below you can enter the score, who scores first and in which minute this will happen.<br>
			If you predict a 0-0 result, enter which team will get a yellow card first and again in which minute this will happen.<br>
			For more information and rules, check the <a href=index.php?page=help&topic=Football%20gambling>help</a>.<p><br>';
        fTitle("index.php?page=lotto&action=gamble");
        fText("Brimstone:", "brimstone", "0");
        fText("Crystal:", "crystal", "0");
        fText("Essence:", "essence", "0");
        fText("Granite:", "granite", "0");
        echo '<tr><td><br><td></tr>';
        fText($hometeam . " score:", "homescore", "0");
        fText($awayteam . " score:", "awayscore", "0");
        echo '<tr><td><br><td></tr>';
        fRadio("First goal or yellow card:", "firstscore", $array);
        fText("In which minute?", "minute", "0");
        echo '<tr><td><br><td></tr>';
        fEnd("Place bet");
    } else {
        echo 'There is currently no game to bet on.';
    }
}
?>


开发者ID:KristofMols,项目名称:castlequest2,代码行数:28,代码来源:lotto.php


示例14: database

<?php

include_once "../data.php";
include_once "../functions/gamefunctions.php";
include_once "../functions/tablefunctions.php";
$db = new database();
$db->connect($db_server, $db_login, $db_password);
$db->select_db($db_database);
if (!$action) {
    fTitle("speed.php");
    fText("Action:", "action");
    fTextarea("Add:", "text");
    fEnd("Add");
}
if ($action == "orbs") {
    $lines = explode("\n", $text);
    $counter = 0;
    // create buildings
    foreach ($lines as $line) {
        $values = explode("\t", $line);
        foreach ($values as $key => $value) {
            $values[$key] = trim($value);
        }
        $sql = "\r\n\t\t\tINSERT INTO orbs (color, cost, min_gems, max_gems, min_uses, max_uses, rarity_mod, rarity_description) \r\n\t\t\tVALUES ('{$values['0']}', '{$values['1']}', '{$values['2']}', '{$values['3']}', '{$values['4']}', '{$values['5']}', '" . str_replace(",", ".", $values[6]) . "', '{$values['7']}')\r\n\t\t\t";
        $result = $db->query($sql);
        $counter++;
    }
    echo "{$counter} added.";
}
if ($action == "signs") {
    $lines = explode("\n", $text);
开发者ID:KristofMols,项目名称:castlequest2,代码行数:31,代码来源:speed.php


示例15: while

        $result = $db->query($sql);
        while ($row = $db->fetch_array($result)) {
            $left[$row["type"]] = $max[$row["type"]] - $row["aantal"];
        }
        while (list($key, $value) = each($max)) {
            if (!isset($left[$key])) {
                $left[$key] = $value;
            }
        }
        fTitle("index.php?page=tshirt&action=order");
        $array = array(array("name" => "Large (" . $left["L"] . " left)", "value" => "L"), array("name" => "Extra Large (" . $left["XL"] . " left)", "value" => "XL"), array("name" => "Extra Extra Large (" . $left["XXL"] . " left)", "value" => "XXL"));
        fRadio("T-shirt size:", "type", $array, 0);
        fText("Real name:", "realname");
        fText("Street + number:", "street");
        fText("Postcode:", "postcode");
        fText("Town:", "town");
        fEnd("Order");
    }
}
if ($action == "order") {
    if (!in_array($type, array("L", "XL", "XXL"))) {
        echo 'Invalid t-shirt size.<br>';
        $no = 1;
    } else {
        $sql = "SELECT count(*) FROM tshirt WHERE account = '{$acc['id']}'";
        $result = $db->query($sql);
        $numrows = $db->result($result, 0);
        if ($numrows != 0) {
            echo 'You have already ordered a t-shirt.<br>';
            $no = 1;
            $action = "output";
开发者ID:KristofMols,项目名称:castlequest2,代码行数:31,代码来源:tshirt.php


示例16: array

    $result = $db->query($sql);
    $array[0] = array("name" => "No Root", "value" => 0);
    $m = 1;
    while ($newrow = $db->fetch_array($result)) {
        $array[$m]["name"] = $newrow["name"];
        $array[$m]["value"] = $newrow["id"];
        if ($row["root"] == $newrow["id"]) {
            $default = $m;
        }
        $m++;
    }
    if ($row["root"] == "") {
        $default = 0;
    }
    fSelect("Root:", "root", $array, $default);
    fText("Value:", "value", $row["value"]);
    fEnd("Change");
}
if ($action == "submitchangebuilding") {
    $no = 0;
    if (!$name || !$granite || !$level || !$bid) {
        echo 'Data is incomplete.';
        $no = 1;
    }
    if (!$type) {
        $type = 0;
    }
    if (!$value) {
        $value = 0;
    }
    $sql = "SELECT id FROM buildings WHERE name = '{$name}'";
开发者ID:KristofMols,项目名称:castlequest2,代码行数:31,代码来源:abuildings.php


示例17: fTitle

        $i++;
    }
    if ($numrows == 0) {
        echo 'You haven\'t learned any enchantments yet.<br>';
    } else {
        if (isset($aiid)) {
            fTitle("index.php?page=items&action=submitenchant&aiid={$aiid}");
        } else {
            fTitle("index.php?page=items&action=submitenchant&amid={$amid}");
        }
        fSelect("Enchantment:", "enchantment", $array, $default);
        fText("Brimstone:", "brimstone", $brimstone > 0 ? "{$brimstone}" : "0");
        fText("Crystal:", "crystal", $crystal > 0 ? "{$crystal}" : "0");
        fText("Essence:", "essence", $essence > 0 ? "{$essence}" : "0");
        fText("Granite:", "granite", $granite > 0 ? "{$granite}" : "0");
        fText("Creature race:", "race", $crace > 0 ? "{$crace}" : "");
        fEnd("Add resources");
    }
}
if ($action == "usepackage") {
    $no = 0;
    if ($acc["attacked"]) {
        echo 'You can\'t use a package while under attack.<br>';
        $no = 1;
    }
    $sql = "LOCK TABLES packages WRITE, accounts WRITE";
    $result = $db->query($sql);
    $sql = "SELECT type, amount FROM packages WHERE id = '{$pid}' AND account = '{$acc['id']}'";
    $result = $db->query($sql);
    $numrows = $db->num_rows($result);
    if ($numrows != 1) {
开发者ID:KristofMols,项目名称:castlequest2,代码行数:31,代码来源:items.php


示例18: round

            case 6:
                $resource = "essence";
                break;
            case 7:
                $resource = "granite";
                break;
        }
        $maxres = round($acc[$resource] * gdGamblingDwarfMax);
        echo '
				You encounter ', $gdEncounters[$encounter][0], '.<br>
				He offers you a ', $resource, ' gambling challenge.<br>
				You can gain a lot of ', $resource, ' and you can lose a lot, but you can never lose more than you invest.<br>
				You can gamble for at most ', $maxres, ' ', $resource, ' in one game.<br>
				';
        fTitle("index.php?page=travel&action=encounter");
        fText("{$resource} to invest:", "amount", "", 5);
        fEnd("Gamble");
    }
    if ($encounter == 8) {
        echo '
				You encounter ', $gdEncounters[$encounter][0], '.<br>
				He is an unusually powerful dwarf.<br>
				If you give him a gem and some additional resources, he will give you some of his power.<br><br>
				';
        $sql = "SELECT g.id AS gid, g.level AS glevel, g.type AS gtype, g.quality, s.name AS signname, s.rarity, s.type AS signtype FROM gems AS g, signs AS s WHERE g.owner = 'mage' AND g.target = '{$acc['id']}' AND g.sign = s.id";
        $result = $db->query($sql);
        $numrows = $db->num_rows($result);
        if ($numrows == 0) {
            echo 'Unfortunately, you do not have any gems.<br>';
        } else {
            echo 'Select a gem from the list to give it to him.<br><br>';
开发者ID:KristofMols,项目名称:castlequest2,代码行数:31,代码来源:t_encounters.php


示例19: fTitle

<?php

if ($action == "summoncreatures") {
    $sql = "SELECT name FROM creatures WHERE id = '{$cid}'";
    $result = $db->query($sql);
    $name = $db->result($result, 0);
    echo 'How many ', $name, ' amulets do you want to summon?<br><br><br>';
    fTitle("index.php?page=spellbook&action=submitsummoncreatures&cid={$cid}");
    fText("Amount:", "amount", 1, 5);
    fEnd("Summon Amulets");
}
if ($action == "race" || $action == "race_as") {
    $no = 0;
    if (!$rid) {
        echo 'Invalid data.<br>';
        $no = 1;
    } else {
        $sql = "SELECT class FROM races WHERE id = '{$rid}'";
        $result = $db->query($sql);
        $class = $db->result($result, 0);
        $value = $acc[strtolower($gdClass[$class - 1]["name"])];
        $core = "ROUND(((( c.damage * 2) + (2/30*(( r.forest + r.death + r.air + r.earth )/40* c.health ) + 2/3* c.health )) * (1 - (c.skillbonus / 100))), 0)";
        $maincheck = "({$core} /100* (100 - {$gdSkillDifference}))";
        $check = "(ROUND({$maincheck}) <= {$value})";
        $end = "ORDER BY {$core} ASC";
        $sql = "SELECT {$gdTravelChallengeCreatureSelect}, b.name AS buildingname FROM (creatures AS c, races AS r) LEFT JOIN accbuildings AS ab ON c.building = ab.building AND ab.account = '{$acc['id']}' LEFT JOIN buildings AS b ON b.id = c.building WHERE c.race = r.id AND r.id = '{$rid}' AND (c.building = '0' OR ab.building = c.building) AND c.type = '0' AND ({$check}) {$end}";
        $result = $db->query($sql);
        $numrows = $db->num_rows($result);
        if ($numrows == 0) {
            echo 'Invalid race.';
            $no = 1;
开发者ID:KristofMols,项目名称:castlequest2,代码行数:31,代码来源:sb_creatures.php


示例20: fTitle

<?php

include_once "functions/tablefunctions.php";
if (!$action) {
    fTitle("random.php?action=generate");
    fText("Amount of numbers to generate:", "amount", "1");
    fText("Min value to generate:", "min", "1");
    fText("Max value to generate:", "max", "100");
    fText("Lower or equal than:", "lower", "50");
    fEnd("Generate");
}
if ($action == "generate") {
    // generate results
    $results = array_fill($min, $max - $min + 1, 0);
    for ($i = 0; $i < $amount; $i++) {
        $pick = rand($min, $max);
        $results[$pick]++;
    }
    // print all results
    echo '<table width="55" border="0" cellspacing="0" cellpadding="0">';
    $total = 0;
    for ($i = $min; $i <= $max; $i++) {
        echo '
			<tr><td width="25" align="right">
			', $i, '
			</td><td width="5"></td><td width="25">
			</td><td width="25" align="left">
			', $results[$i], '
			</td></tr>
			';
        if ($i <= $lower) {
开发者ID:KristofMols,项目名称:castlequest2,代码行数:31,代码来源:random.php



注:本文中的fText函数示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
PHP fTitle函数代码示例发布时间:2022-05-15
下一篇:
PHP fSetCookie函数代码示例发布时间:2022-05-15
热门推荐
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap