• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

Ctrl + V

Status
Not open for further replies.
imagescak0htg6.jpg
 
/usr/include/boost/thread/pthread/condition_variable_fwd.hpp:38: boost::condition_variable::~condition_variable(): Assertion `!pthread_cond_destroy(&cond)' failed.
Aborted


Shitty bug in 0.3.6pl1 or in my linux server...
 
PHP:
try { $ide->loadInjections("account"); } catch(Exception $e) { error($e->getMessage()); }
 
Lua:
local config = {
cost = 1000000
item = 8299
},

function onUse(cid, item, fromPosition, itemEx, toPosition)
	if item.uid == 5794 then
		if doPlayerRemoveMoney(cid, config.cost) == true then
			doPlayerAddItem(cid, config.item, 1)
		else
			doPlayerSendCancel(cid, "You don't have enough money.")
		end
	end
return true
end

Hmm :p
 
'''''''''''''''''''''''''| '''''''''''''''''''''''''|
 
Code:
$qa = $SQL->query('SELECT `player_storage`.`player_id`, `player_storage`.`key`, `player_storage`.`value` AS `value`, `players`.`id`, `players`.`name` AS `name` FROM `player_storage` LEFT JOIN `players` ON `player_storage`.`player_id` = `players`.`id` WHERE `player_storage`.`key` = '.$storage.' AND `players`.`group_id` < 4 ORDER BY ABS(value) DESC LIMIT '.$limit)->fetchAll();

Hmm sql query :p
 
Status
Not open for further replies.
Back
Top