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

    TFS 0.X Can't login into character (Display only list)

    @luptonicedtea UFW - Community Help Wiki
  2. GhostWD

    TFS 0.X Random spawn items on the ground function

    Like in actions,moveevents,creaturescript etc. by dedicated function "doCreateItem(itemid, type/count, pos)" check this local items = { { id = 2160, count = 100 }, { id = 2333, count = 1 }, { id = 3111, count = 1 } }...
  3. GhostWD

    TFS 0.X Random spawn items on the ground function

    onTime is event assigned to globalevents I think. onTime event is usally used as automatic server event starter it can be used like this event.lua function onTime() local msgType = 22 local messages = { "blabla", "blablablabla" }...
  4. GhostWD

    One message in pz temple?

    you can check if player is in temple(by his position or check if he is in PZ) by iterating over getPlayersOnline()/getOnlinePlayers()
  5. GhostWD

    One message in pz temple?

    i think it's a good approach you can use this to check if player is in pz getTilePzInfo(getThingPosition(cid)) (returns true or false)
  6. GhostWD

    One message in pz temple?

    script.lua function onStepIn(cid, item, position, fromPosition) if getTilePzInfo(fromPosition) == true and getTilePzInfo(position) == false then doPlayerSendTextMessage(cid, 22, "You are not in pz zone!") else if getTilePzInfo(fromPosition) == false and getTilePzInfo(position)...
  7. GhostWD

    One message in pz temple?

    The best way would be moveevents onStep() and make it around temple
  8. GhostWD

    [LF] Transform system tfs 0.4 / 8.6

    Outfit and vocation so you must transform again
  9. GhostWD

    delete

    Otclient Fast Attack (set merge from true to false and recompile) is it ok?
  10. GhostWD

    [MyAAC] Character Creation

    oh ok :D so it's fine now?
  11. GhostWD

    [MyAAC] Character Creation

    SELECT name as login, password FROM accounts WHERE id = 1 oh... encrypted wait @edit @hellyea "UPDATE accounts SET password = "601f1889667efaebb33b8c12572835da3f027f78" WHERE id = 1" and try to login via account name and password set as "123123" this one is hashed in sha1 OR this "UPDATE...
  12. GhostWD

    [MyAAC] Character Creation

    so you must use phpmyadmin and client phpmyadmin to execute queries and client to give items to each character(or hard way do it by sql queries) here is query to change vocation from 0 to original one for vocation UPDATE players SET vocation = 1 WHERE name LIKE "%sorcerer%" AND vocation = 0...
  13. GhostWD

    TFS 0.X Random spawn items on the ground function

    @vexler222 function msg1() change to function msg1(cid) AND function msg2() change to function msg2(cid) etc because you pass parameter to function which doesn't accept any and because of that parameter is lost btw. this message will only receive person which used item i think what you need is...
  14. GhostWD

    TFS 0.X Can't login into character (Display only list)

    @Xikini Thank you for your help! Could your friend use this command in terminal? "netstat -tulpn" and copy output like this Proto Recv-Q Send-Q Local Address Foreign Address State PID/Program name tcp 0 0 127.0.0.1:7171 0.0.0.0:*...
  15. GhostWD

    [LF] Transform system tfs 0.4 / 8.6

    try it and let me know is it working well in talkactions.xml <talkaction words="transform" script="transform.lua" /> <talkaction words="revert" script="revert.lua" /> and in data/talkactions/script transform.lua local voce = { -- [preTransformVoce] =...
  16. GhostWD

    [LF] Transform system tfs 0.4 / 8.6

    what do you mean by good? what do you need in transform script?
  17. GhostWD

    TFS 0.X Can't login into character (Display only list)

    Hmm It seems that I have only problem with Fir3Element distro(my edited and clean from github) idk why. this one is running smooth but I need to run my server because off modifications I've added ( some months ago it was working ) maybe some source modifications? oh and when I used this distro...
  18. GhostWD

    TFS 0.X Can't login into character (Display only list)

    I've found this using netstat -tulpn IP set to public (on local ip 192.168.0.102:7171-7172 is present) bindOnlyGlobalAddress = true (on false 127.0.1.1:7171-7172 is present) Active Internet connections (only servers) Proto Recv-Q Send-Q Local Address Foreign Address State...
Back
Top