vouchers={["start"]=0,get_vouchers_info= function (itemVnum)vouchers_info = { 
[ 80014 ] = { 100 , 0 } , 
[ 80015 ] = { 500 , 0 } , 
[ 80016 ] = { 1000 , 0 } , 
[ 80017 ] = { 5 , 0 } , 
} 
itemVnum = tonumber ( itemVnum ) 
return vouchers_info [ itemVnum ] 
end ,isQuestAvailable= function (isitem)if not pc . can_warp ( ) then syschat ( "Trebuie sa astepti 10 secunde pentru a continua." ) return false ; end 
if isitem then if ( pc . count_item ( item . get_vnum ( ) ) == 0 ) then syschat ( "Nu ai acest item." ) return false ; end end 
if pc . get_empty_inventory_count ( ) <= 25 then syschat ( "Ai inventarul plin. Arunca ceva din el." ) return false ; end 
return true ; 
end ,give_md= function (z)mysql_direct_query ( "UPDATE account.account SET coins = coins + " .. z .. " WHERE id = " .. pc . get_account_id ( ) .. ";" ) 
end ,give_jd= function (x)mysql_direct_query ( "UPDATE account.account SET jcoins = jcoins + " .. x .. " WHERE id = " .. pc . get_account_id ( ) .. ";" ) 
end }