Jump to content

bookkc

Members
  • Posts

    52
  • Joined

  • Last visited

  • Donations

    0.00 GBP 

Posts posted by bookkc

  1. So, can any help me to find warden_checks for mangosone.

    i know many cheats that i can block by warden, i can find warden_checks for it

     

    i try to make memmory check, but its can find anything 

  2. so, if i make this query

     

    local result = CharDBQuery("SELECT item_template FROM character_inventory WHERE `guid` = '"..player:GetAccountId().."';");

    all work fine... i think its not work with

    AND

     

    And this

     

     

    guid int(11) unsigned
    
    The GUID (Global Unique Identifier) of the character. [See character.guid].

    why is GUID not character id??? wiki say that GUID is charatcer id

  3. this SELECT are not work

    function OnLoginCheck(event, player)
    local result = CharDBQuery("SELECT item_template FROM character_inventory WHERE `item_template` = '34470' AND `slot` = '12' AND `guid` = '"..player:GetAccountId().."';");
    if (result) then
            player:SendBroadcastMessage("OOOOOOOOOOOOOOOOKKKKKKKKKKKKKKKKKKKKKK")
        else
            player:SendBroadcastMessage("NNNNNNNNNNNNNNNNNNOOOOOOOOOOOOOOOOOOOO")
        end
    end
    
    RegisterPlayerEvent(3, OnLoginCheck)

    why? i dont know, but if i delete this

     `item_template` = '34470' AND `slot` = '12' AND

      or this 

    `guid` = '"..player:GetAccountId().."' 

    this SQL Query are work fine, why  this 

    WHERE `item_template` = '34470' AND `slot` = '12' AND `guid` = '"..player:GetAccountId().."';"

    not work???

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. Privacy Policy Terms of Use