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

Search results

  1. R

    Query SQL

    Hi otland, i need some help. Is possible to delete a item with certain attribute like Bought by Name with a query in mysql? I will appreciate that. Thanks
  2. R

    Annihilator Script

    Hello otland ^^ I need some help with this script. I want put exhausted on this script. Every 10 min the player can use the lever again function onUse(cid, item, frompos, item2, topos) if item.uid ==7100then if item.itemid ==1946then player1pos ={x=964, y=850, z=7, stackpos=253} player1 =...
  3. R

    RuggedMage Scripting thread.

    My request is when a player equip an amulet is transformed to monster (Looktype = 300) but save the colors and the outfit that previously had the player So that when he unequip the amulet, has the same outfit and colors as before using the amule
  4. R

    OnEquip Changeoutfit

    Hello :D Im looking for a script I searched and did not find it as I wanted. So here we go When a player equip an amulet is transformed to monster (Looktype = 300) but save the colors and the outfit that previously had the player So that when he unequip the amulet, has the same outfit and...
  5. R

    Sql query

    Thanks :)
  6. R

    Sql query

    Hello, i need a Query SQL to delete items of players who do not have promotion (I don't know if this is possible) Example: If the player have item ID 2160 and not have promotion (Table SQL Promotion = 0) Then Delete :)
  7. R

    doItemSetAttribute

    bump
  8. R

    doItemSetAttribute

    Don't works The item don't get the serial. No error on console.
  9. R

    doItemSetAttribute

    [09/08/2013 19:17:11] [Error - TalkAction Interface] [09/08/2013 19:17:11] data/talkactions/scripts/createitem.lua:onSay [09/08/2013 19:17:11] Description: [09/08/2013 19:17:11] data/talkactions/scripts/createitem.lua:26: attempt to index local 'item' (a number value) [09/08/2013 19:17:11]...
  10. R

    doItemSetAttribute

    I need help with this How i can put this doItemSetAttribute(uid, "serial", generateSerial()) on this function onSay(cid, words, param, channel) if(param == '') then doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_BLUE, "Command param required.") return true end...
  11. R

    Tile pz

    ++rep :D
  12. R

    Tile pz

    I'm looking for a script, is too easy but i don't scripter when a player pass for x tile lose pz :P
  13. R

    Query sql

    Ty ++rep
  14. R

    Query sql

    Solved.
  15. R

    players_skills

    solved. close this thread.
  16. R

    Loss Levels

    Hiho :D I want script i think is creaturescript only if the player is lvl 300+ loss level at die if is below than 300 don't loss anything. P.D (only level, no skills) its possible?
  17. R

    Weird Error

    local config = { {x = 100, y = 100, z = 7}, -- this is the first training spot, you add the rest } function onStepIn(cid, item, position, lastPosition, fromPosition, toPosition) for _, pos in pairs(config) do if not isPlayer(getTopCreature(pos).uid) then if doTeleportThing(cid...
  18. R

    Broadcast different colors

    /bc /bc green; /bc white; function onSay(cid, words, param, channel) if(param == '') then doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_BLUE, "Command param required.") return true end local t = string.explode(param, ";") if(not t[2]) then doBroadcastMessage(t[1])...
  19. R

    OnKill Creaturevent

    How can configure this script for only the 2 murderers that appear in the death list earn points? function onKill(cid, target, lastHit) if(lastHit == true) then doPlayerAddPoints(cid, 1) end return true end I think if replacement true by false (lastHit), all players earn points.
  20. R

    ~Add more Healt to player~

    Take this <action itemid="itemid" event="script" value="namescript.lua"/> function onUse(cid, item, frompos, item2, topos) if (getPlayerStorageValue(cid, STORAGE) < 1) then setCreatureMaxHealth(cid, getCreatureMaxHealth(cid)+1000) doSendMagicEffect(getPlayerPosition(cid), 27)...
Back
Top Bottom