Ignore:
Timestamp:
Aug 13, 2007, 9:05:34 PM (17 years ago)
Author:
george
Message:

Aktualizace MaNGOS Minimanageru na verzi 0.1.4a.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • minimanager/scripts/gen_lib.php

    r5 r19  
    1414        global $lang_global, $mangos_db, $realm_id;
    1515       
    16         $mysql_0 = new MySQL;
    17         $mysql_0->connect($mangos_db[$realm_id]['addr'], $mangos_db[$realm_id]['user'], $mangos_db[$realm_id]['pass'], $mangos_db[$realm_id]['name'],true);
     16        $sql_0 = new SQL;
     17        $sql_0->connect($mangos_db[$realm_id]['addr'], $mangos_db[$realm_id]['user'], $mangos_db[$realm_id]['pass'], $mangos_db[$realm_id]['name']);
    1818 
    19         $result = $mysql_0->query("SELECT MAX(`id`) FROM item_text");
    20         $item_page_id = ($mysql_0->result($result, 0)) + 1;
    21         $result = $mysql_0->query("INSERT INTO item_text (id, text) VALUES ($item_page_id,'$body')");
     19        $result = $sql_0->query("SELECT MAX(`id`) FROM item_text");
     20        $item_page_id = ($sql_0->result($result, 0)) + 1;
     21        $result = $sql_0->query("INSERT INTO item_text (id, text) VALUES ($item_page_id,'$body')");
    2222
    23         $result = $mysql_0->query("SELECT MAX(`id`) FROM mail");
    24         $mail_id = ($mysql_0->result($result, 0)) + 1;
     23        $result = $sql_0->query("SELECT MAX(`id`) FROM mail");
     24        $mail_id = ($sql_0->result($result, 0)) + 1;
    2525
    2626        $item_guid = ($item) ? gen_item_instance($to, $item, $stack) : 0;
    2727
    28         $sql = "INSERT INTO mail (id,messageType,sender,receiver,subject,itemTextId,item_guid,item_template,expire_time,deliver_time,money,cod,checked)
    29                         VALUES ($mail_id, 0, '$from', '$to', '$subject', '$item_page_id', '$item_guid', '$item', '".(time() + (30*24*3600))."','".(time()+5)."', '$gold', 0, 0)";
    30         $result = $mysql_0->query($sql);
     28        $result = $sql_0->query("INSERT INTO mail (id,messageType,sender,receiver,subject,itemTextId,item_guid,item_template,expire_time,deliver_time,money,cod,checked)
     29                        VALUES ($mail_id, 0, '$from', '$to', '$subject', '$item_page_id', '$item_guid', '$item', '".(time() + (30*24*3600))."','".(time()+5)."', '$gold', 0, 0)");
    3130       
    3231        if ($result) {
    33                 $mysql_0->close();
     32                $sql_0->close();
    3433                return $mail_id;
    3534        } else {
    36                         $mysql_0->close();
     35                        $sql_0->close();
    3736                        return 0;
    3837                        }
     
    4544 global $lang_global, $mangos_db, $realm_id;
    4645
    47  $mysql_1 = new MySQL;
    48  $mysql_1->connect($mangos_db[$realm_id]['addr'], $mangos_db[$realm_id]['user'], $mangos_db[$realm_id]['pass'], $mangos_db[$realm_id]['name'],true);
     46 $sql_1 = new SQL;
     47 $sql_1->connect($mangos_db[$realm_id]['addr'], $mangos_db[$realm_id]['user'], $mangos_db[$realm_id]['pass'], $mangos_db[$realm_id]['name']);
    4948
    50  $result = $mysql_1->query("SELECT MAX(guid) FROM item_instance");
    51  $guid = $mysql_1->result($result, 0) + 1;
     49 $result = $sql_1->query("SELECT MAX(guid) FROM item_instance");
     50 $guid = $sql_1->result($result, 0) + 1;
    5251
    53  $result = $mysql_1->query("SELECT flags,stackable,MaxDurability,spellcharges_1,spellcharges_2,
     52 $result = $sql_1->query("SELECT flags,stackable,MaxDurability,spellcharges_1,spellcharges_2,
    5453                                                        spellcharges_3,spellcharges_4,spellcharges_5 FROM item_template
    5554                                                        WHERE entry = '$item_id'");
    56  $item_template = $mysql_1->fetch_row($result);
     55 $item_template = $sql_1->fetch_row($result);
    5756 
    5857 if ($item_template[1] <= 1) $stack = 1;
     
    8685 $data = implode(" ",$item_data);
    8786
    88  $result = $mysql_1->query("INSERT INTO item_instance (guid, owner_guid, data) VALUES ($guid, '$owner','$data')");
     87 $result = $sql_1->query("INSERT INTO item_instance (guid, owner_guid, data) VALUES ($guid, '$owner','$data')");
    8988 
    9089 if ($result) {
    91         $mysql_1->close();
     90        $sql_1->close();
    9291        return $guid;
    9392 } else {
    94                 $mysql_1->close();
     93                $sql_1->close();
    9594                return 0;
    9695                }
Note: See TracChangeset for help on using the changeset viewer.