Username: Password:

Recent Posts

Pages: [1] 2 3 ... 10
1
General Discussions / DOWNLOAD
« Last post by =Mindee= on November 28, 2025, 12:15:56 pm »


WEBSITE: https://otmefun.com

==================================================================================================

📱🍎 iOS (iPhone, iPad) Clients
Please go to official website https://otmefun.com and follow "How to play?" instructions.

==================================================================================================

📱 Android Clients
Choose the one you prefer.

Android Client Newest (Full-featured Android client.)
Please go to official website https://otmefun.com and follow "How to play?" instructions.

Android Client v2.45
1. Uninstall existing client from your Android device.
2. If your device doesn’t support XAPK installation by default, install an XAPK Installer.
3. Download XAPK: Android Client v2.45.
4. Open XAPK Installer.
5. Install otme_245-selfsigned.xapk.
6. Launch client and connect to world 100 or world 101-102 if you live in Asia and have lag on world 100.

Android Client v2.30
1. Download: Android Client v2.30.
2. Install (Make sure you allow third-party apps installation on your android device).

Android Client v2.29
1. Download: Android Client v2.29.
2. Install (Make sure you allow third-party apps installation on your android device).

==================================================================================================

💻 Web Clients (JNLP)
Choose the one you prefer.

Web Client v2.45 Full (Bigger resolution client.)
1. Uninstall Open Web Start (if installed).
2. Remove folder if exists: C:/Users/yourname/AppData/Local/TibiaME
3. If you don't have Java installed on your computer, install it from the official website: Download Java.
4. Run java cpanel (javacpl.exe) which is located in java installation folder/jre_***/bin. (You can also run java cpanel by opening Control Panel on your windows and choosing Java.)
5. In the java cpanel, select Security and in the Exception Site List add new entry:
Code: [Select]
https://mindee-bot.com/otme/6. Download: Web Client v2.45 Full.
7. Set javaws.exe as default for .jnlp. (javaws.exe is located in java installation folder/jre_***/bin).
8. Launch TibiaME jnlp file and connect to world 100 or world 101-102 if you live in Asia and have lag on world 100.

Web Client v2.45 Small (Smaller resolution client.)
1. Download: Web Client v2.45 Small.
2. Follow the steps above.

Web Client v2.29 Full (Older version. Bigger resolution client.)
1. Download: Web Client v2.29 Full.
2. Follow the steps above.

Web Client v2.29 Small (Older version. Smaller resolution client.)
1. Download: Web Client v2.29 Small.
2. Follow the steps above.

BOT Web Client v2.29 Big/Small
1. Open Mindee-BOT.
2. In MANAGE CLIENT window, enable "Use OTME Login Server".
3. Launch any web client and connect to world 100 or world 101-102 if you live in Asia and have lag on world 100.

Official Web Clients
1. Remove folder if exists:
Code: [Select]
C:/Users/yourname/AppData/Local/TibiaME2. Edit your hosts file which is located in C:\Windows\System32\drivers\etc and put these lines in: (Run notepad with administrator rights)
Code: [Select]
157.90.26.101 login01.tibiame.com
157.90.26.101 login02.tibiame.com
157.90.26.101 login03.tibiame.com
157.90.26.101 login04.tibiame.com
157.90.26.101 tibiame01.cipsoft.com
157.90.26.101 tibiame02.cipsoft.com
157.90.26.101 tibiame03.cipsoft.com
157.90.26.101 tibiame04.cipsoft.com
3. Launch the official client and it will run an update for game data.
4. Connect to world 100 or world 101-102 if you live in Asia and have lag on world 100.

==================================================================================================

📟 J2ME Client

J2ME Client v2.23 (For legacy devices + PC emulator included.)
1. Download: J2ME Client v2.23
2. Extract archive.
3. Launch KEmulator from “kemulator” folder.
4. Select Midlet → Load .jar
5. Select tibiame_j2me_223.jar
6. Connect to world 100 or world 101-102 if you live in Asia and have lag on world 100.

==================================================================================================

📟 Symbian S60v1 Client

Symbian S60v1 Client v2.23 (For legacy symbian devices)
1. Download SIS: Symbian Client v2.23 and install.
2. Download app file: TibiaME_20025291.app
3. Move TibiaME_20025291.app to TibiaME data folder and replace the old .app file.
4. Launch TibiaME.
5. Connect to world 100 or world 101-102 if you live in Asia and have lag on world 100.
2
Request / Re: [Request] Buy and sell
« Last post by =Mindee= on November 26, 2025, 05:24:05 am »
3
Request / [Request] Buy and sell
« Last post by Reika on November 26, 2025, 02:48:45 am »
Anyone please help me make script buy item on shop and sell it when backpack full for achievment.
4
Request / How drop item ? i have script for take item at inventory
« Last post by Ranjhafriel on October 14, 2025, 01:42:10 pm »
 [sdad]

script take to depot
---- [ahhhgrrrhhhlll]

