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

  1. bomba

    PHP Script

    Work!
  2. bomba

    PHP Script

    UP!
  3. bomba

    PHP Script

    Script: // Create connection $conn = new mysqli($servername, $username, $password, $dbname); // Check connection if ($conn->connect_error) { die("Connection failed: " . $conn->connect_error); } $sql = "SELECT * FROM `player_storage` WHERE `player_storage`.`key` = 971714014 ORDER BY...
  4. bomba

    PHP Script

    Edit, now is returning only numbers on table. I need to return the name of player: Look: "SELECT * FROM `player_storage` WHERE `player_storage`.`key` = 971714014 ORDER BY `player_storage`.`value` DESC LIMIT 0, 10"; echo "<tr><td>".$row["player_id"]."</td><td> ".$row["value"]."</td></tr>";
  5. bomba

    [Error] Last Man Standing

    The same mistake.
  6. bomba

    Spell [TFS 1.2] Ultimate Eplosion & Poison Storm

    Poison Storm working 100%: -- SpellCreator generated. -- =============== COMBAT VARS =============== -- Areas/Combat for 0ms local combat0_Brush = createCombatObject() setCombatParam(combat0_Brush, COMBAT_PARAM_EFFECT, CONST_ME_POISONAREA) setCombatParam(combat0_Brush, COMBAT_PARAM_TYPE...
  7. bomba

    [Error] Last Man Standing

    local t = { tmp = { {x = 376, y = 461, z = 7}, -- quina à noroeste (acima e à esquerda) da area onde os players devem estar para ingressar no evento {x = 392, y = 475, z = 7} -- quina à Sudeste (abaixo e à direita) }, arena = { {x =...
  8. bomba

    Monster walk only north and south

    Why the monsters of my otserv are walking only to the north and to the south? When attack a player. I'm using TFS 0.4.
  9. bomba

    Get Killer

    Solved!
  10. bomba

    Get Killer

    function onDeath(cid, corpse, deathList) local drop, nDrop = doCreatureSetDropLoot(cid, true), doCreatureSetDropLoot(cid, false) if getPlayerLevel(cid) <= 50 then for _, list in pairs (deathList) do if isMonster(list) then nDrop end...
  11. bomba

    Get Killer

    Like this? if isMonster(getKillerType(deathList)) == true then
  12. bomba

    Get Killer

    How to get the killer? Look the script: function onDeath(cid, corpse, deathList) local drop, nDrop = doCreatureSetDropLoot(cid, true), doCreatureSetDropLoot(cid, false) local killer = ????????? if getPlayerLevel(cid) <= 50 then if isMonster(killer) == true then...
  13. bomba

    Windows Can I host a TFS 0.4?

    Can I host TFS 0.4 - 8.6, on windows server 2003 SP2 64x?
  14. bomba

    Simple example of summon in area

    I'm using 0.4.
  15. bomba

    Simple example of summon in area

    Need a simple example to create monsters in certain area, like this: local config = { monster = "Rat", ammout = 5, topL = {x=100, y=100, z=7}, botR = {x=200, y=200, z=7} }
Back
Top