I have a redskull remover script for Avesta.
I get a error in my console when i try to use it.
The console error is: mysql_real_query MYSQL ERROR Query was empty
Please help!
- - - Updated - - -
Bump!
I get a error in my console when i try to use it.
The console error is: mysql_real_query MYSQL ERROR Query was empty
Please help!
local config =
{
item = 5541,
level = 1,
count = 0
}
function onUse(cid, item, frompos, item2, topos)
if getPlayerLevel(cid) >= config.level then
doPlayerSendTextMessage(cid, MESSAGE_INFO_DESCR, "Your frags have been removed.")
doRemoveItem(item.uid)
mysqlQuery("UPDATE `players` SET `redskulltime` = '0', `redskull` = '0' WHERE `id`=".. getPlayerGUID(cid) .."")
else
doPlayerSendCancel(cid, "You dot have enough level")
end
return TRUE
end
- - - Updated - - -
Bump!