• 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!
  • 2026 staff recruitment is open! Check it out and consider applying!

Search results

  1. T

    [HALF SOLVED] need help with source editing to...

    [EDIT] this first part is solved Thx to HERMES by posting the solution and by AZIZ by telling me to search xD solution can be found here ...to make two things, first: i need players to NOT die!!!! -dont get disabled when dead -dont loggout when dead -dont get "you are dead" msg -no...
  2. T

    teleporting just before they die!

    not event teleporting now
  3. T

    teleporting just before they die!

    yes ofcourse, if i hadn't there would be no debug and no teleport.
  4. T

    teleporting just before they die!

    Not working :S. no console error player does die, dead body is teleported after he is dead, "you are dead" window is displayed on relogin there is debug on the client
  5. T

    teleporting just before they die!

    i need a script so players do not die, not just erase the frags from the DB, also i need them to not logout and be healed and teleported to 10,10,7 is like instead of dying they were saved Thx!
  6. T

    [request]send all players temple - script

    if you pretend to do it with sql then the query should be something like : update townid set 1 where account = 1 and update townid set 2 where account = 2 am not good at querys
  7. T

    [request]send all players temple - script

    weird, all that should be working, the script send players to their temples. the one i gave you sets the town id to each band. so there may be 2 thing that are wrong first: check if in the map editor the temples are set as different towns with the right coordinates. second: check if the script...
  8. T

    [request]send all players temple - script

    local asd = getAccountNumberByPlayerName(getPlayerName(cid)) if asd == 1 then doPlayerSetTown(cid, 1) elseif asd == 2 then doPlayerSetTown(cid, 2) end like this not in the first one!!!
  9. T

    [request]send all players temple - script

    use == instead of = :w00t:
  10. T

    [request]send all players temple - script

    then you should do this, in /data/creatuscript/scripts/login.lua just below the function on login () local asd = getAccountNumberByPlayerName(getPlayerName(cid)) if asd = 1 then doPlayerSetTown(cid, 1) elseif asd = 2 then doPlayerSetTown(cid, 2) end i think thats all :)
  11. T

    give me a tutorial! or tell me that is impossible

    well, the last TFS i saw for 8.6 protocol is the 0.2.8 right? well, i download it and its not working AT ALL! i like 8.6 and want to download the sources of a TFS version that works! and change the protocol back to 8.6! if this can be done: then i need to know: from what version of...
  12. T

    [request] auto team balance

    you have an 1/1 acc with pre-created characters? the only way you could team balance is having personalized accounts for everyone. i mean, like a normal rpg server, everyone creates an acc. and then when they loggin you can assign them a team. but... thinking again... how did you made the...
  13. T

    [request]send all players temple - script

    that should be a problem with the map, did you set those temples as different citys? if you did, then you have to set town to those players. if you give me some details about how do they get into a team (how do they choose) i can give you some code to set the town. glad i could help :)
  14. T

    [request]send all players temple - script

    doRemoveCondition(cid, CONDITION_INFIGHT)
  15. T

    Help please !! Configurate a sd easy

    local lvl = getPlayerLevel(cid) setCombatFormula(combat, COMBAT_FORMULA_LEVELMAGIC, -1.3*lvl, -30*lvl, -1.8*lvl, 0) ??? or maybe local lvl = getPlayerLevel(cid) setCombatFormula(combat, COMBAT_FORMULA_LEVELMAGIC, -1.3+lvl, -30+lvl, -1.8+lvl, 0) :D Not tested but should do something
  16. T

    [REQUEST] Yalahari Last Mission Problem!

    Cannot see the picture!! upload it again!
  17. T

    How would you script This!

    As i read, i guess it will work, but already made a shorter version of a similar script and its working!!! the base of the script i made is teleporting the people in the center first and then with "addEvent(TP,1, cid, location)" tp the rest so it gives enought time to get the players out of the...
  18. T

    How would you script This!

    the section of the forum is request? so the script would be like?
  19. T

    How would you script This!

    the room is like annih XXXXXX X0000X XXXXXX this is a word script so you can get it! local totalplayers = all the players in the room local centerplayers = only the players in the center of the room doTeleportThing(centerplayers, nextroom) local restoftheplayers = totalplayers...
  20. T

    {help} removing duplicate unique ID 1000

    in the pics there is only AIDs no uniques have you scrolled down?
Back
Top