```# ======================================================
# === AUTO TAKE ITEM DARI DEPOT SAMPAI BACKPACK PENUH ==
# === Versi: Aman keluar + otomatis jalankan waypoint 2 ==
# ======================================================

# ===================== CONFIG =====================
ITEM_ID = 5574      # ID item yang dicari
SCAN_DELAY = 800    # jeda antar scan (ms)
BACKPACK_LIMIT = 16 # kapasitas maksimum backpack (slot penuh)

# ===================== EVENT =====================
def onChangeLocation(x, y, z):
    # Jika sedang menunggu pindah waypoint 2
    if script.GetVar("exitToWaypoint2") == "1":
        script.StatusMessage("Berhasil keluar depot, jalankan waypoint 2...")
        script.SetVar("exitToWaypoint2", "0")
        script.RunWaypoint(2)
        return

    # Kalau belum dalam mode keluar, lanjut masuk ke depot
    if script.EnterShop():
        script.StatusMessage("Masuk ke depot berhasil, mulai pencarian item...")
        script.SetVar("page", 1)
        script.RunEvent("ScanDepotPage", SCAN_DELAY)
    else:
        script.StatusMessage("Gagal masuk ke depot, pastikan posisi sudah 1 langkah dari pintu.")

def onReceiveDepotMenu(depot_name, depot_id, depot_type, slots):
    # Simpan data depot aktif
    script.SetVar("depot_id", depot_id)
    script.SetVar("depot_type", depot_type)
    script.SetVar("slots", slots)

# ===================== CEK BACKPACK =====================
def BackpackFull():
    bp_items = script.GetBackpackItems()
    if bp_items is None:
        return False  # belum terbaca
    used_slots = 0
    for item in bp_items:
        if item != 0:
            used_slots += 1
    return used_slots >= BACKPACK_LIMIT

# ===================== SCAN DEPOT =====================
def ScanDepotPage():
    if not script.IsInShop():
        script.StatusMessage("Karakter sudah keluar dari depot, hentikan proses.")
        return

    # Cek apakah backpack penuh
    if BackpackFull():
        script.StatusMessage("Backpack penuh! Keluar dari depot dan tandai untuk pindah ke waypoint 2...")
        script.SetVar("exitToWaypoint2", "1")  # aktifkan flag
        script.LeaveShop()                     # keluar dari depot
        return

    depot_type = script.GetVar("depot_type")
    depot_id = script.GetVar("depot_id")

    if depot_type is None:
        script.StatusMessage("Menunggu data depot...")
        script.RunEvent("ScanDepotPage", SCAN_DELAY)
        return

    # Jika masih di depotmail (type 1), lanjut ke depot utama
    if depot_type == 1:
        script.StatusMessage("Masih di depotmail (type 1), berpindah ke depot utama...")
        if script.DepotGoNext():
            script.RunEvent("ScanDepotPage", SCAN_DELAY)
        else:
            script.StatusMessage("Gagal berpindah ke depot utama.")
        return

    # Baca isi depot
    items = script.GetDepotItems()
    if items is None:
        script.StatusMessage("Gagal membaca isi depot.")
        script.RunEvent("ScanDepotPage", SCAN_DELAY)
        return

    found_any = False
    for i in range(len(items)):
        item = items
        if item == 0:
            continue
        if item == ITEM_ID:
            found_any = True
            slot_id = i + 1
            script.StatusMessage("Item {} ditemukan di slot {}.".format(item, slot_id))

            # Cek kapasitas sebelum ambil
            if BackpackFull():
                script.StatusMessage("Backpack penuh saat ambil item, keluar dari depot...")
                script.SetVar("exitToWaypoint2", "1")
                script.LeaveShop()
                return

            ok = script.RetrieveSlotToBackpack(slot_id, depot_type)
            if ok:
                script.StatusMessage("Berhasil mengambil item {} dari slot {}.".format(item, slot_id))
                script.RunEvent("ScanDepotPage", SCAN_DELAY)
                return
            else:
                script.StatusMessage("Gagal mengambil item {} dari slot {}.".format(item, slot_id))

    # Jika tidak ada item target di halaman ini, lanjut ke halaman berikut
    if not found_any:
        script.StatusMessage("Tidak ada item {} di halaman ini, lanjut ke halaman berikut...".format(ITEM_ID))
        if script.DepotGoNext():
            script.RunEvent("ScanDepotPage", SCAN_DELAY)
        else:
            script.StatusMessage("Semua halaman selesai diperiksa, tidak ada item {} lagi.".format(ITEM_ID))
    else:
        script.RunEvent("ScanDepotPage", SCAN_DELAY)

# ===================== AKHIR SCRIPT =====================
script.SetVar("exitToWaypoint2", "0")
script.StatusMessage("Script aktif. Masuk ke depot dan mulai pencarian item...")

```
5
Mindee BOT News and Updates / Mindee-BOT v0.2d - R1 - v2.6.67 patch released.
« Last post by =Mindee= on September 30, 2025, 12:13:41 pm »
What's new:

Today, CipSoft removed web client support for new characters.
But guess what? You can still create new characters and play on the web client using Mindee-BOT!
6
General Discussions / Re: Ideas for future versions.
« Last post by =Mindee= on September 22, 2025, 04:34:02 pm »
BOT.  [youdontsay]
7
Mindee BOT News and Updates / Mindee-BOT v0.2d - R1 - v2.6.64 patch released.
« Last post by =Mindee= on September 11, 2025, 09:55:56 am »
What's new:

- onSendPublicMessage event addition.
8
Share / Re: [Share] KILLER BEAR + AMBIL DAN JUAL ITEM LEWAT PORTAL
« Last post by =Mindee= on July 04, 2025, 09:37:50 am »
file corrupted. can resend
Please be aware that waypoints files created around 2020 may no longer be supported by the bot

Nah, problem is that my previous hosting provider corrupted everything.
9
Share / Re: [Share] KILLER BEAR + AMBIL DAN JUAL ITEM LEWAT PORTAL
« Last post by rvs on July 03, 2025, 06:55:06 pm »
file corrupted. can resend
Please be aware that waypoints files created around 2020 may no longer be supported by the bot
10
Share / Re: [Share] KILLER BEAR + AMBIL DAN JUAL ITEM LEWAT PORTAL
« Last post by Hebrom on June 30, 2025, 03:44:12 pm »
file corrupted. can resend
Pages: [1] 2 3 ... 10