• 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!

Recent content by Bowstons

  1. B

    select X from 'players' PHP

    hello. PHP is not my strong point. I have to get 'quests' from database 'players' where 'name' is character name whose I looking in characterprofile.php. how to get it? $XXX= mysql_select_multi("SELECT quests FROM players WHERE name='. {$name} .'"); Im using znote acc
  2. B

    C++ doesn't save items at home after server restart.

    solved. just add "world_id" in tile_store table.
  3. B

    C++ doesn't save items at home after server restart.

    can enyone help me??
  4. B

    C++ doesn't save items at home after server restart.

    still does not save items :(
  5. B

    C++ doesn't save items at home after server restart.

    Hello. Items in houses does not save after restart using command /shutdown save and /shutdown kill or just /shutdown 1. In console I can see "Saved house items in: 0.018 s" but it does not work :( Houses have "house tile" in map editor. Someone had similar problem? I can't find solution to my...
  6. B

    why is it not working?

    it still doesnt work :/ no errors in the console, nothing
  7. B

    someone help Critical system error

    try this local SKILL_ID = 3 -- id skill... local multiplier = 1.5 local percentual = 0.3 function onStatsChange(cid, attacker, type, combat, value) if isPlayer(attacker) and (not (attacker == cid) and (type == STATSCHANGE_HEALTHLOSS or type == STATSCHANGE_MANALOSS)) then local...
  8. B

    why is it not working?

    ok bro. I want to send a message to player when Im attacked someone. <event type="statschange" name="name" event="script" value="name.lua"/> function onStatsChange(cid, attacker, type, combat, value) doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_BLUE, "something")...
  9. B

    why is it not working?

    hello, why my creaturescript not working? im registered it in login.lua registerCreatureEvent(cid, "name") creaturescripts.xml <event type="login" name="name" event="script" value="name.lua"/> and the code is function onStatsChange(cid, attacker, type, combat, value) if type ==...
Back
Top