• 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. kablaff

    Looking for ot item editor (high version)

    Hello I'm looking for an ot item editor (for higher than 9.0), and how to change versions manually ?
  2. kablaff

    Lua Wand damage half to players

    Hmm I have mindamage="0" and maxdamage"0" in weapons.xml, does it matter, should I remove it??
  3. kablaff

    Depot glowing switch different picture

    I recently downloaded a real map, I updated it from 860 to higher and now the depot floor (1sqm from depot) has strange walls instead of glowing switch. I know its items.otb related, but how to fix it ??
  4. kablaff

    Close Theard

    If its a TP in movements I think u need to do an addEvent(tpBackFunction, 1) (I think I had same problem)
  5. kablaff

    Lua Wand damage half to players

    Nop, but no damage on monsters.. Hmm could the demon be immune against it ?
  6. kablaff

    Lua Wand damage half to players

    doesna work.
  7. kablaff

    Lua Wand damage half to players

    How to make a wand damage half to players, but normal damage to monsters?? Here's what I've done so far: local combat = createCombatObject() setCombatParam(combat, COMBAT_PARAM_TYPE, COMBAT_HOLYDAMAGE) setCombatParam(combat, COMBAT_PARAM_DISTANCEEFFECT, 28) function...
  8. kablaff

    Lua Removing a line in a .txt file

    Im noob on lua but (in talkactions)- function onSay(cid, words, param, channel) local inf = assert(io.open("data/talkactions/scripts/file.txt", "rw"), "Failed to open input file") -- what textfile to read local lines = "" while(true) do local line = inf:read("*line") if not line then break...
  9. kablaff

    Modern AAC errors:

    What to do with these PHP errors in ModernAAC??:S A PHP Error was encountered Severity: Notice Message: Undefined index: title Filename: views/home.php Line Number: 7 A PHP Error was encountered Severity: Notice Message: Undefined index: body Filename: views/home.php...
  10. kablaff

    Cant open website on other computer

    Hey, when my friends connect to website, its possible, but when I connect with other computer (with other internet), it says: Connection lost. Why?
  11. kablaff

    PHP Sessions wont close

    Nvm think I solved it
  12. kablaff

    PHP Sessions wont close

    Hello, after logged in code in PHP I have this: echo 'Logged in! What do you want to do?<br><br><a href="loggedinacc.php">Create character</a>'; if(isset($_SESSION['accountName'])) { session_destroy(); } session_start()...
  13. kablaff

    onCreatureTurn script

    But I need it to trigger on onCreatureTurn, is there such a function?
  14. kablaff

    onCreatureTurn script

    I've been thinking, wouldn't it be cool to be able to make creatures turn, when you turn ?? Like, summon 5 pandas, and turn, and all dance ?? Can someone make this script?:D
  15. kablaff

    need help with remote_addr

    Fixed!! problem was, I used die() before mysql queries lol XD though someone knows how to use sessions in PHP? (and secure ones).
  16. kablaff

    need help with remote_addr

    Why doesn't my sql query add to database, with remote_addr IP in PHP? (Do I need an IP type in database, or a VARCHAR)? Also need help with sessions, how do they work? Here's full code for 1 file <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />...
  17. kablaff

    Own AAC problem

    bump !! could it be that I'm missing some extension in wampserver php.ini?
  18. kablaff

    Modern AAC Highscore Page.

    $vocationName = ""; if($player['vocation'] == 1) { $vocationName = "Knight" } and add $vocationName where it prints $player['vocation'] Dont know if this works, but try XD
  19. kablaff

    Own AAC problem

    Accounts exist, id exists, and I checked with "or die mysql_error()", with no result? XD
  20. kablaff

    Own AAC problem

    The first code doesn't display anything. But thanks xd
Back
Top