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

Force 860 version when opening

FilipeJF

New Member
Joined
Jan 9, 2012
Messages
124
Reaction score
4
Hello!
I'm using a script to hide the version, ip and port selection in the main menu of the game, so I need to find out how to force the client to open with 8.60 version in another PC (because when someone downloads my client with the script of hiding the 'selection' menu, it resets to 10.74). This is the script:

Code:
Module
  name: te,eros_login
  description: TemerisSoft Gameserver Login
  author: Zero Team
  website: 
  version: 0.1

  autoload: true
  autoload-priority: 1000

  dependencies:
    -client_entergame

  @onLoad: |
    EnterGame.setUniqueServer("189.12.198.56", 7171, 7172)

My friend downloaded my client and he was surprised by the error message asking for the tibia 10.74 spr and dat. Hope somebody can help me.
 
It should be:
EnterGame.setUniqueServer("189.12.198.56", 7171, 860)
 
Back
Top