Example #1
0
function GetBackEquip($var, $gm)
{
    global $tbl_sys_msg, $page_main, $tbl_role_equip_info;
    $js_str = <<<_js_str
\t<script type="text/javascript" src="/js/page.js"></script>
\t<script type="text/javascript">
\tfunction getback(){
\t\tdocument.form1.target = "_block";
\t\tdocument.form1.action_name.value="166";
\t\tdocument.form1.submit();
\t}
\t</script>
_js_str;
    $server_id = $var["serverid"];
    $item_id = $var["item_id"];
    $event_id = $var["event_id"];
    $str = " order by le_uId desc limit 1";
    if ($event_id != null || $event_id != "") {
        $str = " and le_uId <= {$event_id}" . $str;
    }
    $allowe = HasAuth(166, $gm);
    $qs = "select lcs_uId, le.le_dtDateTime, let.let_uEventType, le.le_uId from tbl_log_item_del lid, tbl_log_player_giver lpg, tbl_log_event le, tbl_log_event_type let where le.le_uId = lid.le_uId and let.le_uId = lid.le_uId and lid.le_uId = lpg.le_uId and lis_uId = {$item_id}";
    $rs = MySQLQuery($qs, "Log", $server_id);
    if ($row = mysql_fetch_row($rs)) {
        global $tbl_event_type;
        $desc = ShowVirWealthLog_Desc($row[2], $row[3], $server_id);
        echo "<table class='list_table'>\n";
        printf("<tr><td style='width:120px;'>%s</td><td style='width:250px;'>%s</td><td>%s</td></tr>\n", $row[1], $tbl_event_type[$row[2]], $desc);
        echo "</table>\n";
        $role_id = $row[0];
        $role_name = GetRoleName($role_id, $server_id);
        if ($role_name == "-") {
            $allowe = false;
        }
    } else {
        //$allowe = false;
    }
    printf($js_str, $tbl_sys_msg["reason"]) . "\n";
    form($var, $gm);
    $style = <<<_style
<style>
.equip {
\twidth: 230px;
\tborder: 1px solid #ccc;
\tpadding:10px;
\tfloat:left;
}
.equip div{
\tfloat:left;
}
.equip .head, .equip .binding, .equip .durability, .equip .armor, .equip .armor .armor_item, .equip .advance, .equip .advance_item, .equip .intensify, .equip .intensify .intensify_item, .equip .equip_info .armor_item, .equip .JingLing {
\twidth: 230px;
}
.equip .head .name {
\tfloat:left;
}
.equip .head .level, .equip .equip_info .weapon_speed, .equip .intensify .intensify_total, .equip .advance .advance_times, .equip .addation, .equip .JingLingSkill {
\tfloat:right;
\ttext-align:right;
\tclear: right;
}
.equip .binding, .equip .durability {
\ttext-align:right;
}
.equip .armor .armor_item .armor_name, .equip .advance .advance_item .advance_name, .equip .intensify .intensify_name, .equip .equip_info .armor_item .armor_name {
\twidth: 80px;
}
.equip .armor .armor_item .armor_value,.equip .advance .advance_item .advance_value,.equip .intensify .intensify_value,.equip .equip_info .armor_item .armor_value {
\twidth: 30px;
}
.equip .armor, .equip .advance, .equip .intensify, .equip .JingLing {
\tmargin-top: 5px;
}
</style>
_style;
    echo $style;
    echo "<div class='equip'>\n";
    $qs = "select * from tbl_log_item_static where lis_uId = {$item_id}";
    $result = MySQLQuery($qs, "Log", $server_id);
    if ($row = mysql_fetch_row($result)) {
        $item_type = $row[1];
        $item_name = Local2UTF8($row[2]);
    } else {
        return false;
    }
    $attr = array();
    $attr["Static"] = array();
    $attr["ShieldAttr"] = array();
    $attr["Advance"] = array();
    $attr["Armor1"] = array();
    $attr["Armor2"] = array();
    $attr["Armor3"] = array();
    $attr["Armor4"] = array();
    $attr["Intensify"] = array();
    $attr["InTensifyAddAttr"] = array();
    $attr["Durability"] = array();
    $attr["Binding"] = array();
    $attr["SuperAddation"] = array();
    switch ($item_type) {
        case 5:
            //weapon
            $qs = "select * from tbl_log_item_weapon where lis_uId = {$item_id}" . $str;
            $result = MySQLQuery($qs, "Log", $server_id);
            if ($row = mysql_fetch_row($result)) {
                $attr["Static"] = $row;
                $level = $row[2];
                $intensify = $row[7];
                $inten = $row[8];
                $DPS = $row[4];
                $speed = $row[5];
                $rate = $row[6];
                $min_attack = intval($DPS * $speed * (1 - $rate * 0.01));
                $max_attack = intval($DPS * $speed * (1 + $rate * 0.01));
                $equip_info = "<div class='weapon_attack'>" . sprintf($tbl_role_equip_info[1][0][0], $min_attack, $max_attack) . "<br/>" . sprintf($tbl_role_equip_info[1][0][2], $DPS) . "</div>\n<div class='weapon_speed'>" . sprintf($tbl_role_equip_info[1][0][1], $speed) . "</div>\n";
            }
            break;
        case 6:
            //armor
        //armor
        case 9:
            //Jewelry
            $qs = "select * from tbl_log_item_armor where lis_uId = {$item_id}" . $str;
            $result = MySQLQuery($qs, "Log", $server_id);
            if ($row = mysql_fetch_row($result)) {
                $attr["Static"] = $row;
                $level = $row[2];
                $intensify = $row[8];
                $inten = $row[9];
                $equip_info = "<div class='armor_item'><div class='armor_name'>" . $tbl_role_equip_info[1][1][0] . "</div><div class='armor_value'>+" . $row[4] . "</div></div>\n";
                $equip_info .= "<div class='armor_item'><div class='armor_name'>" . $tbl_role_equip_info[1][1][1] . "</div><div class='armor_value'>+" . $row[5] . "</div></div>\n";
                $equip_info .= "<div class='armor_item'><div class='armor_name'>" . $tbl_role_equip_info[1][1][2] . "</div><div class='armor_value'>+" . $row[6] . "</div></div>\n";
            }
            break;
        case 7:
            //shield
            $qs = "select * from tbl_log_item_shield where lis_uId = {$item_id}" . $str;
            $result = MySQLQuery($qs, "Log", $server_id);
            if ($row = mysql_fetch_row($result)) {
                $attr["Static"] = $row;
                $level = $row[2];
                $intensify = $row[4];
                $inten = $row[5];
            }
            $qs = "select * from tbl_log_item_shield_Attr where lis_uId = {$item_id}" . $str;
            $result = MySQLQuery($qs, "Log", $server_id);
            if ($row = mysql_fetch_row($result)) {
                $attr["ShieldAttr"] = $row;
            }
            break;
        case 8:
            //ring
            $qs = "select * from tbl_log_item_ring where lis_uId = {$item_id}" . $str;
            $result = MySQLQuery($qs, "Log", $server_id);
            if ($row = mysql_fetch_row($result)) {
                $attr["Static"] = $row;
                $level = $row[2];
                $intensify = $row[6];
                $inten = $row[7];
                $DPS = $row[4];
                $equip_info = "<div class='ring_attack'>" . sprintf($tbl_role_equip_info[1][2][0], $DPS) . "</div>\n";
            }
            break;
    }
    $addation = 0;
    $qs = "select * from tbl_log_item_equip_superaddation where lis_uId = {$item_id}";
    $result = MySQLQuery($qs, "Log", $server_id);
    if ($row = mysql_fetch_row($result)) {
        $attr["SuperAddation"] = $row;
        $addation = $row[2];
    }
    $addation_rate = 0;
    $addation_time = "";
    $addation_desc = "";
    switch ($addation) {
        case 1:
            $addation_rate = 10;
            break;
        case 2:
            $addation_rate = 21;
            break;
        case 3:
            $addation_rate = 33;
            break;
        case 4:
            $addation_rate = 46;
            break;
        case 5:
            $addation_rate = 60;
            break;
        case 6:
            $addation_rate = 75;
            break;
        case 7:
            $addation_rate = 91;
            break;
        case 8:
            $addation_rate = 108;
            break;
    }
    if ($addation > 0) {
        $addation_time = "&nbsp;+" . $addation;
        $addatiom_desc = "<div class='addation'>(" . $tbl_role_equip_info[6] . $addation_rate . "%)</div>\n";
    }
    $inten_times = 0;
    $qs = "select * from tbl_log_item_equip_intensify where lis_uId = {$item_id}" . $str;
    $result = MySQLQuery($qs, "Log", $server_id);
    if ($row = mysql_fetch_row($result)) {
        $attr["Intensify"] = $row;
        $inten_times = $row[11];
        $inten_totle = $row[15];
        $suit_info = Lan_Equip_GetSuitInfo(Local2UTF8($row[13]), $row[17]);
        $suit_name = $suit_info["name"];
        if ($row[7]) {
            $inten_info .= "<div class='intensify_item'>\n<div class='intensify_name'>" . Lan_Equip_GetPropertyName(Local2UTF8($row[7])) . "</div>\n<div class='intensify_value'>+" . $row[8] . "</div>\n" . ($addation == 0 ? "" : "<div class='addation'>(+" . ceil($addation_rate * $row[8] / 100) . ")</div>\n") . "</div>\n";
        }
        if ($row[9]) {
            $inten_info .= "<div class='intensify_item'>\n<div class='intensify_name'>" . Lan_Equip_GetPropertyName(Local2UTF8($row[9])) . "</div>\n<div class='intensify_value'>+" . $row[10] . "</div>\n" . ($addation == 0 ? "" : "<div class='addation'>(+" . ceil($addation_rate * $row[10] / 100) . ")</div>\n") . "</div>\n";
        }
    }
    if ($suit_name != "") {
        $suit_name .= "<br/>";
    }
    echo "<div class='head'>\n<div class='name'>" . $suit_name . Lan_Item_GetDisplayName($item_name, $item_tupe, false) . $addation_time . "</div>\n<div class='level'>" . $level . $tbl_role_equip_info[7] . "</div>\n" . $addatiom_desc . "</div>\n";
    $qs = "select * from tbl_log_item_binding where lis_uId = {$item_id}" . $str;
    $result = MySQLQuery($qs, "Log", $server_id);
    if ($row = mysql_fetch_row($result)) {
        if ($row[2] > 0) {
            global $tbl_item_is_binding;
            echo "<div class='binding'>" . $tbl_item_is_binding[$row[2]] . "</div>\n";
        }
        $row[2] = 2;
        $attr["Binding"] = $row;
    }
    $qs = "select * from tbl_log_item_equip_durability where lis_uId = {$item_id}" . $str;
    $result = MySQLQuery($qs, "Log", $server_id);
    if ($row = mysql_fetch_row($result)) {
        $attr["Durability"] = $row;
        echo "<div class='durability'>" . sprintf($tbl_role_equip_info[0], $row[3], $row[2]) . "</div>\n";
    }
    echo "<div class='equip_info'>\n{$equip_info}</div>\n";
    echo "<div class='armor'>\n";
    $qs = "select * from tbl_log_item_equip_armor where lis_uId = {$item_id} and liea_uIndex = 1" . $str;
    $result = MySQLQuery($qs, "Log", $server_id);
    if ($row = mysql_fetch_row($result)) {
        $attr["Armor" . $row[4]] = $row;
        echo "<div class='armor_item'>\n";
        $armor = Lan_Equip_GetArmorPiece(Local2UTF8($row[2]));
        echo "<div class='armor_name'>" . $armor[1] . "</div>\n";
        echo "<div class='armor_value'>+" . $armor[2] * $row[3] . "</div>\n";
        if ($armor[0] > 1) {
            echo "<div class='aromr_time'>(" . $row[3] . "/" . $armor[0] . ")</div>\n";
        }
        echo "</div>\n";
    }
    $qs = "select * from tbl_log_item_equip_armor where lis_uId = {$item_id} and liea_uIndex = 2" . $str;
    $result = MySQLQuery($qs, "Log", $server_id);
    if ($row = mysql_fetch_row($result)) {
        $attr["Armor" . $row[4]] = $row;
        echo "<div class='armor_item'>\n";
        $armor = Lan_Equip_GetArmorPiece(Local2UTF8($row[2]));
        echo "<div class='armor_name'>" . $armor[1] . "</div>\n";
        echo "<div class='armor_value'>+" . $armor[2] * $row[3] . "</div>\n";
        if ($armor[0] > 1) {
            echo "<div class='aromr_time'>(" . $row[3] . "/" . $armor[0] . ")</div>\n";
        }
        echo "</div>\n";
    }
    $qs = "select * from tbl_log_item_equip_armor where lis_uId = {$item_id} and liea_uIndex = 3" . $str;
    $result = MySQLQuery($qs, "Log", $server_id);
    if ($row = mysql_fetch_row($result)) {
        $attr["Armor" . $row[4]] = $row;
        echo "<div class='armor_item'>\n";
        $armor = Lan_Equip_GetArmorPiece(Local2UTF8($row[2]));
        echo "<div class='armor_name'>" . $armor[1] . "</div>\n";
        echo "<div class='armor_value'>+" . $armor[2] * $row[3] . "</div>\n";
        if ($armor[0] > 1) {
            echo "<div class='aromr_time'>(" . $row[3] . "/" . $armor[0] . ")</div>\n";
        }
        echo "</div>\n";
    }
    $qs = "select * from tbl_log_item_equip_armor where lis_uId = {$item_id} and liea_uIndex = 4" . $str;
    $result = MySQLQuery($qs, "Log", $server_id);
    if ($row = mysql_fetch_row($result)) {
        $attr["Armor" . $row[4]] = $row;
        echo "<div class='armor_item'>\n";
        $armor = Lan_Equip_GetArmorPiece(Local2UTF8($row[2]));
        echo "<div class='armor_name'>" . $armor[1] . "</div>\n";
        echo "<div class='armor_value'>+" . $armor[2] * $row[3] . "</div>\n";
        if ($armor[0] > 1) {
            echo "<div class='aromr_time'>(" . $row[3] . "/" . $armor[0] . ")</div>\n";
        }
        echo "</div>\n";
    }
    echo "</div>\n";
    $qs = "select * from tbl_log_item_equip_advance where lis_uId = {$item_id}" . $str;
    $result = MySQLQuery($qs, "Log", $server_id);
    if ($row = mysql_fetch_row($result)) {
        $attr["Advance"] = $row;
        echo "<div class='advance'>\n";
        $advance_name = Local2UTF8($row[16]);
        $advance_cur_tiems = $row[2];
        $advance_tot_tiems = $row[3];
        if ($advance_tot_tiems > 0) {
            echo "<div class='advance_item'>\n<div class='advance_name'>" . sprintf($tbl_role_equip_info[2], $advance_name) . "</div>\n<div class='advance_value'>" . $advance_cur_tiems . "/" . $advance_tot_tiems . "</div>\n<div class='advance_times'>" . sprintf($tbl_role_equip_info[5], $row[11]) . "</div>\n</div>\n";
        }
        if ($row[12] != 0) {
            echo "<div class='advance_item'>\n<div class='advance_name'>" . Lan_Equip_GetPropertyName(Local2UTF8($row[17])) . "</div>\n<div class='advance_value'>+" . $row[12] . "</div>\n" . ($addation == 0 ? "" : "<div class='addation'>(+" . ceil($addation_rate * $row[12] / 100) . ")</div>\n") . "</div>\n";
        }
        if ($row[13] != 0) {
            echo "<div class='advance_item'>\n<div class='advance_name'>" . Lan_Equip_GetPropertyName(Local2UTF8($row[18])) . "</div>\n<div class='advance_value'>+" . $row[13] . "</div>\n" . ($addation == 0 ? "" : "<div class='addation'>(+" . ceil($addation_rate * $row[13] / 100) . ")</div>\n") . "</div>\n";
        }
        if ($row[14] != 0) {
            echo "<div class='advance_item'>\n<div class='advance_name'>" . Lan_Equip_GetPropertyName(Local2UTF8($row[19])) . "</div>\n<div class='advance_value'>+" . $row[14] . "</div>\n" . ($addation == 0 ? "" : "<div class='addation'>(+" . ceil($addation_rate * $row[14] / 100) . ")</div>\n") . "</div>\n";
        }
        if ($row[15] != 0) {
            echo "<div class='advance_item'>\n<div class='advance_name'>" . Lan_Equip_GetPropertyName(Local2UTF8($row[20])) . "</div>\n<div class='advance_value'>+" . $row[15] . "</div>\n" . ($addation == 0 ? "" : "<div class='addation'>(+" . ceil($addation_rate * $row[15] / 100) . ")</div>\n") . "</div>\n";
        }
        $JingLingType = Local2UTF8($row[9]);
        $JingLingSkill = $row[8];
        echo "</div>\n";
    }
    global $tbl_item_inten_soul;
    $qs = "select * from tbl_log_item_equip_intensifyAddAttr where lis_uId = {$item_id}" . $str;
    $result = MySQLQuery($qs, "Log", $server_id);
    if ($row = mysql_fetch_row($result)) {
        $attr["InTensifyAddAttr"] = $row;
        if ($row[2]) {
            $inten_info .= "<div class='intensify_item'>\n<div class='intensify_name'>" . Lan_Equip_GetPropertyName(Local2UTF8($row[2])) . "</div>\n<div class='intensify_value'>+" . $row[3] . "</div>\n" . ($addation == 0 ? "" : "<div class='addation'>(+" . ceil($addation_rate * $row[3] / 100) . ")</div>\n") . "</div>\n";
        }
        if ($row[4]) {
            $inten_info .= "<div class='intensify_item'>\n<div class='intensify_name'>" . Lan_Equip_GetPropertyName(Local2UTF8($row[4])) . "</div>\n<div class='intensify_value'>+" . $row[5] . "</div>\n" . ($addation == 0 ? "" : "<div class='addation'>(+" . ceil($addation_rate * $row[5] / 100) . ")</div>\n") . "</div>\n";
        }
        if ($row[6]) {
            $inten_info .= "<div class='intensify_item'>\n<div class='intensify_name'>" . Lan_Equip_GetPropertyName(Local2UTF8($row[6])) . "</div>\n<div class='intensify_value'>+" . $row[7] . "</div>\n" . ($addation == 0 ? "" : "<div class='addation'>(+" . ceil($addation_rate * $row[7] / 100) . ")</div>\n") . "</div>\n";
        }
        if ($row[8]) {
            $inten_info .= "<div class='intensify_item'>\n<div class='intensify_name'>" . Lan_Equip_GetPropertyName(Local2UTF8($row[8])) . "</div>\n<div class='intensify_value'>+" . $row[9] . "</div>\n" . ($addation == 0 ? "" : "<div class='addation'>(+" . ceil($addation_rate * $row[9] / 100) . ")</div>\n") . "</div>\n";
        }
        if ($row[10]) {
            $inten_info .= "<div class='intensify_item'>\n<div class='intensify_name'>" . Lan_Equip_GetPropertyName(Local2UTF8($row[10])) . "</div>\n<div class='intensify_value'>+" . $row[11] . "</div>\n" . ($addation == 0 ? "" : "<div class='addation'>(+" . ceil($addation_rate * $row[11] / 100) . ")</div>\n") . "</div>\n";
        }
        if ($row[12]) {
            $inten_info .= "<div class='intensify_item'>\n<div class='intensify_name'>" . Lan_Equip_GetPropertyName(Local2UTF8($row[12])) . "</div>\n<div class='intensify_value'>+" . $row[13] . "</div>\n" . ($addation == 0 ? "" : "<div class='addation'>(+" . ceil($addation_rate * $row[13] / 100) . ")</div>\n") . "</div>\n";
        }
    }
    echo "<div class='intensify'>\n";
    echo "<div class='intensify_item'>\n";
    if ($intensify > 0) {
        echo "<div class='intensify_name'>" . sprintf($tbl_role_equip_info[3], $tbl_item_inten_soul[Local2base64($inten)]) . "</div>\n<div class='intensify_value'>{$inten_times}/{$intensify}</div>\n";
    }
    if ($inten_totle) {
        echo "<div class='intensify_total'>" . sprintf($tbl_role_equip_info[4], $inten_totle) . "</div>\n";
    }
    echo "</div>\n";
    echo $inten_info;
    echo "<div class='intensify_item'>\n";
    if ($suit_info["name"] != null) {
        echo $suit_info["name"] . "\n";
    }
    echo "<div style='margin-left: 10px'>\n";
    if ($suit_info["part"] != null) {
        foreach ($suit_info["part"] as $part) {
            echo $suit_info["name"] . $part . "<br/>\n";
        }
    }
    if ($suit_info["desc"] != null) {
        foreach ($suit_info["desc"] as $i => $desc) {
            printf($tbl_role_equip_info[8], $i);
            echo $desc . "<br/>\n";
        }
    }
    echo "</div>\n";
    if ($suit_info["talent"] != null) {
        echo "<div>" . $tbl_role_equip_info[9] . $suit_info["talent"] . "</div>\n";
    }
    echo "</div>\n";
    echo "</div>\n";
    global $tbl_JingLing_type;
    echo "<div class='JingLing'><div>" . $tbl_JingLing_type[UTF82Base64($JingLingType)] . "</div>";
    if ($JingLingSkill > 0) {
        echo "<div class='JingLingSkill'>" . Lan_Equip_GetSkillName($JingLingType, $JingLingSkill) . "</div>";
    }
    echo "</div>\n";
    echo "</div>\n";
    echo "</div>\n";
    if ($allowe) {
        $attrstr = $item_name . "," . $item_type . "," . $item_id . ";";
        $attrstr .= attrtostr($attr["Static"]) . ";";
        $attrstr .= attrtostr($attr["ShieldAttr"]) . ";";
        $attrstr .= attrtostr($attr["Advance"]) . ";";
        $attrstr .= attrtostr($attr["Armor1"]) . ";";
        $attrstr .= attrtostr($attr["Armor2"]) . ";";
        $attrstr .= attrtostr($attr["Armor3"]) . ";";
        $attrstr .= attrtostr($attr["Armor4"]) . ";";
        $attrstr .= attrtostr($attr["Intensify"]) . ";";
        $attrstr .= attrtostr($attr["InTensifyAddAttr"]) . ";";
        $attrstr .= attrtostr($attr["Durability"]) . ";";
        $attrstr .= ",,2,;";
        $attrstr .= attrtostr($attr["SuperAddation"]) . ";";
        echo "<input type='hidden' name='attr' value='{$attrstr}'/>\n";
        echo "<table style='float: left; margin-left: 20px;'>\n";
        echo "<tr><th>" . $page_main["role_name"] . "</th><td><input type='text' name='role_name' value='{$role_name}'" . ($role_name == "" ? "" : " readonly=\"readonly\"") . " /></td></tr>\n";
        echo "<tr><th>" . $tbl_sys_msg["reason"] . "</th><td><textarea name='reason' style='width:300px;'></textarea></td></tr>\n";
        echo "<tr><th>&nbsp;</th><td><input type='button' onclick='getback()' value='" . $tbl_sys_msg["submit"] . "' /></td></tr>\n";
        echo "</table>\n";
    }
    echo "</form>\n";
    return true;
}
Example #2
0
function ArgRoleName()
{
    if ($_REQUEST["role_item"] == "id") {
        return GetRoleName($_REQUEST["role_str"], $_REQUEST["serverid"]);
    } else {
        return $_REQUEST["role_str"];
    }
}
Example #3
0
function GetTongItemLog($var, $gm)
{
    global $tbl_sys_msg, $page_main, $tbl_tong_depot_log, $tbl_tong_pos;
    $server_id = $var["serverid"];
    $tong_name = $var["tong_name"];
    LastLogTime();
    $qs = "select t_uId from tbl_tong where t_sName = '{$tong_name}'";
    $rs = MySQLQuery($qs, "Game", $server_id);
    if ($row = mysql_fetch_row($rs)) {
        $tong_id = $row[0];
    } else {
        PrintNotice($tbl_sys_msg["nobody"]);
        return false;
    }
    echo "<table class='list_table'>\n";
    printf("<tr><th style='width:120px;'>%s</th><th>%s</th><th>%s</th><th>%s</th><th>%s</th></tr>\n", $tbl_sys_msg["time"], $page_main["type"], $page_main["item"], $page_main["number"], $page_main["role_name"] . "(" . $page_main["position"] . ")");
    $qs = "select le.le_dtDateTime, ltd.ltd_uType, lis.lis_sName, ltd.ltd_uExecutorId, ltd.ltd_uExecutorPosition, count(*) ";
    $qs .= "from tbl_log_tong_depot ltd, tbl_log_event le, tbl_log_item_static lis ";
    $qs .= "where ltd.le_uId = le.le_uId and ltd.lis_uId = lis.lis_uId and ";
    $qs .= "lts_uId = {$tong_id}" . getDateLimit($var, $server_id) . " ";
    $qs .= "group by le.le_dtDateTime, lis.lis_sName, ltd.ltd_uExecutorId";
    $result = MySQLQuery($qs, "Log", $server_id);
    while ($row = mysql_fetch_row($result)) {
        if ($row[3] == 0) {
            $role_name = $tbl_sys_msg["admin"];
        } else {
            $role_name = GetRoleName($row[3], $server_id);
        }
        if ($row[4] == 0) {
            $position = $tbl_sys_msg["admin"];
        } else {
            $position = $tbl_tong_pos[$row[4]];
        }
        printf("<tr><td>%s</td><td>%s</td><td>%s</td><td>%s</td><td>%s</td></tr>\n", $row[0], $tbl_tong_depot_log[$row[1]], Lan_Item_GetDisplayName(Local2UTF8($row[2])), $row[5], $role_name . "(" . $position . ")");
    }
    echo "</table>\n";
    return true;
}
Example #4
0
function GetTongLog_Boss($var, $gm)
{
    global $tbl_sys_msg, $page_main, $tbl_tong_msg;
    $boss_name = $var["boss_name"];
    $serverid = $var["serverid"];
    LastLogTime();
    $query = "select le.le_dtDateTime, lpt.lcs_uId from tbl_log_event le, tbl_log_jifenpoint lj, tbl_log_player_taker lpt, tbl_log_event_type let where le.le_uId = lpt.le_uId and le.le_uId = lj.le_uId and le.le_uId = let.le_uId and let.let_uEventType = 137 and lj.lj_uPoint = {$boss_name} " . getDateLimit($var, $serverid);
    $rs = MySQLQuery($query, "Log", $serverid);
    echo "<table class='list_table'>\n";
    printf("<tr><th>%s</th><th>%s</th></tr>\n", $tbl_sys_msg["time"], $page_main["role_name"]);
    while ($row = mysql_fetch_row($rs)) {
        $role_name = GetRoleName($row[1], $serverid);
        printf("<tr><td>%s</td><td>%s</td></tr>\n", $row[0], $role_name);
    }
    echo "</table>\n";
    return true;
}
Example #5
0
			.chart td {
				border: 0px;
				background: none;
			}
			
			.base64 {
				display: block;
				color: #ccc;
			}
		</style>
	</head>
	<body>
<?php 
    if ($_REQUEST["serverindex"] == null || $_REQUEST["serverindex"] == "") {
        if ($_REQUEST["role_item"] == "id") {
            $_REQUEST["role_name"] = GetRoleName($_REQUEST["role_str"], $_REQUEST["serverid"]);
            $_REQUEST["role_id"] = $_REQUEST["role_str"];
        } elseif ($_REQUEST["role_item"] == "name") {
            $_REQUEST["role_id"] = GetRoleId($_REQUEST["role_str"], $_REQUEST["serverid"]);
            $_REQUEST["role_name"] = $_REQUEST["role_str"];
        }
        echo "\t\t<h1>" . $page_action_name[floor($_REQUEST["action_name"])] . "</h1>\n";
        ReturnAndBack();
    }
}
FrameWork($_REQUEST);
if (!$b) {
    ?>
	</body>
</html>
<?php