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

    Programmer (OTC & Server) I can make your project unique!

    My username is Thanatos#8585 idk why you didn't found, but yeah private can work too #edit just found out, its case-sensitive
  2. Thanatos_

    Programmer (OTC & Server) I can make your project unique!

    Edit: i can't receive more requests for now, i'll bump this post later if i get available again.
  3. Thanatos_

    Extended OPCodes OTClient and TFS

    Yes, if you replace with some random thing like doOpcodeExtended(cid, 52, "premiumTime") the screen will say attempt to call global 'doOpcodeExtended' (a nil value) because it's not a recognized function.
  4. Thanatos_

    Extended OPCodes OTClient and TFS

    This error means that doSendPlayerExtendedOpcode is not a function in your server, did you compile the new server executable after the source changes?
  5. Thanatos_

    config rates not working

    Oh i see, so its a war server. No, the stage system is only for monsters. About the threshold, here is a explanation: minLevelThresholdForKilledPlayer
  6. Thanatos_

    config rates not working

    To fix the monster exp rate, change experienceStages = true to experienceStages = false so your server will use the rateExperience for all levels. But you can use the stages changing each rate in XML/stages.xml Also for the PvP problem i would change maxLevelThresholdForKilledPlayer = 250 to...
  7. Thanatos_

    [OTClient Showoff] Show off your OTClient project/module/UI and other

    Status window, old project btw
  8. Thanatos_

    [Sweden] [Custom] CHAMPSBATTLE - MOBA&BATTLEROYALE

    Fun server, recommended!
  9. Thanatos_

    [HELP] How to change nickname color in OTClient

    Change mysql.h from \mysql-connector-c\include\ to \mysql-connector-c\include\mysql
  10. Thanatos_

    [HELP] How to change nickname color in OTClient

    In the include files dont forget about tfs-sdk\pugixml\include
  11. Thanatos_

    [HELP] How to change nickname color in OTClient

    Try Compiling TFS 1.0/1.1 latest source. 64 and 32 bits. Pics and lots of explanation. or otland/forgottenserver
  12. Thanatos_

    TFS 0.X Tfs 0.4 - how members are in the party?

    if isInParty(cid) then -- check if all party members are above level x local reqLevel = 200 local partyList = getPartyMembers(getPartyLeader(cid)) for i = 1, #partyList do if getPlayerLevel(partyList[i]) < reqLevel then -- someone from the...
  13. Thanatos_

    Adding City to boat

    All the citys are in lower-case except Gengia, have you tried saying "Gengia" instead of "gengia" to the NPC? If it works, change "Gengia" to "gengia"
  14. Thanatos_

    TFS 0.X Tfs 0.4 - how members are in the party?

    Try this function onUse(cid, item, fromPosition, itemEx, toPosition) if not isInParty(cid) then doPlayerSendTextMessage(cid, MESSAGE_INFO_DESCR, "You dont have a party.") else local partyList = getPartyMembers(getPartyLeader(cid)) doPlayerSendTextMessage(cid...
  15. Thanatos_

    Adding City to boat

    Show me the full Captain Bluebear.lua with "Gengia", let me see if you missed something
  16. Thanatos_

    Adding City to boat

    Thats just one part of the Captain Bluebear.lua, right? The other citys are working? When you say Gengia he doesnt respond?
  17. Thanatos_

    [HELP] How to change nickname color in OTClient

    Ok try this OTC sources: - protocolgameparse.cpp CreaturePtr ProtocolGame::getCreature(const InputMessagePtr& msg, int type) { if(type == 0) type = msg->getU16(); CreaturePtr creature; bool known = (type != Proto::UnknownCreature); if(type == Proto::OutdatedCreature ||...
  18. Thanatos_

    [HELP] How to change nickname color in OTClient

    Oh sorry its actually your void Creature::drawInformation that i need
  19. Thanatos_

    [HELP] How to change nickname color in OTClient

    Ok paste here your void Creature::draw from creature.cpp (OTC)
  20. Thanatos_

    [HELP] How to change nickname color in OTClient

    You dont have the sources from your server? To make this changes you'll need to be able to compile it..
Back
Top