├── .gitattributes ├── .github ├── ISSUE_TEMPLATE │ ├── bug.yaml │ ├── config.yml │ └── request.yaml ├── PULL_REQUEST_TEMPLATE.md ├── labeler.yml └── workflows │ ├── build-android.yml │ ├── build-ubuntu.yml │ ├── build-windows.yml │ ├── issue.yml │ └── pr-labeler.yml ├── .gitignore ├── CMakeLists.txt ├── CMakePresets.json ├── LICENSE ├── README.md ├── android ├── .gitignore ├── otclientv8.sln ├── otclientv8 │ ├── AndroidManifest.xml │ ├── assets │ │ └── put_here_your_data.zip.txt │ ├── build.xml │ ├── otclientv8.androidproj │ ├── project.properties │ ├── res │ │ ├── layout │ │ │ ├── editor.xml │ │ │ └── multiline_editor.xml │ │ ├── mipmap-hdpi │ │ │ └── ic_launcher.png │ │ ├── mipmap-mdpi │ │ │ └── ic_launcher.png │ │ ├── mipmap-xhdpi │ │ │ └── ic_launcher.png │ │ ├── mipmap-xxhdpi │ │ │ └── ic_launcher.png │ │ ├── mipmap-xxxhdpi │ │ │ └── ic_launcher.png │ │ └── values │ │ │ ├── dimens.xml │ │ │ ├── strings.xml │ │ │ └── styles.xml │ └── src │ │ └── com │ │ └── otclientv8 │ │ └── OTClientV8.java └── otclientv8_lib │ └── otclientv8_lib.vcxproj ├── cmake ├── FindLuaJIT.cmake ├── FindVorbis.cmake ├── FindVorbisFile.cmake ├── LoggingHelper.cmake ├── MessageColors.cmake └── icon │ ├── otcicon.ico │ └── otcicon.rc ├── create_android_assets.ps1 ├── data ├── cursors │ ├── cursors.otml │ ├── horizontalcursor.png │ ├── pointer.png │ ├── targetcursor.png │ ├── textcursor.png │ └── verticalcursor.png ├── fonts │ ├── cipsoftFont.otfont │ ├── cipsoftFont.png │ ├── sans-bold-16px.otfont │ ├── sans-bold-16px_cp1252.png │ ├── small-9px.otfont │ ├── small-9px.png │ ├── terminus-10px.otfont │ ├── terminus-10px.png │ ├── terminus-14px-bold.otfont │ ├── terminus-14px-bold.png │ ├── verdana-11px-antialised.otfont │ ├── verdana-11px-antialised_cp1250.png │ ├── verdana-11px-antialised_cp1252.png │ ├── verdana-11px-monochrome.otfont │ ├── verdana-11px-monochrome_cp1250.png │ ├── verdana-11px-monochrome_cp1252.png │ ├── verdana-11px-rounded.otfont │ ├── verdana-11px-rounded_cp1250.png │ ├── verdana-11px-rounded_cp1252.png │ ├── verdana-9px-bold.otfont │ ├── verdana-9px-bold.png │ ├── verdana-9px-italic.otfont │ ├── verdana-9px-italic.png │ ├── verdana-9px.otfont │ └── verdana-9px.png ├── images │ ├── background.png │ ├── bars │ │ ├── health1.png │ │ └── mana1.png │ ├── clienticon.png │ ├── crosshair │ │ ├── default.png │ │ └── full.png │ ├── flags │ │ ├── de.png │ │ ├── en.png │ │ ├── es.png │ │ ├── pl.png │ │ ├── pt.png │ │ └── sv.png │ ├── game │ │ ├── actionbar │ │ │ ├── actionbarslot.png │ │ │ ├── arrow-disabled.png │ │ │ ├── arrow-skip-disabled.png │ │ │ ├── arrow-skip.png │ │ │ ├── arrow.png │ │ │ ├── locked.png │ │ │ └── unlocked.png │ │ ├── actionbarslot.png │ │ ├── battle │ │ │ ├── battle_monsters.png │ │ │ ├── battle_npcs.png │ │ │ ├── battle_party.png │ │ │ ├── battle_players.png │ │ │ └── battle_skulls.png │ │ ├── circle │ │ │ ├── left_empty.png │ │ │ ├── left_full.png │ │ │ ├── right_empty.png │ │ │ └── right_full.png │ │ ├── combatmodes │ │ │ ├── chasemode.png │ │ │ ├── fightbalanced.png │ │ │ ├── fightdefensive.png │ │ │ ├── fightoffensive.png │ │ │ ├── mount.png │ │ │ ├── pvp.png │ │ │ ├── redfistmode.png │ │ │ ├── safefight.png │ │ │ ├── whitedovemode.png │ │ │ ├── whitehandmode.png │ │ │ └── yellowhandmode.png │ │ ├── console │ │ │ ├── channels.png │ │ │ ├── clearchannel.png │ │ │ ├── closechannel.png │ │ │ ├── downarrow.png │ │ │ ├── ignore.png │ │ │ ├── leftarrow.png │ │ │ ├── rightarrow.png │ │ │ ├── say.png │ │ │ ├── uparrow.png │ │ │ ├── whisper.png │ │ │ └── yell.png │ │ ├── creaturetype │ │ │ ├── summon_other.png │ │ │ └── summon_own.png │ │ ├── dangerous.png │ │ ├── emblems │ │ │ ├── emblem_blue.png │ │ │ ├── emblem_green.png │ │ │ ├── emblem_member.png │ │ │ ├── emblem_other.png │ │ │ └── emblem_red.png │ │ ├── floor.png │ │ ├── imbuing │ │ │ ├── 100percent.png │ │ │ ├── clear.png │ │ │ ├── imbue_empty.png │ │ │ ├── imbue_green.png │ │ │ ├── slot.png │ │ │ ├── slot_disabled.png │ │ │ └── slot_inactive.png │ │ ├── minimap │ │ │ ├── cross.png │ │ │ ├── flag0.png │ │ │ ├── flag1.png │ │ │ ├── flag10.png │ │ │ ├── flag11.png │ │ │ ├── flag12.png │ │ │ ├── flag13.png │ │ │ ├── flag14.png │ │ │ ├── flag15.png │ │ │ ├── flag16.png │ │ │ ├── flag17.png │ │ │ ├── flag18.png │ │ │ ├── flag19.png │ │ │ ├── flag2.png │ │ │ ├── flag3.png │ │ │ ├── flag4.png │ │ │ ├── flag5.png │ │ │ ├── flag6.png │ │ │ ├── flag7.png │ │ │ ├── flag8.png │ │ │ ├── flag9.png │ │ │ ├── flagcheckbox.png │ │ │ ├── floor_down.png │ │ │ ├── floor_up.png │ │ │ ├── zoom_in.png │ │ │ └── zoom_out.png │ │ ├── mobile │ │ │ ├── attack.png │ │ │ ├── chat.png │ │ │ ├── follow.png │ │ │ ├── keypad.png │ │ │ ├── keypad_pointer.png │ │ │ ├── look.png │ │ │ └── use.png │ │ ├── npcicons │ │ │ ├── icon_chat.png │ │ │ ├── icon_quest.png │ │ │ ├── icon_trade.png │ │ │ └── icon_tradequest.png │ │ ├── prey │ │ │ ├── prey_bigdamage.png │ │ │ ├── prey_bigdefense.png │ │ │ ├── prey_biginactive.png │ │ │ ├── prey_bigloot.png │ │ │ ├── prey_bignobonus.png │ │ │ ├── prey_bigxp.png │ │ │ ├── prey_bonus_reroll.png │ │ │ ├── prey_choose.png │ │ │ ├── prey_damage.png │ │ │ ├── prey_defense.png │ │ │ ├── prey_gold.png │ │ │ ├── prey_inactive.png │ │ │ ├── prey_loot.png │ │ │ ├── prey_no_bonus.png │ │ │ ├── prey_nostar.png │ │ │ ├── prey_perm.png │ │ │ ├── prey_perm_test.png │ │ │ ├── prey_reroll.png │ │ │ ├── prey_reroll_blocked.png │ │ │ ├── prey_select.png │ │ │ ├── prey_select_blocked.png │ │ │ ├── prey_smallstore.png │ │ │ ├── prey_star.png │ │ │ ├── prey_temp.png │ │ │ ├── prey_temp_test.png │ │ │ ├── prey_wildcard.png │ │ │ └── prey_xp.png │ │ ├── shields │ │ │ ├── shield_blue.png │ │ │ ├── shield_blue_not_shared.png │ │ │ ├── shield_blue_shared.png │ │ │ ├── shield_blue_white.png │ │ │ ├── shield_gray.png │ │ │ ├── shield_yellow.png │ │ │ ├── shield_yellow_not_shared.png │ │ │ ├── shield_yellow_shared.png │ │ │ └── shield_yellow_white.png │ │ ├── skull_socket.png │ │ ├── skulls │ │ │ ├── skull_black.png │ │ │ ├── skull_green.png │ │ │ ├── skull_orange.png │ │ │ ├── skull_red.png │ │ │ ├── skull_white.png │ │ │ └── skull_yellow.png │ │ ├── slots │ │ │ ├── ammo-blessed.png │ │ │ ├── ammo.png │ │ │ ├── back-blessed.png │ │ │ ├── back.png │ │ │ ├── body-blessed.png │ │ │ ├── body.png │ │ │ ├── coins.png │ │ │ ├── feet-blessed.png │ │ │ ├── feet.png │ │ │ ├── finger-blessed.png │ │ │ ├── finger.png │ │ │ ├── head-blessed.png │ │ │ ├── head.png │ │ │ ├── left-hand-blessed.png │ │ │ ├── left-hand.png │ │ │ ├── legs-blessed.png │ │ │ ├── legs.png │ │ │ ├── neck-blessed.png │ │ │ ├── neck.png │ │ │ ├── purse.png │ │ │ ├── right-hand-blessed.png │ │ │ ├── right-hand.png │ │ │ └── soulcap.png │ │ ├── spells │ │ │ ├── cooldowns.png │ │ │ └── defaultspells.png │ │ ├── states │ │ │ ├── bleeding.png │ │ │ ├── burning.png │ │ │ ├── cursed.png │ │ │ ├── dazzled.png │ │ │ ├── drowning.png │ │ │ ├── drunk.png │ │ │ ├── electrified.png │ │ │ ├── freezing.png │ │ │ ├── haste.png │ │ │ ├── hungry.png │ │ │ ├── logout_block.png │ │ │ ├── magic_shield.png │ │ │ ├── poisoned.png │ │ │ ├── protection_zone.png │ │ │ ├── protection_zone_block.png │ │ │ ├── slowed.png │ │ │ └── strengthened.png │ │ ├── topbar │ │ │ ├── boost.png │ │ │ └── icons.png │ │ └── viplist │ │ │ ├── icons.png │ │ │ └── vipcheckbox.png │ ├── loading.png │ ├── optionstab │ │ ├── audio.png │ │ ├── console.png │ │ ├── extras.png │ │ ├── features.png │ │ ├── game.png │ │ └── graphics.png │ ├── shaders │ │ ├── brazil.png │ │ ├── gold.png │ │ ├── rainbow.png │ │ ├── stars.png │ │ └── sweden.png │ ├── topbuttons │ │ ├── analyzers.png │ │ ├── audio.png │ │ ├── audio_mute.png │ │ ├── battle.png │ │ ├── bot.png │ │ ├── buttons.png │ │ ├── combatcontrols.png │ │ ├── cooldowns.png │ │ ├── debug.png │ │ ├── healthinfo.png │ │ ├── hotkeys.png │ │ ├── inventory.png │ │ ├── keypad.png │ │ ├── login.png │ │ ├── logout.png │ │ ├── minimap.png │ │ ├── modulemanager.png │ │ ├── motd.png │ │ ├── options.png │ │ ├── particles.png │ │ ├── prey.png │ │ ├── prey_window.png │ │ ├── quest_tracker.png │ │ ├── questlog.png │ │ ├── shop.png │ │ ├── skills.png │ │ ├── spelllist.png │ │ ├── terminal.png │ │ ├── unjustifiedpoints.png │ │ ├── viplist.png │ │ ├── zoomin.png │ │ └── zoomout.png │ └── ui │ │ ├── actionbar_background.png │ │ ├── android.png │ │ ├── arrow_horizontal.png │ │ ├── arrow_vertical.png │ │ ├── button.png │ │ ├── button_popupmenu.png │ │ ├── button_rounded.png │ │ ├── button_square.png │ │ ├── button_top.png │ │ ├── button_top_blink.png │ │ ├── button_topgame.png │ │ ├── checkbox.png │ │ ├── checkbox_round.png │ │ ├── colorbox.png │ │ ├── combobox.png │ │ ├── combobox_rounded.png │ │ ├── combobox_square.png │ │ ├── dark_background.png │ │ ├── discord.png │ │ ├── graph_background.png │ │ ├── icon_add.png │ │ ├── ios.png │ │ ├── item-blessed.png │ │ ├── item.png │ │ ├── menubox.png │ │ ├── minipanel.png │ │ ├── miniwindow.png │ │ ├── miniwindow_buttons.png │ │ ├── otcicon.rc │ │ ├── panel_bottom.png │ │ ├── panel_bottom2.png │ │ ├── panel_container.png │ │ ├── panel_content.png │ │ ├── panel_flat.png │ │ ├── panel_lightflat.png │ │ ├── panel_map.png │ │ ├── panel_side.png │ │ ├── panel_top.png │ │ ├── progressbar.png │ │ ├── qauth.png │ │ ├── rarity_blue.png │ │ ├── rarity_frames.png │ │ ├── rarity_gold.png │ │ ├── rarity_green.png │ │ ├── rarity_purple.png │ │ ├── rarity_white.png │ │ ├── rotate_button.png │ │ ├── scrollbar.png │ │ ├── separator_horizontal.png │ │ ├── separator_vertical.png │ │ ├── spinbox.png │ │ ├── spinbox_down.png │ │ ├── spinbox_up.png │ │ ├── tabbutton_rounded.png │ │ ├── tabbutton_square.png │ │ ├── textedit.png │ │ ├── window.png │ │ └── window_headless.png ├── locales │ ├── de.lua │ ├── en.lua │ ├── es.lua │ ├── pl.lua │ ├── pt.lua │ └── sv.lua ├── shaders │ ├── map_default_fragment.frag │ ├── map_default_vertex.frag │ ├── map_rainbow_fragment.frag │ ├── map_rainbow_vertex.frag │ ├── outfit_default_fragment.frag │ ├── outfit_default_vertex.frag │ ├── outfit_rainbow_fragment.frag │ └── outfit_rainbow_vertex.frag ├── sounds │ ├── Creature_Detected.ogg │ ├── Low_Health.ogg │ ├── Low_Mana.ogg │ ├── Player_Attack.ogg │ ├── Player_Detected.ogg │ ├── Private_Message.ogg │ ├── alarm.ogg │ └── magnum.ogg └── styles │ ├── 10-buttons.otui │ ├── 10-checkboxes.otui │ ├── 10-comboboxes.otui │ ├── 10-creaturebuttons.otui │ ├── 10-creatures.otui │ ├── 10-items.otui │ ├── 10-labels.otui │ ├── 10-listboxes.otui │ ├── 10-panels.otui │ ├── 10-progressbars.otui │ ├── 10-scrollbars.otui │ ├── 10-separators.otui │ ├── 10-splitters.otui │ ├── 10-textedits.otui │ ├── 10-windows.otui │ ├── 20-imageview.otui │ ├── 20-popupmenus.otui │ ├── 20-smallscrollbar.otui │ ├── 20-spinboxes.otui │ ├── 20-tabbars.otui │ ├── 20-tables.otui │ ├── 20-topmenu.otui │ ├── 30-inputboxes.otui │ ├── 30-messageboxes.otui │ ├── 30-miniwindow.otui │ ├── 40-console.otui │ ├── 40-container.otui │ ├── 40-entergame.otui │ ├── 40-gamebuttons.otui │ ├── 40-healthinfo.otui │ ├── 40-inventory.otui │ ├── 40-minimap.otui │ ├── 40-outfitwindow.otui │ └── 40-tilewidget.otui ├── init.lua ├── layouts ├── README.md ├── mobile │ ├── README.md │ └── styles │ │ ├── 10-scrollbars.otui │ │ ├── 20-smallscrollbar.otui │ │ ├── 30-miniwindow.otui │ │ ├── 40-console.otui │ │ └── 40-inventory.otui └── retro │ ├── images │ ├── background.png │ ├── game │ │ ├── console │ │ │ ├── channels.png │ │ │ ├── clearchannel.png │ │ │ ├── closechannel.png │ │ │ ├── ignore.png │ │ │ ├── leftarrow.png │ │ │ ├── rightarrow.png │ │ │ ├── say.png │ │ │ ├── trademsg.png │ │ │ ├── whisper.png │ │ │ └── yell.png │ │ └── prey │ │ │ ├── prey_damage.png │ │ │ ├── prey_defense.png │ │ │ ├── prey_inactive.png │ │ │ ├── prey_loot.png │ │ │ ├── prey_no_bonus.png │ │ │ └── prey_xp.png │ ├── topbuttons │ │ ├── analyzers.png │ │ ├── audio.png │ │ ├── audio_mute.png │ │ ├── battle.png │ │ ├── bot.png │ │ ├── ciclopedia.png │ │ ├── compedium.png │ │ ├── cooldowns.png │ │ ├── dailyreward.png │ │ ├── debug.png │ │ ├── exit.png │ │ ├── healthinfo.png │ │ ├── hotkeys.png │ │ ├── inventory.png │ │ ├── login.png │ │ ├── logout.png │ │ ├── minimap.png │ │ ├── modulemanager.png │ │ ├── motd.png │ │ ├── options.png │ │ ├── particles.png │ │ ├── prey.png │ │ ├── prey_window.png │ │ ├── quest_tracker.png │ │ ├── questlog.png │ │ ├── shop.png │ │ ├── skills.png │ │ ├── spelllist.png │ │ ├── terminal.png │ │ ├── unjustifiedpoints.png │ │ └── viplist.png │ └── ui │ │ ├── arrow_horizontal.png │ │ ├── arrow_vertical.png │ │ ├── broder_panel.png │ │ ├── button.png │ │ ├── checkbox.png │ │ ├── checkbox_round.png │ │ ├── colorbox.png │ │ ├── combobox.png │ │ ├── combobox_rounded.png │ │ ├── combobox_square.png │ │ ├── dark_background.png │ │ ├── icon_add.png │ │ ├── item.png │ │ ├── menubarleft.png │ │ ├── menubox.png │ │ ├── minibroder.png │ │ ├── minipanel.png │ │ ├── miniwindow.png │ │ ├── miniwindow_buttons.png │ │ ├── noimage.png │ │ ├── option_button.png │ │ ├── options_broder.png │ │ ├── panel_bottom.png │ │ ├── panel_bottom2.png │ │ ├── panel_flat.png │ │ ├── panel_map.png │ │ ├── panel_side.png │ │ ├── panel_top.png │ │ ├── progress_icons.png │ │ ├── progressbar.png │ │ ├── progressbarhpmana.png │ │ ├── progressbarskills.png │ │ ├── rarity_blue.png │ │ ├── rarity_gold.png │ │ ├── rarity_green.png │ │ ├── rarity_purple.png │ │ ├── rarity_white.png │ │ ├── rotate_button.png │ │ ├── scrollbar.png │ │ ├── separator_horizontal.png │ │ ├── separator_vertical.png │ │ ├── special_miniwindow.png │ │ ├── spinbox.png │ │ ├── spinbox_down.png │ │ ├── spinbox_up.png │ │ ├── tabbutton_rounded.png │ │ ├── tabbutton_square.png │ │ ├── textedit.png │ │ └── window.png │ └── styles │ ├── 10-checkboxes.otui │ ├── 10-comboboxes.otui │ ├── 10-panels.otui │ ├── 10-progressbars.otui │ ├── 10-textedits.otui │ ├── 10-windows.otui │ ├── 20-popupmenus.otui │ ├── 20-tabbars.otui │ ├── 20-topmenu.otui │ ├── 30-miniwindow.otui │ ├── 40-console.otui │ ├── 40-entergame.otui │ ├── 40-gamebuttons.otui │ ├── 40-healthinfo.otui │ ├── 40-inventory.otui │ ├── 40-minimap.otui │ └── 40-outfitwindow.otui ├── mods └── game_healthbars │ ├── healthbars.lua │ └── healthbars.otmod ├── modules ├── client │ ├── client.lua │ └── client.otmod ├── client_background │ ├── background.lua │ ├── background.otmod │ └── background.otui ├── client_entergame │ ├── characterlist.lua │ ├── characterlist.otui │ ├── entergame.lua │ ├── entergame.otmod │ ├── entergame.otui │ └── waitinglist.otui ├── client_feedback │ ├── feedback.lua │ ├── feedback.otmod │ └── feedback.otui ├── client_locales │ ├── locales.lua │ ├── locales.otmod │ ├── locales.otui │ └── neededtranslations.lua ├── client_mobile │ ├── mobile.lua │ ├── mobile.otmod │ └── mobile.otui ├── client_options │ ├── audio.otui │ ├── console.otui │ ├── custom.otui │ ├── game.otui │ ├── graphics.otui │ ├── interface.otui │ ├── options.lua │ ├── options.otmod │ └── options.otui ├── client_profiles │ ├── profiles.lua │ └── profiles.otmod ├── client_stats │ ├── stats.lua │ ├── stats.otmod │ └── stats.otui ├── client_styles │ ├── styles.lua │ └── styles.otmod ├── client_terminal │ ├── commands.lua │ ├── terminal.lua │ ├── terminal.otmod │ └── terminal.otui ├── client_textedit │ ├── textedit.lua │ ├── textedit.otmod │ └── textedit.otui ├── client_topmenu │ ├── topmenu.lua │ └── topmenu.otmod ├── corelib │ ├── base64.lua │ ├── bitwise.lua │ ├── config.lua │ ├── const.lua │ ├── corelib.otmod │ ├── globals.lua │ ├── http.lua │ ├── inputmessage.lua │ ├── json.lua │ ├── keyboard.lua │ ├── math.lua │ ├── mouse.lua │ ├── net.lua │ ├── orderedtable.lua │ ├── outputmessage.lua │ ├── settings.lua │ ├── string.lua │ ├── struct.lua │ ├── table.lua │ ├── test.lua │ ├── ui │ │ ├── effects.lua │ │ ├── tooltip.lua │ │ ├── uibutton.lua │ │ ├── uicheckbox.lua │ │ ├── uicombobox.lua │ │ ├── uiimageview.lua │ │ ├── uiinputbox.lua │ │ ├── uilabel.lua │ │ ├── uimessagebox.lua │ │ ├── uiminiwindow.lua │ │ ├── uiminiwindowcontainer.lua │ │ ├── uimovabletabbar.lua │ │ ├── uipopupmenu.lua │ │ ├── uipopupscrollmenu.lua │ │ ├── uiprogressbar.lua │ │ ├── uiradiogroup.lua │ │ ├── uiresizeborder.lua │ │ ├── uiscrollarea.lua │ │ ├── uiscrollbar.lua │ │ ├── uispinbox.lua │ │ ├── uisplitter.lua │ │ ├── uitabbar.lua │ │ ├── uitable.lua │ │ ├── uitextedit.lua │ │ ├── uiwidget.lua │ │ └── uiwindow.lua │ └── util.lua ├── crash_reporter │ ├── crash_reporter.lua │ └── crash_reporter.otmod ├── game_actionbar │ ├── actionbar.lua │ ├── actionbar.otmod │ ├── actionbar.otui │ ├── hotkey.otui │ ├── object.otui │ ├── sideactionbar.otui │ ├── spell.otui │ └── text.otui ├── game_battle │ ├── battle.lua │ ├── battle.otmod │ ├── battle.otui │ └── battlebutton.otui ├── game_bot │ ├── bot.lua │ ├── bot.otmod │ ├── bot.otui │ ├── configs.png │ ├── default_configs │ │ ├── cavebot_1.3 │ │ │ ├── cavebot.lua │ │ │ ├── cavebot │ │ │ │ ├── actions.lua │ │ │ │ ├── cavebot.lua │ │ │ │ ├── cavebot.otui │ │ │ │ ├── config.lua │ │ │ │ ├── config.otui │ │ │ │ ├── depositer.lua │ │ │ │ ├── editor.lua │ │ │ │ ├── editor.otui │ │ │ │ ├── example_functions.lua │ │ │ │ ├── extension_template.lua │ │ │ │ ├── recorder.lua │ │ │ │ ├── supply.lua │ │ │ │ ├── supply.otui │ │ │ │ └── walking.lua │ │ │ ├── cavebot_configs │ │ │ │ ├── config_name.cfg │ │ │ │ ├── fast_walking.cfg │ │ │ │ └── test_src.cfg │ │ │ ├── hp.lua │ │ │ ├── main.lua │ │ │ ├── mwall_timer.lua │ │ │ ├── storage.json │ │ │ ├── targetbot │ │ │ │ ├── creature.lua │ │ │ │ ├── creature_attack.lua │ │ │ │ ├── creature_editor.lua │ │ │ │ ├── creature_editor.otui │ │ │ │ ├── creature_priority.lua │ │ │ │ ├── looting.lua │ │ │ │ ├── looting.otui │ │ │ │ ├── target.lua │ │ │ │ ├── target.otui │ │ │ │ └── walking.lua │ │ │ ├── targetbot_configs │ │ │ │ └── config_name.json │ │ │ └── tools.lua │ │ ├── vBot_4.7 │ │ │ ├── _Loader.lua │ │ │ ├── cavebot │ │ │ │ ├── actions.lua │ │ │ │ ├── bank.lua │ │ │ │ ├── buy_supplies.lua │ │ │ │ ├── cavebot.lua │ │ │ │ ├── cavebot.otui │ │ │ │ ├── clear_tile.lua │ │ │ │ ├── config.lua │ │ │ │ ├── config.otui │ │ │ │ ├── d_withdraw.lua │ │ │ │ ├── depositor.lua │ │ │ │ ├── doors.lua │ │ │ │ ├── editor.lua │ │ │ │ ├── editor.otui │ │ │ │ ├── example_functions.lua │ │ │ │ ├── extension_template.lua │ │ │ │ ├── imbuing.lua │ │ │ │ ├── inbox_withdraw.lua │ │ │ │ ├── lure.lua │ │ │ │ ├── minimap.lua │ │ │ │ ├── pos_check.lua │ │ │ │ ├── recorder.lua │ │ │ │ ├── sell_all.lua │ │ │ │ ├── stand_lure.lua │ │ │ │ ├── supply_check.lua │ │ │ │ ├── tasker.lua │ │ │ │ ├── travel.lua │ │ │ │ ├── walking.lua │ │ │ │ └── withdraw.lua │ │ │ ├── targetbot │ │ │ │ ├── creature.lua │ │ │ │ ├── creature_attack.lua │ │ │ │ ├── creature_editor.lua │ │ │ │ ├── creature_editor.otui │ │ │ │ ├── creature_priority.lua │ │ │ │ ├── looting.lua │ │ │ │ ├── looting.otui │ │ │ │ ├── target.lua │ │ │ │ ├── target.otui │ │ │ │ └── walking.lua │ │ │ └── vBot │ │ │ │ ├── AttackBot.lua │ │ │ │ ├── AttackBot.otui │ │ │ │ ├── BotServer.lua │ │ │ │ ├── BotServer.otui │ │ │ │ ├── Conditions.lua │ │ │ │ ├── Conditions.otui │ │ │ │ ├── Containers.lua │ │ │ │ ├── Dropper.lua │ │ │ │ ├── Equipper.lua │ │ │ │ ├── HealBot.lua │ │ │ │ ├── HealBot.otui │ │ │ │ ├── Sio.lua │ │ │ │ ├── alarms.lua │ │ │ │ ├── alarms.otui │ │ │ │ ├── analyzer.lua │ │ │ │ ├── analyzer.otui │ │ │ │ ├── antiRs.lua │ │ │ │ ├── cast_food.lua │ │ │ │ ├── cavebot.lua │ │ │ │ ├── cavebot_control_panel.lua │ │ │ │ ├── combo.lua │ │ │ │ ├── combo.otui │ │ │ │ ├── configs.lua │ │ │ │ ├── depositer_config.lua │ │ │ │ ├── depositer_config.otui │ │ │ │ ├── depot_withdraw.lua │ │ │ │ ├── eat_food.lua │ │ │ │ ├── equip.lua │ │ │ │ ├── equipper.otui │ │ │ │ ├── exeta.lua │ │ │ │ ├── extras.lua │ │ │ │ ├── extras.otui │ │ │ │ ├── hold_target.lua │ │ │ │ ├── ingame_editor.lua │ │ │ │ ├── items.lua │ │ │ │ ├── main.lua │ │ │ │ ├── new_cavebot_lib.lua │ │ │ │ ├── new_healer.lua │ │ │ │ ├── new_healer.otui │ │ │ │ ├── npc_talk.lua │ │ │ │ ├── playerlist.lua │ │ │ │ ├── playerlist.otui │ │ │ │ ├── pushmax.lua │ │ │ │ ├── pushmax.otui │ │ │ │ ├── quiver_label.lua │ │ │ │ ├── quiver_manager.lua │ │ │ │ ├── siolist.otui │ │ │ │ ├── spy_level.lua │ │ │ │ ├── supplies.lua │ │ │ │ ├── supplies.otui │ │ │ │ ├── tools.lua │ │ │ │ ├── version.txt │ │ │ │ ├── vlib.lua │ │ │ │ └── xeno_menu.lua │ │ └── vBot_4.8 │ │ │ ├── _Loader.lua │ │ │ ├── cavebot │ │ │ ├── actions.lua │ │ │ ├── bank.lua │ │ │ ├── buy_supplies.lua │ │ │ ├── cavebot.lua │ │ │ ├── cavebot.otui │ │ │ ├── clear_tile.lua │ │ │ ├── config.lua │ │ │ ├── config.otui │ │ │ ├── d_withdraw.lua │ │ │ ├── depositor.lua │ │ │ ├── doors.lua │ │ │ ├── editor.lua │ │ │ ├── editor.otui │ │ │ ├── example_functions.lua │ │ │ ├── extension_template.lua │ │ │ ├── imbuing.lua │ │ │ ├── inbox_withdraw.lua │ │ │ ├── lure.lua │ │ │ ├── minimap.lua │ │ │ ├── pos_check.lua │ │ │ ├── recorder.lua │ │ │ ├── sell_all.lua │ │ │ ├── stand_lure.lua │ │ │ ├── supply_check.lua │ │ │ ├── tasker.lua │ │ │ ├── travel.lua │ │ │ ├── walking.lua │ │ │ └── withdraw.lua │ │ │ ├── targetbot │ │ │ ├── creature.lua │ │ │ ├── creature_attack.lua │ │ │ ├── creature_editor.lua │ │ │ ├── creature_editor.otui │ │ │ ├── creature_priority.lua │ │ │ ├── looting.lua │ │ │ ├── looting.otui │ │ │ ├── target.lua │ │ │ ├── target.otui │ │ │ └── walking.lua │ │ │ └── vBot │ │ │ ├── AttackBot.lua │ │ │ ├── AttackBot.otui │ │ │ ├── BotServer.lua │ │ │ ├── BotServer.otui │ │ │ ├── Conditions.lua │ │ │ ├── Conditions.otui │ │ │ ├── Containers.lua │ │ │ ├── Dropper.lua │ │ │ ├── Equipper.lua │ │ │ ├── HealBot.lua │ │ │ ├── HealBot.otui │ │ │ ├── Sio.lua │ │ │ ├── alarms.lua │ │ │ ├── alarms.otui │ │ │ ├── analyzer.lua │ │ │ ├── analyzer.otui │ │ │ ├── antiRs.lua │ │ │ ├── cast_food.lua │ │ │ ├── cavebot.lua │ │ │ ├── cavebot_control_panel.lua │ │ │ ├── combo.lua │ │ │ ├── combo.otui │ │ │ ├── configs.lua │ │ │ ├── depositer_config.lua │ │ │ ├── depositer_config.otui │ │ │ ├── depot_withdraw.lua │ │ │ ├── eat_food.lua │ │ │ ├── equip.lua │ │ │ ├── equipper.otui │ │ │ ├── exeta.lua │ │ │ ├── extras.lua │ │ │ ├── extras.otui │ │ │ ├── hold_target.lua │ │ │ ├── ingame_editor.lua │ │ │ ├── items.lua │ │ │ ├── main.lua │ │ │ ├── new_cavebot_lib.lua │ │ │ ├── new_healer.lua │ │ │ ├── new_healer.otui │ │ │ ├── npc_talk.lua │ │ │ ├── playerlist.lua │ │ │ ├── playerlist.otui │ │ │ ├── pushmax.lua │ │ │ ├── pushmax.otui │ │ │ ├── quiver_label.lua │ │ │ ├── quiver_manager.lua │ │ │ ├── siolist.otui │ │ │ ├── spy_level.lua │ │ │ ├── supplies.lua │ │ │ ├── supplies.otui │ │ │ ├── tools.lua │ │ │ ├── version.txt │ │ │ ├── vlib.lua │ │ │ └── xeno_menu.lua │ ├── edit.otui │ ├── executor.lua │ ├── functions │ │ ├── callbacks.lua │ │ ├── config.lua │ │ ├── const.lua │ │ ├── icon.lua │ │ ├── main.lua │ │ ├── map.lua │ │ ├── npc.lua │ │ ├── player.lua │ │ ├── player_conditions.lua │ │ ├── player_inventory.lua │ │ ├── script_loader.lua │ │ ├── server.lua │ │ ├── sound.lua │ │ ├── test.lua │ │ ├── tools.lua │ │ ├── ui.lua │ │ ├── ui_elements.lua │ │ ├── ui_legacy.lua │ │ └── ui_windows.lua │ ├── panels │ │ ├── DONT_USE_PANELS.txt │ │ ├── attacking.lua │ │ ├── basic.lua │ │ ├── healing.lua │ │ ├── looting.lua │ │ ├── tools.lua │ │ ├── war.lua │ │ └── waypoints.lua │ ├── scripts.png │ └── ui │ │ ├── basic.otui │ │ ├── config.otui │ │ ├── container.otui │ │ ├── icons.otui │ │ └── panels.otui ├── game_bugreport │ ├── bugreport.lua │ ├── bugreport.otmod │ └── bugreport.otui ├── game_buttons │ ├── buttons.lua │ ├── buttons.otmod │ └── buttons.otui ├── game_console │ ├── channelswindow.otui │ ├── communicationwindow.otui │ ├── console.lua │ ├── console.otmod │ ├── console.otui │ └── violationwindow.otui ├── game_containers │ ├── containers.lua │ └── containers.otmod ├── game_cooldown │ ├── cooldown.lua │ ├── cooldown.otmod │ └── cooldown.otui ├── game_features │ ├── features.lua │ └── features.otmod ├── game_healthinfo │ ├── healthinfo.lua │ ├── healthinfo.otmod │ └── healthinfo.otui ├── game_hotkeys │ ├── hotkeys_extra.lua │ ├── hotkeys_manager.lua │ ├── hotkeys_manager.otmod │ └── hotkeys_manager.otui ├── game_imbuing │ ├── imbuing.lua │ ├── imbuing.otmod │ └── imbuing.otui ├── game_interface │ ├── gameinterface.lua │ ├── gameinterface.otui │ ├── interface.otmod │ ├── styles │ │ └── countwindow.otui │ └── widgets │ │ └── uigamemap.lua ├── game_inventory │ ├── inventory.lua │ ├── inventory.otmod │ └── inventory.otui ├── game_itemselector │ ├── itemselector.lua │ ├── itemselector.otmod │ └── itemselector.otui ├── game_market │ ├── market.lua │ ├── market.otmod │ ├── market.otui │ ├── marketoffer.lua │ ├── marketprotocol.lua │ ├── offerstatistic.lua │ └── ui │ │ ├── general │ │ ├── amountwindow.otui │ │ ├── marketbuttons.otui │ │ ├── marketcombobox.otui │ │ └── markettabs.otui │ │ ├── marketoffers.otui │ │ ├── marketoffers │ │ ├── browse.otui │ │ ├── itemdetails.otui │ │ ├── itemoffers.otui │ │ ├── itemstats.otui │ │ └── overview.otui │ │ ├── myoffers.otui │ │ └── myoffers │ │ ├── currentoffers.otui │ │ ├── itemoffers.otui │ │ └── offerhistory.otui ├── game_minimap │ ├── flagwindow.otui │ ├── minimap.lua │ ├── minimap.otmod │ └── minimap.otui ├── game_modaldialog │ ├── modaldialog.lua │ ├── modaldialog.otmod │ └── modaldialog.otui ├── game_npctrade │ ├── npctrade.lua │ ├── npctrade.otmod │ └── npctrade.otui ├── game_outfit │ ├── outfit.lua │ ├── outfit.otmod │ └── outfitwindow.otui ├── game_playerdeath │ ├── deathwindow.otui │ ├── playerdeath.lua │ └── playerdeath.otmod ├── game_playermount │ ├── playermount.lua │ └── playermount.otmod ├── game_playertrade │ ├── playertrade.lua │ ├── playertrade.otmod │ └── tradewindow.otui ├── game_prey │ ├── prey.lua │ ├── prey.otmod │ └── prey.otui ├── game_protocol │ ├── protocol.lua │ └── protocol.otmod ├── game_questlog │ ├── questlog.lua │ ├── questlog.otmod │ └── questlogwindow.otui ├── game_ruleviolation │ ├── ruleviolation.lua │ ├── ruleviolation.otmod │ └── ruleviolation.otui ├── game_shaders │ ├── shaders.lua │ └── shaders.otmod ├── game_shop │ ├── shop.lua │ ├── shop.otmod │ ├── shop.otui │ └── transfer.otui ├── game_skills │ ├── skills.lua │ ├── skills.otmod │ └── skills.otui ├── game_spelllist │ ├── spelllist.lua │ ├── spelllist.otmod │ └── spelllist.otui ├── game_stats │ ├── stats.lua │ ├── stats.otmod │ └── stats.otui ├── game_textmessage │ ├── textmessage.lua │ ├── textmessage.otmod │ └── textmessage.otui ├── game_textwindow │ ├── textwindow.lua │ ├── textwindow.otmod │ └── textwindow.otui ├── game_things │ ├── things.lua │ └── things.otmod ├── game_topbar │ ├── topbar.lua │ ├── topbar.otmod │ └── topbar.otui ├── game_unjustifiedpoints │ ├── unjustifiedpoints.lua │ ├── unjustifiedpoints.otmod │ └── unjustifiedpoints.otui ├── game_viplist │ ├── addvip.otui │ ├── editvip.otui │ ├── viplist.lua │ ├── viplist.otmod │ └── viplist.otui ├── game_walking │ ├── walking.lua │ └── walking.otmod ├── gamelib │ ├── const.lua │ ├── creature.lua │ ├── game.lua │ ├── gamelib.otmod │ ├── market.lua │ ├── player.lua │ ├── position.lua │ ├── protocol.lua │ ├── protocolgame.lua │ ├── protocollogin.lua │ ├── spells.lua │ ├── textmessages.lua │ ├── thing.lua │ ├── ui │ │ ├── uicreaturebutton.lua │ │ ├── uiitem.lua │ │ └── uiminimap.lua │ └── util.lua └── updater │ ├── updater.lua │ ├── updater.otmod │ └── updater.otui ├── src ├── CMakeLists.txt ├── android │ ├── android_native_app_glue.cpp │ ├── android_native_app_glue.h │ ├── dependencies.cpp │ └── pch.h ├── client │ ├── animatedtext.cpp │ ├── animatedtext.h │ ├── animator.cpp │ ├── animator.h │ ├── client.cpp │ ├── client.h │ ├── const.h │ ├── container.cpp │ ├── container.h │ ├── creature.cpp │ ├── creature.h │ ├── creatures.cpp │ ├── creatures.h │ ├── declarations.h │ ├── effect.cpp │ ├── effect.h │ ├── game.cpp │ ├── game.h │ ├── global.h │ ├── healthbars.cpp │ ├── healthbars.h │ ├── houses.cpp │ ├── houses.h │ ├── item.cpp │ ├── item.h │ ├── itemtype.cpp │ ├── itemtype.h │ ├── lightview.cpp │ ├── lightview.h │ ├── localplayer.cpp │ ├── localplayer.h │ ├── luafunctions_client.cpp │ ├── luavaluecasts_client.cpp │ ├── luavaluecasts_client.h │ ├── map.cpp │ ├── map.h │ ├── mapio.cpp │ ├── mapview.cpp │ ├── mapview.h │ ├── minimap.cpp │ ├── minimap.h │ ├── missile.cpp │ ├── missile.h │ ├── outfit.cpp │ ├── outfit.h │ ├── player.cpp │ ├── player.h │ ├── position.h │ ├── protocolcodes.cpp │ ├── protocolcodes.h │ ├── protocolgame.cpp │ ├── protocolgame.h │ ├── protocolgameparse.cpp │ ├── protocolgamesend.cpp │ ├── spritemanager.cpp │ ├── spritemanager.h │ ├── statictext.cpp │ ├── statictext.h │ ├── thing.cpp │ ├── thing.h │ ├── thingstype.h │ ├── thingtype.cpp │ ├── thingtype.h │ ├── thingtypemanager.cpp │ ├── thingtypemanager.h │ ├── tile.cpp │ ├── tile.h │ ├── towns.cpp │ ├── towns.h │ ├── uicreature.cpp │ ├── uicreature.h │ ├── uigraph.cpp │ ├── uigraph.h │ ├── uiitem.cpp │ ├── uiitem.h │ ├── uimap.cpp │ ├── uimap.h │ ├── uimapanchorlayout.cpp │ ├── uimapanchorlayout.h │ ├── uiminimap.cpp │ ├── uiminimap.h │ ├── uiprogressrect.cpp │ ├── uiprogressrect.h │ ├── uisprite.cpp │ ├── uisprite.h │ └── walkmatrix.h ├── framework │ ├── const.h │ ├── core │ │ ├── adaptiverenderer.cpp │ │ ├── adaptiverenderer.h │ │ ├── application.cpp │ │ ├── application.h │ │ ├── asyncdispatcher.cpp │ │ ├── asyncdispatcher.h │ │ ├── binarytree.cpp │ │ ├── binarytree.h │ │ ├── clock.cpp │ │ ├── clock.h │ │ ├── config.cpp │ │ ├── config.h │ │ ├── configmanager.cpp │ │ ├── configmanager.h │ │ ├── declarations.h │ │ ├── event.cpp │ │ ├── event.h │ │ ├── eventdispatcher.cpp │ │ ├── eventdispatcher.h │ │ ├── filestream.cpp │ │ ├── filestream.h │ │ ├── graphicalapplication.cpp │ │ ├── graphicalapplication.h │ │ ├── inputevent.h │ │ ├── logger.cpp │ │ ├── logger.h │ │ ├── module.cpp │ │ ├── module.h │ │ ├── modulemanager.cpp │ │ ├── modulemanager.h │ │ ├── resourcemanager.cpp │ │ ├── resourcemanager.h │ │ ├── scheduledevent.cpp │ │ ├── scheduledevent.h │ │ ├── timer.cpp │ │ └── timer.h │ ├── global.h │ ├── graphics │ │ ├── animatedtexture.cpp │ │ ├── animatedtexture.h │ │ ├── apngloader.cpp │ │ ├── apngloader.h │ │ ├── atlas.cpp │ │ ├── atlas.h │ │ ├── bitmapfont.cpp │ │ ├── bitmapfont.h │ │ ├── cachedtext.cpp │ │ ├── cachedtext.h │ │ ├── colorarray.h │ │ ├── coordsbuffer.cpp │ │ ├── coordsbuffer.h │ │ ├── declarations.h │ │ ├── deptharray.h │ │ ├── drawcache.cpp │ │ ├── drawcache.h │ │ ├── drawqueue.cpp │ │ ├── drawqueue.h │ │ ├── fontmanager.cpp │ │ ├── fontmanager.h │ │ ├── framebuffer.cpp │ │ ├── framebuffer.h │ │ ├── framebuffermanager.cpp │ │ ├── framebuffermanager.h │ │ ├── glutil.h │ │ ├── graph.cpp │ │ ├── graph.h │ │ ├── graphics.cpp │ │ ├── graphics.h │ │ ├── hardwarebuffer.cpp │ │ ├── hardwarebuffer.h │ │ ├── image.cpp │ │ ├── image.h │ │ ├── painter.cpp │ │ ├── painter.h │ │ ├── paintershaderprogram.cpp │ │ ├── paintershaderprogram.h │ │ ├── shader.cpp │ │ ├── shader.h │ │ ├── shadermanager.cpp │ │ ├── shadermanager.h │ │ ├── shaderprogram.cpp │ │ ├── shaderprogram.h │ │ ├── shaders │ │ │ ├── newshader.h │ │ │ ├── outfits.h │ │ │ ├── shaders.h │ │ │ └── shadersources.h │ │ ├── textrender.cpp │ │ ├── textrender.h │ │ ├── texture.cpp │ │ ├── texture.h │ │ ├── texturemanager.cpp │ │ ├── texturemanager.h │ │ └── vertexarray.h │ ├── http │ │ ├── http.cpp │ │ └── http.h │ ├── input │ │ ├── mouse.cpp │ │ └── mouse.h │ ├── luaengine │ │ ├── declarations.h │ │ ├── lbitlib.cpp │ │ ├── lbitlib.h │ │ ├── luabinder.h │ │ ├── luaexception.cpp │ │ ├── luaexception.h │ │ ├── luainterface.cpp │ │ ├── luainterface.h │ │ ├── luaobject.cpp │ │ ├── luaobject.h │ │ ├── luavaluecasts.cpp │ │ └── luavaluecasts.h │ ├── luafunctions.cpp │ ├── net │ │ ├── connection.cpp │ │ ├── connection.h │ │ ├── declarations.h │ │ ├── inputmessage.cpp │ │ ├── inputmessage.h │ │ ├── outputmessage.cpp │ │ ├── outputmessage.h │ │ ├── packet_player.cpp │ │ ├── packet_player.h │ │ ├── packet_recorder.cpp │ │ ├── packet_recorder.h │ │ ├── protocol.cpp │ │ ├── protocol.h │ │ ├── server.cpp │ │ └── server.h │ ├── otml │ │ ├── declarations.h │ │ ├── otml.h │ │ ├── otmldocument.cpp │ │ ├── otmldocument.h │ │ ├── otmlemitter.cpp │ │ ├── otmlemitter.h │ │ ├── otmlexception.cpp │ │ ├── otmlexception.h │ │ ├── otmlnode.cpp │ │ ├── otmlnode.h │ │ ├── otmlparser.cpp │ │ └── otmlparser.h │ ├── pch.h │ ├── platform │ │ ├── androidplatform.cpp │ │ ├── androidwindow.cpp │ │ ├── androidwindow.h │ │ ├── crashhandler.h │ │ ├── platform.cpp │ │ ├── platform.h │ │ ├── platformwindow.cpp │ │ ├── platformwindow.h │ │ ├── sdlwindow.cpp │ │ ├── sdlwindow.h │ │ ├── unixcrashhandler.cpp │ │ ├── unixplatform.cpp │ │ ├── win32crashhandler.cpp │ │ ├── win32platform.cpp │ │ ├── win32window.cpp │ │ ├── win32window.h │ │ ├── x11window.cpp │ │ └── x11window.h │ ├── proxy │ │ ├── proxy.cpp │ │ ├── proxy.h │ │ ├── proxy_client.cpp │ │ └── proxy_client.h │ ├── sound │ │ ├── combinedsoundsource.cpp │ │ ├── combinedsoundsource.h │ │ ├── declarations.h │ │ ├── oggsoundfile.cpp │ │ ├── oggsoundfile.h │ │ ├── soundbuffer.cpp │ │ ├── soundbuffer.h │ │ ├── soundchannel.cpp │ │ ├── soundchannel.h │ │ ├── soundfile.cpp │ │ ├── soundfile.h │ │ ├── soundmanager.cpp │ │ ├── soundmanager.h │ │ ├── soundsource.cpp │ │ ├── soundsource.h │ │ ├── streamsoundsource.cpp │ │ └── streamsoundsource.h │ ├── stdext │ │ ├── any.h │ │ ├── boolean.h │ │ ├── cast.h │ │ ├── compiler.h │ │ ├── demangle.cpp │ │ ├── demangle.h │ │ ├── dumper.h │ │ ├── dynamic_storage.h │ │ ├── exception.h │ │ ├── fastrand.h │ │ ├── format.h │ │ ├── math.cpp │ │ ├── math.h │ │ ├── net.cpp │ │ ├── net.h │ │ ├── packed_any.h │ │ ├── packed_storage.h │ │ ├── shared_object.h │ │ ├── stdext.h │ │ ├── string.cpp │ │ ├── string.h │ │ ├── thread.h │ │ ├── time.cpp │ │ ├── time.h │ │ ├── traits.h │ │ ├── types.h │ │ ├── uri.cpp │ │ └── uri.h │ ├── ui │ │ ├── declarations.h │ │ ├── ui.h │ │ ├── uianchorlayout.cpp │ │ ├── uianchorlayout.h │ │ ├── uiboxlayout.cpp │ │ ├── uiboxlayout.h │ │ ├── uigridlayout.cpp │ │ ├── uigridlayout.h │ │ ├── uihorizontallayout.cpp │ │ ├── uihorizontallayout.h │ │ ├── uilayout.cpp │ │ ├── uilayout.h │ │ ├── uimanager.cpp │ │ ├── uimanager.h │ │ ├── uitextedit.cpp │ │ ├── uitextedit.h │ │ ├── uitranslator.cpp │ │ ├── uitranslator.h │ │ ├── uiverticallayout.cpp │ │ ├── uiverticallayout.h │ │ ├── uiwidget.cpp │ │ ├── uiwidget.h │ │ ├── uiwidgetbasestyle.cpp │ │ ├── uiwidgetimage.cpp │ │ └── uiwidgettext.cpp │ ├── util │ │ ├── color.cpp │ │ ├── color.h │ │ ├── crypt.cpp │ │ ├── crypt.h │ │ ├── databuffer.h │ │ ├── extras.cpp │ │ ├── extras.h │ │ ├── framecounter.h │ │ ├── matrix.h │ │ ├── pngunpacker.cpp │ │ ├── pngunpacker.h │ │ ├── point.h │ │ ├── qrcodegen.c │ │ ├── qrcodegen.h │ │ ├── rect.h │ │ ├── size.h │ │ ├── stats.cpp │ │ └── stats.h │ └── xml │ │ ├── tinystr.cpp │ │ ├── tinystr.h │ │ ├── tinyxml.cpp │ │ ├── tinyxml.h │ │ ├── tinyxmlerror.cpp │ │ └── tinyxmlparser.cpp ├── main.cpp ├── otcicon.ico ├── otcicon.rc ├── otclient.rc └── resource.h ├── vc17 ├── otclient.sln ├── otclient.vcxproj └── settings.props └── vcpkg.json /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/.github/ISSUE_TEMPLATE/bug.yaml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/request.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/.github/ISSUE_TEMPLATE/request.yaml -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/labeler.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/.github/labeler.yml -------------------------------------------------------------------------------- /.github/workflows/build-android.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/.github/workflows/build-android.yml -------------------------------------------------------------------------------- /.github/workflows/build-ubuntu.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/.github/workflows/build-ubuntu.yml -------------------------------------------------------------------------------- /.github/workflows/build-windows.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/.github/workflows/build-windows.yml -------------------------------------------------------------------------------- /.github/workflows/issue.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/.github/workflows/issue.yml -------------------------------------------------------------------------------- /.github/workflows/pr-labeler.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/.github/workflows/pr-labeler.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/.gitignore -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /CMakePresets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/CMakePresets.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/README.md -------------------------------------------------------------------------------- /android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/android/.gitignore -------------------------------------------------------------------------------- /android/otclientv8.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/android/otclientv8.sln -------------------------------------------------------------------------------- /android/otclientv8/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/android/otclientv8/AndroidManifest.xml -------------------------------------------------------------------------------- /android/otclientv8/assets/put_here_your_data.zip.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /android/otclientv8/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/android/otclientv8/build.xml -------------------------------------------------------------------------------- /android/otclientv8/project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/android/otclientv8/project.properties -------------------------------------------------------------------------------- /android/otclientv8/res/layout/editor.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/android/otclientv8/res/layout/editor.xml -------------------------------------------------------------------------------- /android/otclientv8/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/android/otclientv8/res/values/dimens.xml -------------------------------------------------------------------------------- /android/otclientv8/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/android/otclientv8/res/values/styles.xml -------------------------------------------------------------------------------- /cmake/FindLuaJIT.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/cmake/FindLuaJIT.cmake -------------------------------------------------------------------------------- /cmake/FindVorbis.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/cmake/FindVorbis.cmake -------------------------------------------------------------------------------- /cmake/FindVorbisFile.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/cmake/FindVorbisFile.cmake -------------------------------------------------------------------------------- /cmake/LoggingHelper.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/cmake/LoggingHelper.cmake -------------------------------------------------------------------------------- /cmake/MessageColors.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/cmake/MessageColors.cmake -------------------------------------------------------------------------------- /cmake/icon/otcicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/cmake/icon/otcicon.ico -------------------------------------------------------------------------------- /cmake/icon/otcicon.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/cmake/icon/otcicon.rc -------------------------------------------------------------------------------- /create_android_assets.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/create_android_assets.ps1 -------------------------------------------------------------------------------- /data/cursors/cursors.otml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/data/cursors/cursors.otml -------------------------------------------------------------------------------- /data/cursors/horizontalcursor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/data/cursors/horizontalcursor.png -------------------------------------------------------------------------------- /data/cursors/pointer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/data/cursors/pointer.png -------------------------------------------------------------------------------- /data/cursors/targetcursor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/data/cursors/targetcursor.png -------------------------------------------------------------------------------- /data/cursors/textcursor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/data/cursors/textcursor.png -------------------------------------------------------------------------------- /data/cursors/verticalcursor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/data/cursors/verticalcursor.png -------------------------------------------------------------------------------- /data/fonts/cipsoftFont.otfont: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/data/fonts/cipsoftFont.otfont -------------------------------------------------------------------------------- /data/fonts/cipsoftFont.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/data/fonts/cipsoftFont.png -------------------------------------------------------------------------------- /data/fonts/sans-bold-16px.otfont: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/data/fonts/sans-bold-16px.otfont -------------------------------------------------------------------------------- /data/fonts/sans-bold-16px_cp1252.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/data/fonts/sans-bold-16px_cp1252.png -------------------------------------------------------------------------------- /data/fonts/small-9px.otfont: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/data/fonts/small-9px.otfont -------------------------------------------------------------------------------- /data/fonts/small-9px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/data/fonts/small-9px.png -------------------------------------------------------------------------------- /data/fonts/terminus-10px.otfont: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/data/fonts/terminus-10px.otfont -------------------------------------------------------------------------------- /data/fonts/terminus-10px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/data/fonts/terminus-10px.png -------------------------------------------------------------------------------- /data/fonts/terminus-14px-bold.otfont: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/data/fonts/terminus-14px-bold.otfont -------------------------------------------------------------------------------- /data/fonts/terminus-14px-bold.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/data/fonts/terminus-14px-bold.png -------------------------------------------------------------------------------- /data/fonts/verdana-11px-rounded.otfont: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/data/fonts/verdana-11px-rounded.otfont -------------------------------------------------------------------------------- /data/fonts/verdana-9px-bold.otfont: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/data/fonts/verdana-9px-bold.otfont -------------------------------------------------------------------------------- /data/fonts/verdana-9px-bold.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/data/fonts/verdana-9px-bold.png -------------------------------------------------------------------------------- /data/fonts/verdana-9px-italic.otfont: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/data/fonts/verdana-9px-italic.otfont -------------------------------------------------------------------------------- /data/fonts/verdana-9px-italic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/data/fonts/verdana-9px-italic.png -------------------------------------------------------------------------------- /data/fonts/verdana-9px.otfont: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/data/fonts/verdana-9px.otfont -------------------------------------------------------------------------------- /data/fonts/verdana-9px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/data/fonts/verdana-9px.png -------------------------------------------------------------------------------- /data/images/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/data/images/background.png -------------------------------------------------------------------------------- /data/images/bars/health1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/data/images/bars/health1.png -------------------------------------------------------------------------------- /data/images/bars/mana1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/data/images/bars/mana1.png -------------------------------------------------------------------------------- /data/images/clienticon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/data/images/clienticon.png -------------------------------------------------------------------------------- /data/images/crosshair/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/data/images/crosshair/default.png -------------------------------------------------------------------------------- /data/images/crosshair/full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/data/images/crosshair/full.png -------------------------------------------------------------------------------- /data/images/flags/de.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/data/images/flags/de.png -------------------------------------------------------------------------------- /data/images/flags/en.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/data/images/flags/en.png -------------------------------------------------------------------------------- /data/images/flags/es.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/data/images/flags/es.png -------------------------------------------------------------------------------- /data/images/flags/pl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/data/images/flags/pl.png -------------------------------------------------------------------------------- /data/images/flags/pt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/data/images/flags/pt.png -------------------------------------------------------------------------------- /data/images/flags/sv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/data/images/flags/sv.png -------------------------------------------------------------------------------- /data/images/game/actionbar/arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/data/images/game/actionbar/arrow.png -------------------------------------------------------------------------------- /data/images/game/actionbar/locked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/data/images/game/actionbar/locked.png -------------------------------------------------------------------------------- /data/images/game/actionbar/unlocked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/data/images/game/actionbar/unlocked.png -------------------------------------------------------------------------------- /data/images/game/actionbarslot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/data/images/game/actionbarslot.png -------------------------------------------------------------------------------- /data/images/game/battle/battle_npcs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/data/images/game/battle/battle_npcs.png -------------------------------------------------------------------------------- /data/images/game/battle/battle_party.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/data/images/game/battle/battle_party.png -------------------------------------------------------------------------------- /data/images/game/circle/left_empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/data/images/game/circle/left_empty.png -------------------------------------------------------------------------------- /data/images/game/circle/left_full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/data/images/game/circle/left_full.png -------------------------------------------------------------------------------- /data/images/game/circle/right_empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/data/images/game/circle/right_empty.png -------------------------------------------------------------------------------- /data/images/game/circle/right_full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/data/images/game/circle/right_full.png -------------------------------------------------------------------------------- /data/images/game/combatmodes/mount.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/data/images/game/combatmodes/mount.png -------------------------------------------------------------------------------- /data/images/game/combatmodes/pvp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/data/images/game/combatmodes/pvp.png -------------------------------------------------------------------------------- /data/images/game/console/channels.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/data/images/game/console/channels.png -------------------------------------------------------------------------------- /data/images/game/console/downarrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/data/images/game/console/downarrow.png -------------------------------------------------------------------------------- /data/images/game/console/ignore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/data/images/game/console/ignore.png -------------------------------------------------------------------------------- /data/images/game/console/leftarrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/data/images/game/console/leftarrow.png -------------------------------------------------------------------------------- /data/images/game/console/rightarrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/data/images/game/console/rightarrow.png -------------------------------------------------------------------------------- /data/images/game/console/say.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/data/images/game/console/say.png -------------------------------------------------------------------------------- /data/images/game/console/uparrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/data/images/game/console/uparrow.png -------------------------------------------------------------------------------- /data/images/game/console/whisper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/data/images/game/console/whisper.png -------------------------------------------------------------------------------- /data/images/game/console/yell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/data/images/game/console/yell.png -------------------------------------------------------------------------------- /data/images/game/dangerous.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/data/images/game/dangerous.png -------------------------------------------------------------------------------- /data/images/game/emblems/emblem_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/data/images/game/emblems/emblem_blue.png -------------------------------------------------------------------------------- /data/images/game/emblems/emblem_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/data/images/game/emblems/emblem_red.png -------------------------------------------------------------------------------- /data/images/game/floor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/data/images/game/floor.png -------------------------------------------------------------------------------- /data/images/game/imbuing/100percent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/data/images/game/imbuing/100percent.png -------------------------------------------------------------------------------- /data/images/game/imbuing/clear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/data/images/game/imbuing/clear.png -------------------------------------------------------------------------------- /data/images/game/imbuing/imbue_empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/data/images/game/imbuing/imbue_empty.png -------------------------------------------------------------------------------- /data/images/game/imbuing/imbue_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/data/images/game/imbuing/imbue_green.png -------------------------------------------------------------------------------- /data/images/game/imbuing/slot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/data/images/game/imbuing/slot.png -------------------------------------------------------------------------------- /data/images/game/minimap/cross.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/data/images/game/minimap/cross.png -------------------------------------------------------------------------------- /data/images/game/minimap/flag0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/data/images/game/minimap/flag0.png -------------------------------------------------------------------------------- /data/images/game/minimap/flag1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/data/images/game/minimap/flag1.png -------------------------------------------------------------------------------- /data/images/game/minimap/flag10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/data/images/game/minimap/flag10.png -------------------------------------------------------------------------------- /data/images/game/minimap/flag11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/data/images/game/minimap/flag11.png -------------------------------------------------------------------------------- /data/images/game/minimap/flag12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/data/images/game/minimap/flag12.png -------------------------------------------------------------------------------- /data/images/game/minimap/flag13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/data/images/game/minimap/flag13.png -------------------------------------------------------------------------------- /data/images/game/minimap/flag14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/data/images/game/minimap/flag14.png -------------------------------------------------------------------------------- /data/images/game/minimap/flag15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/data/images/game/minimap/flag15.png -------------------------------------------------------------------------------- /data/images/game/minimap/flag16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/data/images/game/minimap/flag16.png -------------------------------------------------------------------------------- /data/images/game/minimap/flag17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/data/images/game/minimap/flag17.png -------------------------------------------------------------------------------- /data/images/game/minimap/flag18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/data/images/game/minimap/flag18.png -------------------------------------------------------------------------------- /data/images/game/minimap/flag19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/data/images/game/minimap/flag19.png -------------------------------------------------------------------------------- /data/images/game/minimap/flag2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/data/images/game/minimap/flag2.png -------------------------------------------------------------------------------- /data/images/game/minimap/flag3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/data/images/game/minimap/flag3.png -------------------------------------------------------------------------------- /data/images/game/minimap/flag4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/data/images/game/minimap/flag4.png -------------------------------------------------------------------------------- /data/images/game/minimap/flag5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/data/images/game/minimap/flag5.png -------------------------------------------------------------------------------- /data/images/game/minimap/flag6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/data/images/game/minimap/flag6.png -------------------------------------------------------------------------------- /data/images/game/minimap/flag7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/data/images/game/minimap/flag7.png -------------------------------------------------------------------------------- /data/images/game/minimap/flag8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/data/images/game/minimap/flag8.png -------------------------------------------------------------------------------- /data/images/game/minimap/flag9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/data/images/game/minimap/flag9.png -------------------------------------------------------------------------------- /data/images/game/minimap/floor_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/data/images/game/minimap/floor_down.png -------------------------------------------------------------------------------- /data/images/game/minimap/floor_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/data/images/game/minimap/floor_up.png -------------------------------------------------------------------------------- /data/images/game/minimap/zoom_in.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/data/images/game/minimap/zoom_in.png -------------------------------------------------------------------------------- /data/images/game/minimap/zoom_out.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/data/images/game/minimap/zoom_out.png -------------------------------------------------------------------------------- /data/images/game/mobile/attack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/data/images/game/mobile/attack.png -------------------------------------------------------------------------------- /data/images/game/mobile/chat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/data/images/game/mobile/chat.png -------------------------------------------------------------------------------- /data/images/game/mobile/follow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/data/images/game/mobile/follow.png -------------------------------------------------------------------------------- /data/images/game/mobile/keypad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/data/images/game/mobile/keypad.png -------------------------------------------------------------------------------- /data/images/game/mobile/look.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/data/images/game/mobile/look.png -------------------------------------------------------------------------------- /data/images/game/mobile/use.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/data/images/game/mobile/use.png -------------------------------------------------------------------------------- /data/images/game/npcicons/icon_chat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/data/images/game/npcicons/icon_chat.png -------------------------------------------------------------------------------- /data/images/game/npcicons/icon_quest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/data/images/game/npcicons/icon_quest.png -------------------------------------------------------------------------------- /data/images/game/npcicons/icon_trade.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/data/images/game/npcicons/icon_trade.png -------------------------------------------------------------------------------- /data/images/game/prey/prey_bigdamage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/data/images/game/prey/prey_bigdamage.png -------------------------------------------------------------------------------- /data/images/game/prey/prey_bigloot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/data/images/game/prey/prey_bigloot.png -------------------------------------------------------------------------------- /data/images/game/prey/prey_bigxp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/data/images/game/prey/prey_bigxp.png -------------------------------------------------------------------------------- /data/images/game/prey/prey_choose.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/data/images/game/prey/prey_choose.png -------------------------------------------------------------------------------- /data/images/game/prey/prey_damage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/data/images/game/prey/prey_damage.png -------------------------------------------------------------------------------- /data/images/game/prey/prey_defense.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/data/images/game/prey/prey_defense.png -------------------------------------------------------------------------------- /data/images/game/prey/prey_gold.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/data/images/game/prey/prey_gold.png -------------------------------------------------------------------------------- /data/images/game/prey/prey_inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/data/images/game/prey/prey_inactive.png -------------------------------------------------------------------------------- /data/images/game/prey/prey_loot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/data/images/game/prey/prey_loot.png -------------------------------------------------------------------------------- /data/images/game/prey/prey_no_bonus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/data/images/game/prey/prey_no_bonus.png -------------------------------------------------------------------------------- /data/images/game/prey/prey_nostar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/data/images/game/prey/prey_nostar.png -------------------------------------------------------------------------------- /data/images/game/prey/prey_perm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/data/images/game/prey/prey_perm.png -------------------------------------------------------------------------------- /data/images/game/prey/prey_perm_test.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/data/images/game/prey/prey_perm_test.png -------------------------------------------------------------------------------- /data/images/game/prey/prey_reroll.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/data/images/game/prey/prey_reroll.png -------------------------------------------------------------------------------- /data/images/game/prey/prey_select.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/data/images/game/prey/prey_select.png -------------------------------------------------------------------------------- /data/images/game/prey/prey_star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/data/images/game/prey/prey_star.png -------------------------------------------------------------------------------- /data/images/game/prey/prey_temp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/data/images/game/prey/prey_temp.png -------------------------------------------------------------------------------- /data/images/game/prey/prey_temp_test.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/data/images/game/prey/prey_temp_test.png -------------------------------------------------------------------------------- /data/images/game/prey/prey_wildcard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/data/images/game/prey/prey_wildcard.png -------------------------------------------------------------------------------- /data/images/game/prey/prey_xp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/data/images/game/prey/prey_xp.png -------------------------------------------------------------------------------- /data/images/game/shields/shield_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/data/images/game/shields/shield_blue.png -------------------------------------------------------------------------------- /data/images/game/shields/shield_gray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/data/images/game/shields/shield_gray.png -------------------------------------------------------------------------------- /data/images/game/skull_socket.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/data/images/game/skull_socket.png -------------------------------------------------------------------------------- /data/images/game/skulls/skull_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/data/images/game/skulls/skull_black.png -------------------------------------------------------------------------------- /data/images/game/skulls/skull_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/data/images/game/skulls/skull_green.png -------------------------------------------------------------------------------- /data/images/game/skulls/skull_orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/data/images/game/skulls/skull_orange.png -------------------------------------------------------------------------------- /data/images/game/skulls/skull_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/data/images/game/skulls/skull_red.png -------------------------------------------------------------------------------- /data/images/game/skulls/skull_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/data/images/game/skulls/skull_white.png -------------------------------------------------------------------------------- /data/images/game/slots/ammo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/data/images/game/slots/ammo.png -------------------------------------------------------------------------------- /data/images/game/slots/back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/data/images/game/slots/back.png -------------------------------------------------------------------------------- /data/images/game/slots/body.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/data/images/game/slots/body.png -------------------------------------------------------------------------------- /data/images/game/slots/coins.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/data/images/game/slots/coins.png -------------------------------------------------------------------------------- /data/images/game/slots/feet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/data/images/game/slots/feet.png -------------------------------------------------------------------------------- /data/images/game/slots/finger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/data/images/game/slots/finger.png -------------------------------------------------------------------------------- /data/images/game/slots/head.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/data/images/game/slots/head.png -------------------------------------------------------------------------------- /data/images/game/slots/left-hand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/data/images/game/slots/left-hand.png -------------------------------------------------------------------------------- /data/images/game/slots/legs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/data/images/game/slots/legs.png -------------------------------------------------------------------------------- /data/images/game/slots/neck.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/data/images/game/slots/neck.png -------------------------------------------------------------------------------- /data/images/game/slots/purse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/data/images/game/slots/purse.png -------------------------------------------------------------------------------- /data/images/game/slots/right-hand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/data/images/game/slots/right-hand.png -------------------------------------------------------------------------------- /data/images/game/slots/soulcap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/data/images/game/slots/soulcap.png -------------------------------------------------------------------------------- /data/images/game/spells/cooldowns.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/data/images/game/spells/cooldowns.png -------------------------------------------------------------------------------- /data/images/game/states/bleeding.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/data/images/game/states/bleeding.png -------------------------------------------------------------------------------- /data/images/game/states/burning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/data/images/game/states/burning.png -------------------------------------------------------------------------------- /data/images/game/states/cursed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/data/images/game/states/cursed.png -------------------------------------------------------------------------------- /data/images/game/states/dazzled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/data/images/game/states/dazzled.png -------------------------------------------------------------------------------- /data/images/game/states/drowning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/data/images/game/states/drowning.png -------------------------------------------------------------------------------- /data/images/game/states/drunk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/data/images/game/states/drunk.png -------------------------------------------------------------------------------- /data/images/game/states/freezing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/data/images/game/states/freezing.png -------------------------------------------------------------------------------- /data/images/game/states/haste.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/data/images/game/states/haste.png -------------------------------------------------------------------------------- /data/images/game/states/hungry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/data/images/game/states/hungry.png -------------------------------------------------------------------------------- /data/images/game/states/poisoned.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/data/images/game/states/poisoned.png -------------------------------------------------------------------------------- /data/images/game/states/slowed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/data/images/game/states/slowed.png -------------------------------------------------------------------------------- /data/images/game/topbar/boost.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/data/images/game/topbar/boost.png -------------------------------------------------------------------------------- /data/images/game/topbar/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/data/images/game/topbar/icons.png -------------------------------------------------------------------------------- /data/images/game/viplist/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/data/images/game/viplist/icons.png -------------------------------------------------------------------------------- /data/images/loading.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/data/images/loading.png -------------------------------------------------------------------------------- /data/images/optionstab/audio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/data/images/optionstab/audio.png -------------------------------------------------------------------------------- /data/images/optionstab/console.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/data/images/optionstab/console.png -------------------------------------------------------------------------------- /data/images/optionstab/extras.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/data/images/optionstab/extras.png -------------------------------------------------------------------------------- /data/images/optionstab/features.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/data/images/optionstab/features.png -------------------------------------------------------------------------------- /data/images/optionstab/game.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/data/images/optionstab/game.png -------------------------------------------------------------------------------- /data/images/optionstab/graphics.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/data/images/optionstab/graphics.png -------------------------------------------------------------------------------- /data/images/shaders/brazil.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/data/images/shaders/brazil.png -------------------------------------------------------------------------------- /data/images/shaders/gold.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/data/images/shaders/gold.png -------------------------------------------------------------------------------- /data/images/shaders/rainbow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/data/images/shaders/rainbow.png -------------------------------------------------------------------------------- /data/images/shaders/stars.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/data/images/shaders/stars.png -------------------------------------------------------------------------------- /data/images/shaders/sweden.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/data/images/shaders/sweden.png -------------------------------------------------------------------------------- /data/images/topbuttons/analyzers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/data/images/topbuttons/analyzers.png -------------------------------------------------------------------------------- /data/images/topbuttons/audio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/data/images/topbuttons/audio.png -------------------------------------------------------------------------------- /data/images/topbuttons/audio_mute.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/data/images/topbuttons/audio_mute.png -------------------------------------------------------------------------------- /data/images/topbuttons/battle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/data/images/topbuttons/battle.png -------------------------------------------------------------------------------- /data/images/topbuttons/bot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/data/images/topbuttons/bot.png -------------------------------------------------------------------------------- /data/images/topbuttons/buttons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/data/images/topbuttons/buttons.png -------------------------------------------------------------------------------- /data/images/topbuttons/cooldowns.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/data/images/topbuttons/cooldowns.png -------------------------------------------------------------------------------- /data/images/topbuttons/debug.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/data/images/topbuttons/debug.png -------------------------------------------------------------------------------- /data/images/topbuttons/healthinfo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/data/images/topbuttons/healthinfo.png -------------------------------------------------------------------------------- /data/images/topbuttons/hotkeys.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/data/images/topbuttons/hotkeys.png -------------------------------------------------------------------------------- /data/images/topbuttons/inventory.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/data/images/topbuttons/inventory.png -------------------------------------------------------------------------------- /data/images/topbuttons/keypad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/data/images/topbuttons/keypad.png -------------------------------------------------------------------------------- /data/images/topbuttons/login.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/data/images/topbuttons/login.png -------------------------------------------------------------------------------- /data/images/topbuttons/logout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/data/images/topbuttons/logout.png -------------------------------------------------------------------------------- /data/images/topbuttons/minimap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/data/images/topbuttons/minimap.png -------------------------------------------------------------------------------- /data/images/topbuttons/motd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/data/images/topbuttons/motd.png -------------------------------------------------------------------------------- /data/images/topbuttons/options.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/data/images/topbuttons/options.png -------------------------------------------------------------------------------- /data/images/topbuttons/particles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/data/images/topbuttons/particles.png -------------------------------------------------------------------------------- /data/images/topbuttons/prey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/data/images/topbuttons/prey.png -------------------------------------------------------------------------------- /data/images/topbuttons/questlog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/data/images/topbuttons/questlog.png -------------------------------------------------------------------------------- /data/images/topbuttons/shop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/data/images/topbuttons/shop.png -------------------------------------------------------------------------------- /data/images/topbuttons/skills.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/data/images/topbuttons/skills.png -------------------------------------------------------------------------------- /data/images/topbuttons/spelllist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/data/images/topbuttons/spelllist.png -------------------------------------------------------------------------------- /data/images/topbuttons/terminal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/data/images/topbuttons/terminal.png -------------------------------------------------------------------------------- /data/images/topbuttons/viplist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/data/images/topbuttons/viplist.png -------------------------------------------------------------------------------- /data/images/topbuttons/zoomin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/data/images/topbuttons/zoomin.png -------------------------------------------------------------------------------- /data/images/topbuttons/zoomout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/data/images/topbuttons/zoomout.png -------------------------------------------------------------------------------- /data/images/ui/android.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/data/images/ui/android.png -------------------------------------------------------------------------------- /data/images/ui/arrow_horizontal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/data/images/ui/arrow_horizontal.png -------------------------------------------------------------------------------- /data/images/ui/arrow_vertical.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/data/images/ui/arrow_vertical.png -------------------------------------------------------------------------------- /data/images/ui/button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/data/images/ui/button.png -------------------------------------------------------------------------------- /data/images/ui/button_popupmenu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/data/images/ui/button_popupmenu.png -------------------------------------------------------------------------------- /data/images/ui/button_rounded.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/data/images/ui/button_rounded.png -------------------------------------------------------------------------------- /data/images/ui/button_square.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/data/images/ui/button_square.png -------------------------------------------------------------------------------- /data/images/ui/button_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/data/images/ui/button_top.png -------------------------------------------------------------------------------- /data/images/ui/button_top_blink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/data/images/ui/button_top_blink.png -------------------------------------------------------------------------------- /data/images/ui/button_topgame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/data/images/ui/button_topgame.png -------------------------------------------------------------------------------- /data/images/ui/checkbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/data/images/ui/checkbox.png -------------------------------------------------------------------------------- /data/images/ui/checkbox_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/data/images/ui/checkbox_round.png -------------------------------------------------------------------------------- /data/images/ui/colorbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/data/images/ui/colorbox.png -------------------------------------------------------------------------------- /data/images/ui/combobox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/data/images/ui/combobox.png -------------------------------------------------------------------------------- /data/images/ui/combobox_rounded.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/data/images/ui/combobox_rounded.png -------------------------------------------------------------------------------- /data/images/ui/combobox_square.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/data/images/ui/combobox_square.png -------------------------------------------------------------------------------- /data/images/ui/dark_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/data/images/ui/dark_background.png -------------------------------------------------------------------------------- /data/images/ui/discord.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/data/images/ui/discord.png -------------------------------------------------------------------------------- /data/images/ui/graph_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/data/images/ui/graph_background.png -------------------------------------------------------------------------------- /data/images/ui/icon_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/data/images/ui/icon_add.png -------------------------------------------------------------------------------- /data/images/ui/ios.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/data/images/ui/ios.png -------------------------------------------------------------------------------- /data/images/ui/item-blessed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/data/images/ui/item-blessed.png -------------------------------------------------------------------------------- /data/images/ui/item.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/data/images/ui/item.png -------------------------------------------------------------------------------- /data/images/ui/menubox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/data/images/ui/menubox.png -------------------------------------------------------------------------------- /data/images/ui/minipanel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/data/images/ui/minipanel.png -------------------------------------------------------------------------------- /data/images/ui/miniwindow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/data/images/ui/miniwindow.png -------------------------------------------------------------------------------- /data/images/ui/miniwindow_buttons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/data/images/ui/miniwindow_buttons.png -------------------------------------------------------------------------------- /data/images/ui/otcicon.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/data/images/ui/otcicon.rc -------------------------------------------------------------------------------- /data/images/ui/panel_bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/data/images/ui/panel_bottom.png -------------------------------------------------------------------------------- /data/images/ui/panel_bottom2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/data/images/ui/panel_bottom2.png -------------------------------------------------------------------------------- /data/images/ui/panel_container.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/data/images/ui/panel_container.png -------------------------------------------------------------------------------- /data/images/ui/panel_content.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/data/images/ui/panel_content.png -------------------------------------------------------------------------------- /data/images/ui/panel_flat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/data/images/ui/panel_flat.png -------------------------------------------------------------------------------- /data/images/ui/panel_lightflat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/data/images/ui/panel_lightflat.png -------------------------------------------------------------------------------- /data/images/ui/panel_map.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/data/images/ui/panel_map.png -------------------------------------------------------------------------------- /data/images/ui/panel_side.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/data/images/ui/panel_side.png -------------------------------------------------------------------------------- /data/images/ui/panel_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/data/images/ui/panel_top.png -------------------------------------------------------------------------------- /data/images/ui/progressbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/data/images/ui/progressbar.png -------------------------------------------------------------------------------- /data/images/ui/qauth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/data/images/ui/qauth.png -------------------------------------------------------------------------------- /data/images/ui/rarity_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/data/images/ui/rarity_blue.png -------------------------------------------------------------------------------- /data/images/ui/rarity_frames.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/data/images/ui/rarity_frames.png -------------------------------------------------------------------------------- /data/images/ui/rarity_gold.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/data/images/ui/rarity_gold.png -------------------------------------------------------------------------------- /data/images/ui/rarity_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/data/images/ui/rarity_green.png -------------------------------------------------------------------------------- /data/images/ui/rarity_purple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/data/images/ui/rarity_purple.png -------------------------------------------------------------------------------- /data/images/ui/rarity_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/data/images/ui/rarity_white.png -------------------------------------------------------------------------------- /data/images/ui/rotate_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/data/images/ui/rotate_button.png -------------------------------------------------------------------------------- /data/images/ui/scrollbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/data/images/ui/scrollbar.png -------------------------------------------------------------------------------- /data/images/ui/separator_vertical.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/data/images/ui/separator_vertical.png -------------------------------------------------------------------------------- /data/images/ui/spinbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/data/images/ui/spinbox.png -------------------------------------------------------------------------------- /data/images/ui/spinbox_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/data/images/ui/spinbox_down.png -------------------------------------------------------------------------------- /data/images/ui/spinbox_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/data/images/ui/spinbox_up.png -------------------------------------------------------------------------------- /data/images/ui/tabbutton_rounded.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/data/images/ui/tabbutton_rounded.png -------------------------------------------------------------------------------- /data/images/ui/tabbutton_square.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/data/images/ui/tabbutton_square.png -------------------------------------------------------------------------------- /data/images/ui/textedit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/data/images/ui/textedit.png -------------------------------------------------------------------------------- /data/images/ui/window.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/data/images/ui/window.png -------------------------------------------------------------------------------- /data/images/ui/window_headless.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/data/images/ui/window_headless.png -------------------------------------------------------------------------------- /data/locales/de.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/data/locales/de.lua -------------------------------------------------------------------------------- /data/locales/en.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/data/locales/en.lua -------------------------------------------------------------------------------- /data/locales/es.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/data/locales/es.lua -------------------------------------------------------------------------------- /data/locales/pl.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/data/locales/pl.lua -------------------------------------------------------------------------------- /data/locales/pt.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/data/locales/pt.lua -------------------------------------------------------------------------------- /data/locales/sv.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/data/locales/sv.lua -------------------------------------------------------------------------------- /data/shaders/map_default_vertex.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/data/shaders/map_default_vertex.frag -------------------------------------------------------------------------------- /data/shaders/map_rainbow_vertex.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/data/shaders/map_rainbow_vertex.frag -------------------------------------------------------------------------------- /data/sounds/Creature_Detected.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/data/sounds/Creature_Detected.ogg -------------------------------------------------------------------------------- /data/sounds/Low_Health.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/data/sounds/Low_Health.ogg -------------------------------------------------------------------------------- /data/sounds/Low_Mana.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/data/sounds/Low_Mana.ogg -------------------------------------------------------------------------------- /data/sounds/Player_Attack.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/data/sounds/Player_Attack.ogg -------------------------------------------------------------------------------- /data/sounds/Player_Detected.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/data/sounds/Player_Detected.ogg -------------------------------------------------------------------------------- /data/sounds/Private_Message.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/data/sounds/Private_Message.ogg -------------------------------------------------------------------------------- /data/sounds/alarm.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/data/sounds/alarm.ogg -------------------------------------------------------------------------------- /data/sounds/magnum.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/data/sounds/magnum.ogg -------------------------------------------------------------------------------- /data/styles/10-buttons.otui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/data/styles/10-buttons.otui -------------------------------------------------------------------------------- /data/styles/10-checkboxes.otui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/data/styles/10-checkboxes.otui -------------------------------------------------------------------------------- /data/styles/10-comboboxes.otui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/data/styles/10-comboboxes.otui -------------------------------------------------------------------------------- /data/styles/10-creaturebuttons.otui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/data/styles/10-creaturebuttons.otui -------------------------------------------------------------------------------- /data/styles/10-creatures.otui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/data/styles/10-creatures.otui -------------------------------------------------------------------------------- /data/styles/10-items.otui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/data/styles/10-items.otui -------------------------------------------------------------------------------- /data/styles/10-labels.otui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/data/styles/10-labels.otui -------------------------------------------------------------------------------- /data/styles/10-listboxes.otui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/data/styles/10-listboxes.otui -------------------------------------------------------------------------------- /data/styles/10-panels.otui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/data/styles/10-panels.otui -------------------------------------------------------------------------------- /data/styles/10-progressbars.otui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/data/styles/10-progressbars.otui -------------------------------------------------------------------------------- /data/styles/10-scrollbars.otui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/data/styles/10-scrollbars.otui -------------------------------------------------------------------------------- /data/styles/10-separators.otui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/data/styles/10-separators.otui -------------------------------------------------------------------------------- /data/styles/10-splitters.otui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/data/styles/10-splitters.otui -------------------------------------------------------------------------------- /data/styles/10-textedits.otui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/data/styles/10-textedits.otui -------------------------------------------------------------------------------- /data/styles/10-windows.otui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/data/styles/10-windows.otui -------------------------------------------------------------------------------- /data/styles/20-imageview.otui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/data/styles/20-imageview.otui -------------------------------------------------------------------------------- /data/styles/20-popupmenus.otui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/data/styles/20-popupmenus.otui -------------------------------------------------------------------------------- /data/styles/20-smallscrollbar.otui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/data/styles/20-smallscrollbar.otui -------------------------------------------------------------------------------- /data/styles/20-spinboxes.otui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/data/styles/20-spinboxes.otui -------------------------------------------------------------------------------- /data/styles/20-tabbars.otui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/data/styles/20-tabbars.otui -------------------------------------------------------------------------------- /data/styles/20-tables.otui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/data/styles/20-tables.otui -------------------------------------------------------------------------------- /data/styles/20-topmenu.otui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/data/styles/20-topmenu.otui -------------------------------------------------------------------------------- /data/styles/30-inputboxes.otui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/data/styles/30-inputboxes.otui -------------------------------------------------------------------------------- /data/styles/30-messageboxes.otui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/data/styles/30-messageboxes.otui -------------------------------------------------------------------------------- /data/styles/30-miniwindow.otui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/data/styles/30-miniwindow.otui -------------------------------------------------------------------------------- /data/styles/40-console.otui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/data/styles/40-console.otui -------------------------------------------------------------------------------- /data/styles/40-container.otui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/data/styles/40-container.otui -------------------------------------------------------------------------------- /data/styles/40-entergame.otui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/data/styles/40-entergame.otui -------------------------------------------------------------------------------- /data/styles/40-gamebuttons.otui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/data/styles/40-gamebuttons.otui -------------------------------------------------------------------------------- /data/styles/40-healthinfo.otui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/data/styles/40-healthinfo.otui -------------------------------------------------------------------------------- /data/styles/40-inventory.otui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/data/styles/40-inventory.otui -------------------------------------------------------------------------------- /data/styles/40-minimap.otui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/data/styles/40-minimap.otui -------------------------------------------------------------------------------- /data/styles/40-outfitwindow.otui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/data/styles/40-outfitwindow.otui -------------------------------------------------------------------------------- /data/styles/40-tilewidget.otui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/data/styles/40-tilewidget.otui -------------------------------------------------------------------------------- /init.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/init.lua -------------------------------------------------------------------------------- /layouts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/layouts/README.md -------------------------------------------------------------------------------- /layouts/mobile/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/layouts/mobile/README.md -------------------------------------------------------------------------------- /layouts/mobile/styles/40-console.otui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/layouts/mobile/styles/40-console.otui -------------------------------------------------------------------------------- /layouts/retro/images/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/layouts/retro/images/background.png -------------------------------------------------------------------------------- /layouts/retro/images/ui/button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/layouts/retro/images/ui/button.png -------------------------------------------------------------------------------- /layouts/retro/images/ui/checkbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/layouts/retro/images/ui/checkbox.png -------------------------------------------------------------------------------- /layouts/retro/images/ui/colorbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/layouts/retro/images/ui/colorbox.png -------------------------------------------------------------------------------- /layouts/retro/images/ui/combobox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/layouts/retro/images/ui/combobox.png -------------------------------------------------------------------------------- /layouts/retro/images/ui/icon_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/layouts/retro/images/ui/icon_add.png -------------------------------------------------------------------------------- /layouts/retro/images/ui/item.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/layouts/retro/images/ui/item.png -------------------------------------------------------------------------------- /layouts/retro/images/ui/menubox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/layouts/retro/images/ui/menubox.png -------------------------------------------------------------------------------- /layouts/retro/images/ui/minipanel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/layouts/retro/images/ui/minipanel.png -------------------------------------------------------------------------------- /layouts/retro/images/ui/noimage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/layouts/retro/images/ui/noimage.png -------------------------------------------------------------------------------- /layouts/retro/images/ui/panel_map.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/layouts/retro/images/ui/panel_map.png -------------------------------------------------------------------------------- /layouts/retro/images/ui/panel_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/layouts/retro/images/ui/panel_top.png -------------------------------------------------------------------------------- /layouts/retro/images/ui/scrollbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/layouts/retro/images/ui/scrollbar.png -------------------------------------------------------------------------------- /layouts/retro/images/ui/spinbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/layouts/retro/images/ui/spinbox.png -------------------------------------------------------------------------------- /layouts/retro/images/ui/textedit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/layouts/retro/images/ui/textedit.png -------------------------------------------------------------------------------- /layouts/retro/images/ui/window.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/layouts/retro/images/ui/window.png -------------------------------------------------------------------------------- /layouts/retro/styles/10-panels.otui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/layouts/retro/styles/10-panels.otui -------------------------------------------------------------------------------- /layouts/retro/styles/10-windows.otui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/layouts/retro/styles/10-windows.otui -------------------------------------------------------------------------------- /layouts/retro/styles/20-tabbars.otui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/layouts/retro/styles/20-tabbars.otui -------------------------------------------------------------------------------- /layouts/retro/styles/20-topmenu.otui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/layouts/retro/styles/20-topmenu.otui -------------------------------------------------------------------------------- /layouts/retro/styles/40-console.otui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/layouts/retro/styles/40-console.otui -------------------------------------------------------------------------------- /layouts/retro/styles/40-minimap.otui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/layouts/retro/styles/40-minimap.otui -------------------------------------------------------------------------------- /mods/game_healthbars/healthbars.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/mods/game_healthbars/healthbars.lua -------------------------------------------------------------------------------- /mods/game_healthbars/healthbars.otmod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/mods/game_healthbars/healthbars.otmod -------------------------------------------------------------------------------- /modules/client/client.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/modules/client/client.lua -------------------------------------------------------------------------------- /modules/client/client.otmod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/modules/client/client.otmod -------------------------------------------------------------------------------- /modules/client_feedback/feedback.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/modules/client_feedback/feedback.lua -------------------------------------------------------------------------------- /modules/client_feedback/feedback.otui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/modules/client_feedback/feedback.otui -------------------------------------------------------------------------------- /modules/client_locales/locales.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/modules/client_locales/locales.lua -------------------------------------------------------------------------------- /modules/client_locales/locales.otmod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/modules/client_locales/locales.otmod -------------------------------------------------------------------------------- /modules/client_locales/locales.otui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/modules/client_locales/locales.otui -------------------------------------------------------------------------------- /modules/client_mobile/mobile.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/modules/client_mobile/mobile.lua -------------------------------------------------------------------------------- /modules/client_mobile/mobile.otmod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/modules/client_mobile/mobile.otmod -------------------------------------------------------------------------------- /modules/client_mobile/mobile.otui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/modules/client_mobile/mobile.otui -------------------------------------------------------------------------------- /modules/client_options/audio.otui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/modules/client_options/audio.otui -------------------------------------------------------------------------------- /modules/client_options/console.otui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/modules/client_options/console.otui -------------------------------------------------------------------------------- /modules/client_options/custom.otui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/modules/client_options/custom.otui -------------------------------------------------------------------------------- /modules/client_options/game.otui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/modules/client_options/game.otui -------------------------------------------------------------------------------- /modules/client_options/graphics.otui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/modules/client_options/graphics.otui -------------------------------------------------------------------------------- /modules/client_options/interface.otui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/modules/client_options/interface.otui -------------------------------------------------------------------------------- /modules/client_options/options.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/modules/client_options/options.lua -------------------------------------------------------------------------------- /modules/client_options/options.otmod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/modules/client_options/options.otmod -------------------------------------------------------------------------------- /modules/client_options/options.otui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/modules/client_options/options.otui -------------------------------------------------------------------------------- /modules/client_profiles/profiles.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/modules/client_profiles/profiles.lua -------------------------------------------------------------------------------- /modules/client_stats/stats.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/modules/client_stats/stats.lua -------------------------------------------------------------------------------- /modules/client_stats/stats.otmod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/modules/client_stats/stats.otmod -------------------------------------------------------------------------------- /modules/client_stats/stats.otui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/modules/client_stats/stats.otui -------------------------------------------------------------------------------- /modules/client_styles/styles.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/modules/client_styles/styles.lua -------------------------------------------------------------------------------- /modules/client_styles/styles.otmod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/modules/client_styles/styles.otmod -------------------------------------------------------------------------------- /modules/client_terminal/commands.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/modules/client_terminal/commands.lua -------------------------------------------------------------------------------- /modules/client_terminal/terminal.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/modules/client_terminal/terminal.lua -------------------------------------------------------------------------------- /modules/client_terminal/terminal.otui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/modules/client_terminal/terminal.otui -------------------------------------------------------------------------------- /modules/client_textedit/textedit.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/modules/client_textedit/textedit.lua -------------------------------------------------------------------------------- /modules/client_textedit/textedit.otui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/modules/client_textedit/textedit.otui -------------------------------------------------------------------------------- /modules/client_topmenu/topmenu.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/modules/client_topmenu/topmenu.lua -------------------------------------------------------------------------------- /modules/client_topmenu/topmenu.otmod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/modules/client_topmenu/topmenu.otmod -------------------------------------------------------------------------------- /modules/corelib/base64.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/modules/corelib/base64.lua -------------------------------------------------------------------------------- /modules/corelib/bitwise.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/modules/corelib/bitwise.lua -------------------------------------------------------------------------------- /modules/corelib/config.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/modules/corelib/config.lua -------------------------------------------------------------------------------- /modules/corelib/const.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/modules/corelib/const.lua -------------------------------------------------------------------------------- /modules/corelib/corelib.otmod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/modules/corelib/corelib.otmod -------------------------------------------------------------------------------- /modules/corelib/globals.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/modules/corelib/globals.lua -------------------------------------------------------------------------------- /modules/corelib/http.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/modules/corelib/http.lua -------------------------------------------------------------------------------- /modules/corelib/inputmessage.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/modules/corelib/inputmessage.lua -------------------------------------------------------------------------------- /modules/corelib/json.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/modules/corelib/json.lua -------------------------------------------------------------------------------- /modules/corelib/keyboard.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/modules/corelib/keyboard.lua -------------------------------------------------------------------------------- /modules/corelib/math.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/modules/corelib/math.lua -------------------------------------------------------------------------------- /modules/corelib/mouse.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/modules/corelib/mouse.lua -------------------------------------------------------------------------------- /modules/corelib/net.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/modules/corelib/net.lua -------------------------------------------------------------------------------- /modules/corelib/orderedtable.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/modules/corelib/orderedtable.lua -------------------------------------------------------------------------------- /modules/corelib/outputmessage.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/modules/corelib/outputmessage.lua -------------------------------------------------------------------------------- /modules/corelib/settings.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/modules/corelib/settings.lua -------------------------------------------------------------------------------- /modules/corelib/string.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/modules/corelib/string.lua -------------------------------------------------------------------------------- /modules/corelib/struct.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/modules/corelib/struct.lua -------------------------------------------------------------------------------- /modules/corelib/table.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/modules/corelib/table.lua -------------------------------------------------------------------------------- /modules/corelib/test.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/modules/corelib/test.lua -------------------------------------------------------------------------------- /modules/corelib/ui/effects.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/modules/corelib/ui/effects.lua -------------------------------------------------------------------------------- /modules/corelib/ui/tooltip.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/modules/corelib/ui/tooltip.lua -------------------------------------------------------------------------------- /modules/corelib/ui/uibutton.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/modules/corelib/ui/uibutton.lua -------------------------------------------------------------------------------- /modules/corelib/ui/uicheckbox.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/modules/corelib/ui/uicheckbox.lua -------------------------------------------------------------------------------- /modules/corelib/ui/uicombobox.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/modules/corelib/ui/uicombobox.lua -------------------------------------------------------------------------------- /modules/corelib/ui/uiimageview.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/modules/corelib/ui/uiimageview.lua -------------------------------------------------------------------------------- /modules/corelib/ui/uiinputbox.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/modules/corelib/ui/uiinputbox.lua -------------------------------------------------------------------------------- /modules/corelib/ui/uilabel.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/modules/corelib/ui/uilabel.lua -------------------------------------------------------------------------------- /modules/corelib/ui/uimessagebox.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/modules/corelib/ui/uimessagebox.lua -------------------------------------------------------------------------------- /modules/corelib/ui/uiminiwindow.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/modules/corelib/ui/uiminiwindow.lua -------------------------------------------------------------------------------- /modules/corelib/ui/uipopupmenu.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/modules/corelib/ui/uipopupmenu.lua -------------------------------------------------------------------------------- /modules/corelib/ui/uiprogressbar.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/modules/corelib/ui/uiprogressbar.lua -------------------------------------------------------------------------------- /modules/corelib/ui/uiradiogroup.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/modules/corelib/ui/uiradiogroup.lua -------------------------------------------------------------------------------- /modules/corelib/ui/uiresizeborder.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/modules/corelib/ui/uiresizeborder.lua -------------------------------------------------------------------------------- /modules/corelib/ui/uiscrollarea.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/modules/corelib/ui/uiscrollarea.lua -------------------------------------------------------------------------------- /modules/corelib/ui/uiscrollbar.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/modules/corelib/ui/uiscrollbar.lua -------------------------------------------------------------------------------- /modules/corelib/ui/uispinbox.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/modules/corelib/ui/uispinbox.lua -------------------------------------------------------------------------------- /modules/corelib/ui/uisplitter.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/modules/corelib/ui/uisplitter.lua -------------------------------------------------------------------------------- /modules/corelib/ui/uitabbar.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/modules/corelib/ui/uitabbar.lua -------------------------------------------------------------------------------- /modules/corelib/ui/uitable.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/modules/corelib/ui/uitable.lua -------------------------------------------------------------------------------- /modules/corelib/ui/uitextedit.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/modules/corelib/ui/uitextedit.lua -------------------------------------------------------------------------------- /modules/corelib/ui/uiwidget.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/modules/corelib/ui/uiwidget.lua -------------------------------------------------------------------------------- /modules/corelib/ui/uiwindow.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/modules/corelib/ui/uiwindow.lua -------------------------------------------------------------------------------- /modules/corelib/util.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/modules/corelib/util.lua -------------------------------------------------------------------------------- /modules/game_actionbar/actionbar.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/modules/game_actionbar/actionbar.lua -------------------------------------------------------------------------------- /modules/game_actionbar/actionbar.otui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/modules/game_actionbar/actionbar.otui -------------------------------------------------------------------------------- /modules/game_actionbar/hotkey.otui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/modules/game_actionbar/hotkey.otui -------------------------------------------------------------------------------- /modules/game_actionbar/object.otui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/modules/game_actionbar/object.otui -------------------------------------------------------------------------------- /modules/game_actionbar/spell.otui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/modules/game_actionbar/spell.otui -------------------------------------------------------------------------------- /modules/game_actionbar/text.otui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/modules/game_actionbar/text.otui -------------------------------------------------------------------------------- /modules/game_battle/battle.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/modules/game_battle/battle.lua -------------------------------------------------------------------------------- /modules/game_battle/battle.otmod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/modules/game_battle/battle.otmod -------------------------------------------------------------------------------- /modules/game_battle/battle.otui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/modules/game_battle/battle.otui -------------------------------------------------------------------------------- /modules/game_battle/battlebutton.otui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/modules/game_battle/battlebutton.otui -------------------------------------------------------------------------------- /modules/game_bot/bot.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/modules/game_bot/bot.lua -------------------------------------------------------------------------------- /modules/game_bot/bot.otmod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/modules/game_bot/bot.otmod -------------------------------------------------------------------------------- /modules/game_bot/bot.otui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/modules/game_bot/bot.otui -------------------------------------------------------------------------------- /modules/game_bot/configs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/modules/game_bot/configs.png -------------------------------------------------------------------------------- /modules/game_bot/default_configs/vBot_4.7/vBot/version.txt: -------------------------------------------------------------------------------- 1 | 4.7 -------------------------------------------------------------------------------- /modules/game_bot/default_configs/vBot_4.8/vBot/version.txt: -------------------------------------------------------------------------------- 1 | 4.8 -------------------------------------------------------------------------------- /modules/game_bot/edit.otui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/modules/game_bot/edit.otui -------------------------------------------------------------------------------- /modules/game_bot/executor.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/modules/game_bot/executor.lua -------------------------------------------------------------------------------- /modules/game_bot/functions/config.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/modules/game_bot/functions/config.lua -------------------------------------------------------------------------------- /modules/game_bot/functions/const.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/modules/game_bot/functions/const.lua -------------------------------------------------------------------------------- /modules/game_bot/functions/icon.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/modules/game_bot/functions/icon.lua -------------------------------------------------------------------------------- /modules/game_bot/functions/main.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/modules/game_bot/functions/main.lua -------------------------------------------------------------------------------- /modules/game_bot/functions/map.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/modules/game_bot/functions/map.lua -------------------------------------------------------------------------------- /modules/game_bot/functions/npc.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/modules/game_bot/functions/npc.lua -------------------------------------------------------------------------------- /modules/game_bot/functions/player.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/modules/game_bot/functions/player.lua -------------------------------------------------------------------------------- /modules/game_bot/functions/server.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/modules/game_bot/functions/server.lua -------------------------------------------------------------------------------- /modules/game_bot/functions/sound.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/modules/game_bot/functions/sound.lua -------------------------------------------------------------------------------- /modules/game_bot/functions/test.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/modules/game_bot/functions/test.lua -------------------------------------------------------------------------------- /modules/game_bot/functions/tools.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/modules/game_bot/functions/tools.lua -------------------------------------------------------------------------------- /modules/game_bot/functions/ui.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/modules/game_bot/functions/ui.lua -------------------------------------------------------------------------------- /modules/game_bot/panels/attacking.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/modules/game_bot/panels/attacking.lua -------------------------------------------------------------------------------- /modules/game_bot/panels/basic.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/modules/game_bot/panels/basic.lua -------------------------------------------------------------------------------- /modules/game_bot/panels/healing.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/modules/game_bot/panels/healing.lua -------------------------------------------------------------------------------- /modules/game_bot/panels/looting.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/modules/game_bot/panels/looting.lua -------------------------------------------------------------------------------- /modules/game_bot/panels/tools.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/modules/game_bot/panels/tools.lua -------------------------------------------------------------------------------- /modules/game_bot/panels/war.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/modules/game_bot/panels/war.lua -------------------------------------------------------------------------------- /modules/game_bot/panels/waypoints.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/modules/game_bot/panels/waypoints.lua -------------------------------------------------------------------------------- /modules/game_bot/scripts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/modules/game_bot/scripts.png -------------------------------------------------------------------------------- /modules/game_bot/ui/basic.otui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/modules/game_bot/ui/basic.otui -------------------------------------------------------------------------------- /modules/game_bot/ui/config.otui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/modules/game_bot/ui/config.otui -------------------------------------------------------------------------------- /modules/game_bot/ui/container.otui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/modules/game_bot/ui/container.otui -------------------------------------------------------------------------------- /modules/game_bot/ui/icons.otui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/modules/game_bot/ui/icons.otui -------------------------------------------------------------------------------- /modules/game_bot/ui/panels.otui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/modules/game_bot/ui/panels.otui -------------------------------------------------------------------------------- /modules/game_bugreport/bugreport.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/modules/game_bugreport/bugreport.lua -------------------------------------------------------------------------------- /modules/game_bugreport/bugreport.otui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/modules/game_bugreport/bugreport.otui -------------------------------------------------------------------------------- /modules/game_buttons/buttons.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/modules/game_buttons/buttons.lua -------------------------------------------------------------------------------- /modules/game_buttons/buttons.otmod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/modules/game_buttons/buttons.otmod -------------------------------------------------------------------------------- /modules/game_buttons/buttons.otui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/modules/game_buttons/buttons.otui -------------------------------------------------------------------------------- /modules/game_console/console.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/modules/game_console/console.lua -------------------------------------------------------------------------------- /modules/game_console/console.otmod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/modules/game_console/console.otmod -------------------------------------------------------------------------------- /modules/game_console/console.otui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/modules/game_console/console.otui -------------------------------------------------------------------------------- /modules/game_cooldown/cooldown.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/modules/game_cooldown/cooldown.lua -------------------------------------------------------------------------------- /modules/game_cooldown/cooldown.otmod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/modules/game_cooldown/cooldown.otmod -------------------------------------------------------------------------------- /modules/game_cooldown/cooldown.otui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/modules/game_cooldown/cooldown.otui -------------------------------------------------------------------------------- /modules/game_features/features.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/modules/game_features/features.lua -------------------------------------------------------------------------------- /modules/game_features/features.otmod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/modules/game_features/features.otmod -------------------------------------------------------------------------------- /modules/game_imbuing/imbuing.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/modules/game_imbuing/imbuing.lua -------------------------------------------------------------------------------- /modules/game_imbuing/imbuing.otmod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/modules/game_imbuing/imbuing.otmod -------------------------------------------------------------------------------- /modules/game_imbuing/imbuing.otui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/modules/game_imbuing/imbuing.otui -------------------------------------------------------------------------------- /modules/game_inventory/inventory.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/modules/game_inventory/inventory.lua -------------------------------------------------------------------------------- /modules/game_inventory/inventory.otui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/modules/game_inventory/inventory.otui -------------------------------------------------------------------------------- /modules/game_market/market.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/modules/game_market/market.lua -------------------------------------------------------------------------------- /modules/game_market/market.otmod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/modules/game_market/market.otmod -------------------------------------------------------------------------------- /modules/game_market/market.otui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/modules/game_market/market.otui -------------------------------------------------------------------------------- /modules/game_market/marketoffer.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/modules/game_market/marketoffer.lua -------------------------------------------------------------------------------- /modules/game_market/ui/myoffers.otui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/modules/game_market/ui/myoffers.otui -------------------------------------------------------------------------------- /modules/game_minimap/flagwindow.otui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/modules/game_minimap/flagwindow.otui -------------------------------------------------------------------------------- /modules/game_minimap/minimap.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/modules/game_minimap/minimap.lua -------------------------------------------------------------------------------- /modules/game_minimap/minimap.otmod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/modules/game_minimap/minimap.otmod -------------------------------------------------------------------------------- /modules/game_minimap/minimap.otui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/modules/game_minimap/minimap.otui -------------------------------------------------------------------------------- /modules/game_npctrade/npctrade.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/modules/game_npctrade/npctrade.lua -------------------------------------------------------------------------------- /modules/game_npctrade/npctrade.otmod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/modules/game_npctrade/npctrade.otmod -------------------------------------------------------------------------------- /modules/game_npctrade/npctrade.otui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/modules/game_npctrade/npctrade.otui -------------------------------------------------------------------------------- /modules/game_outfit/outfit.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/modules/game_outfit/outfit.lua -------------------------------------------------------------------------------- /modules/game_outfit/outfit.otmod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/modules/game_outfit/outfit.otmod -------------------------------------------------------------------------------- /modules/game_outfit/outfitwindow.otui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/modules/game_outfit/outfitwindow.otui -------------------------------------------------------------------------------- /modules/game_prey/prey.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/modules/game_prey/prey.lua -------------------------------------------------------------------------------- /modules/game_prey/prey.otmod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/modules/game_prey/prey.otmod -------------------------------------------------------------------------------- /modules/game_prey/prey.otui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/modules/game_prey/prey.otui -------------------------------------------------------------------------------- /modules/game_protocol/protocol.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/modules/game_protocol/protocol.lua -------------------------------------------------------------------------------- /modules/game_protocol/protocol.otmod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/modules/game_protocol/protocol.otmod -------------------------------------------------------------------------------- /modules/game_questlog/questlog.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/modules/game_questlog/questlog.lua -------------------------------------------------------------------------------- /modules/game_questlog/questlog.otmod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/modules/game_questlog/questlog.otmod -------------------------------------------------------------------------------- /modules/game_shaders/shaders.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/modules/game_shaders/shaders.lua -------------------------------------------------------------------------------- /modules/game_shaders/shaders.otmod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/modules/game_shaders/shaders.otmod -------------------------------------------------------------------------------- /modules/game_shop/shop.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/modules/game_shop/shop.lua -------------------------------------------------------------------------------- /modules/game_shop/shop.otmod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/modules/game_shop/shop.otmod -------------------------------------------------------------------------------- /modules/game_shop/shop.otui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/modules/game_shop/shop.otui -------------------------------------------------------------------------------- /modules/game_shop/transfer.otui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/modules/game_shop/transfer.otui -------------------------------------------------------------------------------- /modules/game_skills/skills.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/modules/game_skills/skills.lua -------------------------------------------------------------------------------- /modules/game_skills/skills.otmod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/modules/game_skills/skills.otmod -------------------------------------------------------------------------------- /modules/game_skills/skills.otui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/modules/game_skills/skills.otui -------------------------------------------------------------------------------- /modules/game_spelllist/spelllist.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/modules/game_spelllist/spelllist.lua -------------------------------------------------------------------------------- /modules/game_spelllist/spelllist.otui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/modules/game_spelllist/spelllist.otui -------------------------------------------------------------------------------- /modules/game_stats/stats.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/modules/game_stats/stats.lua -------------------------------------------------------------------------------- /modules/game_stats/stats.otmod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/modules/game_stats/stats.otmod -------------------------------------------------------------------------------- /modules/game_stats/stats.otui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/modules/game_stats/stats.otui -------------------------------------------------------------------------------- /modules/game_things/things.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/modules/game_things/things.lua -------------------------------------------------------------------------------- /modules/game_things/things.otmod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/modules/game_things/things.otmod -------------------------------------------------------------------------------- /modules/game_topbar/topbar.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/modules/game_topbar/topbar.lua -------------------------------------------------------------------------------- /modules/game_topbar/topbar.otmod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/modules/game_topbar/topbar.otmod -------------------------------------------------------------------------------- /modules/game_topbar/topbar.otui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/modules/game_topbar/topbar.otui -------------------------------------------------------------------------------- /modules/game_viplist/addvip.otui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/modules/game_viplist/addvip.otui -------------------------------------------------------------------------------- /modules/game_viplist/editvip.otui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/modules/game_viplist/editvip.otui -------------------------------------------------------------------------------- /modules/game_viplist/viplist.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/modules/game_viplist/viplist.lua -------------------------------------------------------------------------------- /modules/game_viplist/viplist.otmod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/modules/game_viplist/viplist.otmod -------------------------------------------------------------------------------- /modules/game_viplist/viplist.otui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/modules/game_viplist/viplist.otui -------------------------------------------------------------------------------- /modules/game_walking/walking.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/modules/game_walking/walking.lua -------------------------------------------------------------------------------- /modules/game_walking/walking.otmod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/modules/game_walking/walking.otmod -------------------------------------------------------------------------------- /modules/gamelib/const.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/modules/gamelib/const.lua -------------------------------------------------------------------------------- /modules/gamelib/creature.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/modules/gamelib/creature.lua -------------------------------------------------------------------------------- /modules/gamelib/game.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/modules/gamelib/game.lua -------------------------------------------------------------------------------- /modules/gamelib/gamelib.otmod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/modules/gamelib/gamelib.otmod -------------------------------------------------------------------------------- /modules/gamelib/market.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/modules/gamelib/market.lua -------------------------------------------------------------------------------- /modules/gamelib/player.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/modules/gamelib/player.lua -------------------------------------------------------------------------------- /modules/gamelib/position.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/modules/gamelib/position.lua -------------------------------------------------------------------------------- /modules/gamelib/protocol.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/modules/gamelib/protocol.lua -------------------------------------------------------------------------------- /modules/gamelib/protocolgame.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/modules/gamelib/protocolgame.lua -------------------------------------------------------------------------------- /modules/gamelib/protocollogin.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/modules/gamelib/protocollogin.lua -------------------------------------------------------------------------------- /modules/gamelib/spells.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/modules/gamelib/spells.lua -------------------------------------------------------------------------------- /modules/gamelib/textmessages.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/modules/gamelib/textmessages.lua -------------------------------------------------------------------------------- /modules/gamelib/thing.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/modules/gamelib/thing.lua -------------------------------------------------------------------------------- /modules/gamelib/ui/uiitem.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/modules/gamelib/ui/uiitem.lua -------------------------------------------------------------------------------- /modules/gamelib/ui/uiminimap.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/modules/gamelib/ui/uiminimap.lua -------------------------------------------------------------------------------- /modules/gamelib/util.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/modules/gamelib/util.lua -------------------------------------------------------------------------------- /modules/updater/updater.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/modules/updater/updater.lua -------------------------------------------------------------------------------- /modules/updater/updater.otmod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/modules/updater/updater.otmod -------------------------------------------------------------------------------- /modules/updater/updater.otui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/modules/updater/updater.otui -------------------------------------------------------------------------------- /src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/src/CMakeLists.txt -------------------------------------------------------------------------------- /src/android/android_native_app_glue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/src/android/android_native_app_glue.h -------------------------------------------------------------------------------- /src/android/dependencies.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/src/android/dependencies.cpp -------------------------------------------------------------------------------- /src/android/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/src/android/pch.h -------------------------------------------------------------------------------- /src/client/animatedtext.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/src/client/animatedtext.cpp -------------------------------------------------------------------------------- /src/client/animatedtext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/src/client/animatedtext.h -------------------------------------------------------------------------------- /src/client/animator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/src/client/animator.cpp -------------------------------------------------------------------------------- /src/client/animator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/src/client/animator.h -------------------------------------------------------------------------------- /src/client/client.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/src/client/client.cpp -------------------------------------------------------------------------------- /src/client/client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/src/client/client.h -------------------------------------------------------------------------------- /src/client/const.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/src/client/const.h -------------------------------------------------------------------------------- /src/client/container.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/src/client/container.cpp -------------------------------------------------------------------------------- /src/client/container.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/src/client/container.h -------------------------------------------------------------------------------- /src/client/creature.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/src/client/creature.cpp -------------------------------------------------------------------------------- /src/client/creature.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/src/client/creature.h -------------------------------------------------------------------------------- /src/client/creatures.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/src/client/creatures.cpp -------------------------------------------------------------------------------- /src/client/creatures.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/src/client/creatures.h -------------------------------------------------------------------------------- /src/client/declarations.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/src/client/declarations.h -------------------------------------------------------------------------------- /src/client/effect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/src/client/effect.cpp -------------------------------------------------------------------------------- /src/client/effect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/src/client/effect.h -------------------------------------------------------------------------------- /src/client/game.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/src/client/game.cpp -------------------------------------------------------------------------------- /src/client/game.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/src/client/game.h -------------------------------------------------------------------------------- /src/client/global.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/src/client/global.h -------------------------------------------------------------------------------- /src/client/healthbars.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/src/client/healthbars.cpp -------------------------------------------------------------------------------- /src/client/healthbars.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/src/client/healthbars.h -------------------------------------------------------------------------------- /src/client/houses.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/src/client/houses.cpp -------------------------------------------------------------------------------- /src/client/houses.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/src/client/houses.h -------------------------------------------------------------------------------- /src/client/item.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/src/client/item.cpp -------------------------------------------------------------------------------- /src/client/item.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/src/client/item.h -------------------------------------------------------------------------------- /src/client/itemtype.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/src/client/itemtype.cpp -------------------------------------------------------------------------------- /src/client/itemtype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/src/client/itemtype.h -------------------------------------------------------------------------------- /src/client/lightview.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/src/client/lightview.cpp -------------------------------------------------------------------------------- /src/client/lightview.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/src/client/lightview.h -------------------------------------------------------------------------------- /src/client/localplayer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/src/client/localplayer.cpp -------------------------------------------------------------------------------- /src/client/localplayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/src/client/localplayer.h -------------------------------------------------------------------------------- /src/client/luafunctions_client.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/src/client/luafunctions_client.cpp -------------------------------------------------------------------------------- /src/client/luavaluecasts_client.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/src/client/luavaluecasts_client.cpp -------------------------------------------------------------------------------- /src/client/luavaluecasts_client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/src/client/luavaluecasts_client.h -------------------------------------------------------------------------------- /src/client/map.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/src/client/map.cpp -------------------------------------------------------------------------------- /src/client/map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/src/client/map.h -------------------------------------------------------------------------------- /src/client/mapio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/src/client/mapio.cpp -------------------------------------------------------------------------------- /src/client/mapview.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/src/client/mapview.cpp -------------------------------------------------------------------------------- /src/client/mapview.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/src/client/mapview.h -------------------------------------------------------------------------------- /src/client/minimap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/src/client/minimap.cpp -------------------------------------------------------------------------------- /src/client/minimap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/src/client/minimap.h -------------------------------------------------------------------------------- /src/client/missile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/src/client/missile.cpp -------------------------------------------------------------------------------- /src/client/missile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/src/client/missile.h -------------------------------------------------------------------------------- /src/client/outfit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/src/client/outfit.cpp -------------------------------------------------------------------------------- /src/client/outfit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/src/client/outfit.h -------------------------------------------------------------------------------- /src/client/player.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/src/client/player.cpp -------------------------------------------------------------------------------- /src/client/player.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/src/client/player.h -------------------------------------------------------------------------------- /src/client/position.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/src/client/position.h -------------------------------------------------------------------------------- /src/client/protocolcodes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/src/client/protocolcodes.cpp -------------------------------------------------------------------------------- /src/client/protocolcodes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/src/client/protocolcodes.h -------------------------------------------------------------------------------- /src/client/protocolgame.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/src/client/protocolgame.cpp -------------------------------------------------------------------------------- /src/client/protocolgame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/src/client/protocolgame.h -------------------------------------------------------------------------------- /src/client/protocolgameparse.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/src/client/protocolgameparse.cpp -------------------------------------------------------------------------------- /src/client/protocolgamesend.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/src/client/protocolgamesend.cpp -------------------------------------------------------------------------------- /src/client/spritemanager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/src/client/spritemanager.cpp -------------------------------------------------------------------------------- /src/client/spritemanager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/src/client/spritemanager.h -------------------------------------------------------------------------------- /src/client/statictext.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/src/client/statictext.cpp -------------------------------------------------------------------------------- /src/client/statictext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/src/client/statictext.h -------------------------------------------------------------------------------- /src/client/thing.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/src/client/thing.cpp -------------------------------------------------------------------------------- /src/client/thing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/src/client/thing.h -------------------------------------------------------------------------------- /src/client/thingstype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/src/client/thingstype.h -------------------------------------------------------------------------------- /src/client/thingtype.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/src/client/thingtype.cpp -------------------------------------------------------------------------------- /src/client/thingtype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/src/client/thingtype.h -------------------------------------------------------------------------------- /src/client/thingtypemanager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/src/client/thingtypemanager.cpp -------------------------------------------------------------------------------- /src/client/thingtypemanager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/src/client/thingtypemanager.h -------------------------------------------------------------------------------- /src/client/tile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/src/client/tile.cpp -------------------------------------------------------------------------------- /src/client/tile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/src/client/tile.h -------------------------------------------------------------------------------- /src/client/towns.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/src/client/towns.cpp -------------------------------------------------------------------------------- /src/client/towns.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/src/client/towns.h -------------------------------------------------------------------------------- /src/client/uicreature.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/src/client/uicreature.cpp -------------------------------------------------------------------------------- /src/client/uicreature.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/src/client/uicreature.h -------------------------------------------------------------------------------- /src/client/uigraph.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/src/client/uigraph.cpp -------------------------------------------------------------------------------- /src/client/uigraph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/src/client/uigraph.h -------------------------------------------------------------------------------- /src/client/uiitem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/src/client/uiitem.cpp -------------------------------------------------------------------------------- /src/client/uiitem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/src/client/uiitem.h -------------------------------------------------------------------------------- /src/client/uimap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/src/client/uimap.cpp -------------------------------------------------------------------------------- /src/client/uimap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/src/client/uimap.h -------------------------------------------------------------------------------- /src/client/uimapanchorlayout.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/src/client/uimapanchorlayout.cpp -------------------------------------------------------------------------------- /src/client/uimapanchorlayout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/src/client/uimapanchorlayout.h -------------------------------------------------------------------------------- /src/client/uiminimap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/src/client/uiminimap.cpp -------------------------------------------------------------------------------- /src/client/uiminimap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/src/client/uiminimap.h -------------------------------------------------------------------------------- /src/client/uiprogressrect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/src/client/uiprogressrect.cpp -------------------------------------------------------------------------------- /src/client/uiprogressrect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/src/client/uiprogressrect.h -------------------------------------------------------------------------------- /src/client/uisprite.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/src/client/uisprite.cpp -------------------------------------------------------------------------------- /src/client/uisprite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/src/client/uisprite.h -------------------------------------------------------------------------------- /src/client/walkmatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/src/client/walkmatrix.h -------------------------------------------------------------------------------- /src/framework/const.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/src/framework/const.h -------------------------------------------------------------------------------- /src/framework/core/adaptiverenderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/src/framework/core/adaptiverenderer.h -------------------------------------------------------------------------------- /src/framework/core/application.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/src/framework/core/application.cpp -------------------------------------------------------------------------------- /src/framework/core/application.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/src/framework/core/application.h -------------------------------------------------------------------------------- /src/framework/core/asyncdispatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/src/framework/core/asyncdispatcher.h -------------------------------------------------------------------------------- /src/framework/core/binarytree.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/src/framework/core/binarytree.cpp -------------------------------------------------------------------------------- /src/framework/core/binarytree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/src/framework/core/binarytree.h -------------------------------------------------------------------------------- /src/framework/core/clock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/src/framework/core/clock.cpp -------------------------------------------------------------------------------- /src/framework/core/clock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/src/framework/core/clock.h -------------------------------------------------------------------------------- /src/framework/core/config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/src/framework/core/config.cpp -------------------------------------------------------------------------------- /src/framework/core/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/src/framework/core/config.h -------------------------------------------------------------------------------- /src/framework/core/configmanager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/src/framework/core/configmanager.cpp -------------------------------------------------------------------------------- /src/framework/core/configmanager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/src/framework/core/configmanager.h -------------------------------------------------------------------------------- /src/framework/core/declarations.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/src/framework/core/declarations.h -------------------------------------------------------------------------------- /src/framework/core/event.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/src/framework/core/event.cpp -------------------------------------------------------------------------------- /src/framework/core/event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/src/framework/core/event.h -------------------------------------------------------------------------------- /src/framework/core/eventdispatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/src/framework/core/eventdispatcher.h -------------------------------------------------------------------------------- /src/framework/core/filestream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/src/framework/core/filestream.cpp -------------------------------------------------------------------------------- /src/framework/core/filestream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/src/framework/core/filestream.h -------------------------------------------------------------------------------- /src/framework/core/inputevent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/src/framework/core/inputevent.h -------------------------------------------------------------------------------- /src/framework/core/logger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/src/framework/core/logger.cpp -------------------------------------------------------------------------------- /src/framework/core/logger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/src/framework/core/logger.h -------------------------------------------------------------------------------- /src/framework/core/module.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/src/framework/core/module.cpp -------------------------------------------------------------------------------- /src/framework/core/module.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/src/framework/core/module.h -------------------------------------------------------------------------------- /src/framework/core/modulemanager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/src/framework/core/modulemanager.cpp -------------------------------------------------------------------------------- /src/framework/core/modulemanager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/src/framework/core/modulemanager.h -------------------------------------------------------------------------------- /src/framework/core/resourcemanager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/src/framework/core/resourcemanager.h -------------------------------------------------------------------------------- /src/framework/core/scheduledevent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/src/framework/core/scheduledevent.cpp -------------------------------------------------------------------------------- /src/framework/core/scheduledevent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/src/framework/core/scheduledevent.h -------------------------------------------------------------------------------- /src/framework/core/timer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/src/framework/core/timer.cpp -------------------------------------------------------------------------------- /src/framework/core/timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/src/framework/core/timer.h -------------------------------------------------------------------------------- /src/framework/global.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/src/framework/global.h -------------------------------------------------------------------------------- /src/framework/graphics/apngloader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/src/framework/graphics/apngloader.cpp -------------------------------------------------------------------------------- /src/framework/graphics/apngloader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/src/framework/graphics/apngloader.h -------------------------------------------------------------------------------- /src/framework/graphics/atlas.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/src/framework/graphics/atlas.cpp -------------------------------------------------------------------------------- /src/framework/graphics/atlas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/src/framework/graphics/atlas.h -------------------------------------------------------------------------------- /src/framework/graphics/bitmapfont.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/src/framework/graphics/bitmapfont.cpp -------------------------------------------------------------------------------- /src/framework/graphics/bitmapfont.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/src/framework/graphics/bitmapfont.h -------------------------------------------------------------------------------- /src/framework/graphics/cachedtext.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/src/framework/graphics/cachedtext.cpp -------------------------------------------------------------------------------- /src/framework/graphics/cachedtext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/src/framework/graphics/cachedtext.h -------------------------------------------------------------------------------- /src/framework/graphics/colorarray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/src/framework/graphics/colorarray.h -------------------------------------------------------------------------------- /src/framework/graphics/coordsbuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/src/framework/graphics/coordsbuffer.h -------------------------------------------------------------------------------- /src/framework/graphics/declarations.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/src/framework/graphics/declarations.h -------------------------------------------------------------------------------- /src/framework/graphics/deptharray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/src/framework/graphics/deptharray.h -------------------------------------------------------------------------------- /src/framework/graphics/drawcache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/src/framework/graphics/drawcache.cpp -------------------------------------------------------------------------------- /src/framework/graphics/drawcache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/src/framework/graphics/drawcache.h -------------------------------------------------------------------------------- /src/framework/graphics/drawqueue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/src/framework/graphics/drawqueue.cpp -------------------------------------------------------------------------------- /src/framework/graphics/drawqueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/src/framework/graphics/drawqueue.h -------------------------------------------------------------------------------- /src/framework/graphics/fontmanager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/src/framework/graphics/fontmanager.h -------------------------------------------------------------------------------- /src/framework/graphics/framebuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/src/framework/graphics/framebuffer.h -------------------------------------------------------------------------------- /src/framework/graphics/glutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/src/framework/graphics/glutil.h -------------------------------------------------------------------------------- /src/framework/graphics/graph.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/src/framework/graphics/graph.cpp -------------------------------------------------------------------------------- /src/framework/graphics/graph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/src/framework/graphics/graph.h -------------------------------------------------------------------------------- /src/framework/graphics/graphics.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/src/framework/graphics/graphics.cpp -------------------------------------------------------------------------------- /src/framework/graphics/graphics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/src/framework/graphics/graphics.h -------------------------------------------------------------------------------- /src/framework/graphics/image.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/src/framework/graphics/image.cpp -------------------------------------------------------------------------------- /src/framework/graphics/image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/src/framework/graphics/image.h -------------------------------------------------------------------------------- /src/framework/graphics/painter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/src/framework/graphics/painter.cpp -------------------------------------------------------------------------------- /src/framework/graphics/painter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/src/framework/graphics/painter.h -------------------------------------------------------------------------------- /src/framework/graphics/shader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/src/framework/graphics/shader.cpp -------------------------------------------------------------------------------- /src/framework/graphics/shader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/src/framework/graphics/shader.h -------------------------------------------------------------------------------- /src/framework/graphics/textrender.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/src/framework/graphics/textrender.cpp -------------------------------------------------------------------------------- /src/framework/graphics/textrender.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/src/framework/graphics/textrender.h -------------------------------------------------------------------------------- /src/framework/graphics/texture.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/src/framework/graphics/texture.cpp -------------------------------------------------------------------------------- /src/framework/graphics/texture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/src/framework/graphics/texture.h -------------------------------------------------------------------------------- /src/framework/graphics/vertexarray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/src/framework/graphics/vertexarray.h -------------------------------------------------------------------------------- /src/framework/http/http.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/src/framework/http/http.cpp -------------------------------------------------------------------------------- /src/framework/http/http.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/src/framework/http/http.h -------------------------------------------------------------------------------- /src/framework/input/mouse.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/src/framework/input/mouse.cpp -------------------------------------------------------------------------------- /src/framework/input/mouse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/src/framework/input/mouse.h -------------------------------------------------------------------------------- /src/framework/luaengine/lbitlib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/src/framework/luaengine/lbitlib.cpp -------------------------------------------------------------------------------- /src/framework/luaengine/lbitlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/src/framework/luaengine/lbitlib.h -------------------------------------------------------------------------------- /src/framework/luaengine/luabinder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/src/framework/luaengine/luabinder.h -------------------------------------------------------------------------------- /src/framework/luaengine/luaobject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/src/framework/luaengine/luaobject.cpp -------------------------------------------------------------------------------- /src/framework/luaengine/luaobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/src/framework/luaengine/luaobject.h -------------------------------------------------------------------------------- /src/framework/luafunctions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/src/framework/luafunctions.cpp -------------------------------------------------------------------------------- /src/framework/net/connection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/src/framework/net/connection.cpp -------------------------------------------------------------------------------- /src/framework/net/connection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/src/framework/net/connection.h -------------------------------------------------------------------------------- /src/framework/net/declarations.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/src/framework/net/declarations.h -------------------------------------------------------------------------------- /src/framework/net/inputmessage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/src/framework/net/inputmessage.cpp -------------------------------------------------------------------------------- /src/framework/net/inputmessage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/src/framework/net/inputmessage.h -------------------------------------------------------------------------------- /src/framework/net/outputmessage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/src/framework/net/outputmessage.cpp -------------------------------------------------------------------------------- /src/framework/net/outputmessage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/src/framework/net/outputmessage.h -------------------------------------------------------------------------------- /src/framework/net/packet_player.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/src/framework/net/packet_player.cpp -------------------------------------------------------------------------------- /src/framework/net/packet_player.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/src/framework/net/packet_player.h -------------------------------------------------------------------------------- /src/framework/net/packet_recorder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/src/framework/net/packet_recorder.cpp -------------------------------------------------------------------------------- /src/framework/net/packet_recorder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/src/framework/net/packet_recorder.h -------------------------------------------------------------------------------- /src/framework/net/protocol.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/src/framework/net/protocol.cpp -------------------------------------------------------------------------------- /src/framework/net/protocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/src/framework/net/protocol.h -------------------------------------------------------------------------------- /src/framework/net/server.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/src/framework/net/server.cpp -------------------------------------------------------------------------------- /src/framework/net/server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/src/framework/net/server.h -------------------------------------------------------------------------------- /src/framework/otml/declarations.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/src/framework/otml/declarations.h -------------------------------------------------------------------------------- /src/framework/otml/otml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/src/framework/otml/otml.h -------------------------------------------------------------------------------- /src/framework/otml/otmldocument.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/src/framework/otml/otmldocument.cpp -------------------------------------------------------------------------------- /src/framework/otml/otmldocument.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/src/framework/otml/otmldocument.h -------------------------------------------------------------------------------- /src/framework/otml/otmlemitter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/src/framework/otml/otmlemitter.cpp -------------------------------------------------------------------------------- /src/framework/otml/otmlemitter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/src/framework/otml/otmlemitter.h -------------------------------------------------------------------------------- /src/framework/otml/otmlexception.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/src/framework/otml/otmlexception.cpp -------------------------------------------------------------------------------- /src/framework/otml/otmlexception.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/src/framework/otml/otmlexception.h -------------------------------------------------------------------------------- /src/framework/otml/otmlnode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/src/framework/otml/otmlnode.cpp -------------------------------------------------------------------------------- /src/framework/otml/otmlnode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/src/framework/otml/otmlnode.h -------------------------------------------------------------------------------- /src/framework/otml/otmlparser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/src/framework/otml/otmlparser.cpp -------------------------------------------------------------------------------- /src/framework/otml/otmlparser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/src/framework/otml/otmlparser.h -------------------------------------------------------------------------------- /src/framework/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/src/framework/pch.h -------------------------------------------------------------------------------- /src/framework/platform/crashhandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/src/framework/platform/crashhandler.h -------------------------------------------------------------------------------- /src/framework/platform/platform.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/src/framework/platform/platform.cpp -------------------------------------------------------------------------------- /src/framework/platform/platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/src/framework/platform/platform.h -------------------------------------------------------------------------------- /src/framework/platform/sdlwindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/src/framework/platform/sdlwindow.cpp -------------------------------------------------------------------------------- /src/framework/platform/sdlwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/src/framework/platform/sdlwindow.h -------------------------------------------------------------------------------- /src/framework/platform/win32window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/src/framework/platform/win32window.h -------------------------------------------------------------------------------- /src/framework/platform/x11window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/src/framework/platform/x11window.cpp -------------------------------------------------------------------------------- /src/framework/platform/x11window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/src/framework/platform/x11window.h -------------------------------------------------------------------------------- /src/framework/proxy/proxy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/src/framework/proxy/proxy.cpp -------------------------------------------------------------------------------- /src/framework/proxy/proxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/src/framework/proxy/proxy.h -------------------------------------------------------------------------------- /src/framework/proxy/proxy_client.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/src/framework/proxy/proxy_client.cpp -------------------------------------------------------------------------------- /src/framework/proxy/proxy_client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/src/framework/proxy/proxy_client.h -------------------------------------------------------------------------------- /src/framework/sound/declarations.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/src/framework/sound/declarations.h -------------------------------------------------------------------------------- /src/framework/sound/oggsoundfile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/src/framework/sound/oggsoundfile.cpp -------------------------------------------------------------------------------- /src/framework/sound/oggsoundfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/src/framework/sound/oggsoundfile.h -------------------------------------------------------------------------------- /src/framework/sound/soundbuffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/src/framework/sound/soundbuffer.cpp -------------------------------------------------------------------------------- /src/framework/sound/soundbuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/src/framework/sound/soundbuffer.h -------------------------------------------------------------------------------- /src/framework/sound/soundchannel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/src/framework/sound/soundchannel.cpp -------------------------------------------------------------------------------- /src/framework/sound/soundchannel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/src/framework/sound/soundchannel.h -------------------------------------------------------------------------------- /src/framework/sound/soundfile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/src/framework/sound/soundfile.cpp -------------------------------------------------------------------------------- /src/framework/sound/soundfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/src/framework/sound/soundfile.h -------------------------------------------------------------------------------- /src/framework/sound/soundmanager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/src/framework/sound/soundmanager.cpp -------------------------------------------------------------------------------- /src/framework/sound/soundmanager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/src/framework/sound/soundmanager.h -------------------------------------------------------------------------------- /src/framework/sound/soundsource.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/src/framework/sound/soundsource.cpp -------------------------------------------------------------------------------- /src/framework/sound/soundsource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/src/framework/sound/soundsource.h -------------------------------------------------------------------------------- /src/framework/stdext/any.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/src/framework/stdext/any.h -------------------------------------------------------------------------------- /src/framework/stdext/boolean.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/src/framework/stdext/boolean.h -------------------------------------------------------------------------------- /src/framework/stdext/cast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/src/framework/stdext/cast.h -------------------------------------------------------------------------------- /src/framework/stdext/compiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/src/framework/stdext/compiler.h -------------------------------------------------------------------------------- /src/framework/stdext/demangle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/src/framework/stdext/demangle.cpp -------------------------------------------------------------------------------- /src/framework/stdext/demangle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/src/framework/stdext/demangle.h -------------------------------------------------------------------------------- /src/framework/stdext/dumper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/src/framework/stdext/dumper.h -------------------------------------------------------------------------------- /src/framework/stdext/exception.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/src/framework/stdext/exception.h -------------------------------------------------------------------------------- /src/framework/stdext/fastrand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/src/framework/stdext/fastrand.h -------------------------------------------------------------------------------- /src/framework/stdext/format.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/src/framework/stdext/format.h -------------------------------------------------------------------------------- /src/framework/stdext/math.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/src/framework/stdext/math.cpp -------------------------------------------------------------------------------- /src/framework/stdext/math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/src/framework/stdext/math.h -------------------------------------------------------------------------------- /src/framework/stdext/net.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/src/framework/stdext/net.cpp -------------------------------------------------------------------------------- /src/framework/stdext/net.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/src/framework/stdext/net.h -------------------------------------------------------------------------------- /src/framework/stdext/packed_any.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/src/framework/stdext/packed_any.h -------------------------------------------------------------------------------- /src/framework/stdext/packed_storage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/src/framework/stdext/packed_storage.h -------------------------------------------------------------------------------- /src/framework/stdext/shared_object.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/src/framework/stdext/shared_object.h -------------------------------------------------------------------------------- /src/framework/stdext/stdext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/src/framework/stdext/stdext.h -------------------------------------------------------------------------------- /src/framework/stdext/string.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/src/framework/stdext/string.cpp -------------------------------------------------------------------------------- /src/framework/stdext/string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/src/framework/stdext/string.h -------------------------------------------------------------------------------- /src/framework/stdext/thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/src/framework/stdext/thread.h -------------------------------------------------------------------------------- /src/framework/stdext/time.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/src/framework/stdext/time.cpp -------------------------------------------------------------------------------- /src/framework/stdext/time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/src/framework/stdext/time.h -------------------------------------------------------------------------------- /src/framework/stdext/traits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/src/framework/stdext/traits.h -------------------------------------------------------------------------------- /src/framework/stdext/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/src/framework/stdext/types.h -------------------------------------------------------------------------------- /src/framework/stdext/uri.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/src/framework/stdext/uri.cpp -------------------------------------------------------------------------------- /src/framework/stdext/uri.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/src/framework/stdext/uri.h -------------------------------------------------------------------------------- /src/framework/ui/declarations.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/src/framework/ui/declarations.h -------------------------------------------------------------------------------- /src/framework/ui/ui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/src/framework/ui/ui.h -------------------------------------------------------------------------------- /src/framework/ui/uianchorlayout.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/src/framework/ui/uianchorlayout.cpp -------------------------------------------------------------------------------- /src/framework/ui/uianchorlayout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/src/framework/ui/uianchorlayout.h -------------------------------------------------------------------------------- /src/framework/ui/uiboxlayout.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/src/framework/ui/uiboxlayout.cpp -------------------------------------------------------------------------------- /src/framework/ui/uiboxlayout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/src/framework/ui/uiboxlayout.h -------------------------------------------------------------------------------- /src/framework/ui/uigridlayout.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/src/framework/ui/uigridlayout.cpp -------------------------------------------------------------------------------- /src/framework/ui/uigridlayout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/src/framework/ui/uigridlayout.h -------------------------------------------------------------------------------- /src/framework/ui/uihorizontallayout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/src/framework/ui/uihorizontallayout.h -------------------------------------------------------------------------------- /src/framework/ui/uilayout.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/src/framework/ui/uilayout.cpp -------------------------------------------------------------------------------- /src/framework/ui/uilayout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/src/framework/ui/uilayout.h -------------------------------------------------------------------------------- /src/framework/ui/uimanager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/src/framework/ui/uimanager.cpp -------------------------------------------------------------------------------- /src/framework/ui/uimanager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/src/framework/ui/uimanager.h -------------------------------------------------------------------------------- /src/framework/ui/uitextedit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/src/framework/ui/uitextedit.cpp -------------------------------------------------------------------------------- /src/framework/ui/uitextedit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/src/framework/ui/uitextedit.h -------------------------------------------------------------------------------- /src/framework/ui/uitranslator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/src/framework/ui/uitranslator.cpp -------------------------------------------------------------------------------- /src/framework/ui/uitranslator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/src/framework/ui/uitranslator.h -------------------------------------------------------------------------------- /src/framework/ui/uiverticallayout.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/src/framework/ui/uiverticallayout.cpp -------------------------------------------------------------------------------- /src/framework/ui/uiverticallayout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/src/framework/ui/uiverticallayout.h -------------------------------------------------------------------------------- /src/framework/ui/uiwidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/src/framework/ui/uiwidget.cpp -------------------------------------------------------------------------------- /src/framework/ui/uiwidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/src/framework/ui/uiwidget.h -------------------------------------------------------------------------------- /src/framework/ui/uiwidgetimage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/src/framework/ui/uiwidgetimage.cpp -------------------------------------------------------------------------------- /src/framework/ui/uiwidgettext.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/src/framework/ui/uiwidgettext.cpp -------------------------------------------------------------------------------- /src/framework/util/color.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/src/framework/util/color.cpp -------------------------------------------------------------------------------- /src/framework/util/color.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/src/framework/util/color.h -------------------------------------------------------------------------------- /src/framework/util/crypt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/src/framework/util/crypt.cpp -------------------------------------------------------------------------------- /src/framework/util/crypt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/src/framework/util/crypt.h -------------------------------------------------------------------------------- /src/framework/util/databuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/src/framework/util/databuffer.h -------------------------------------------------------------------------------- /src/framework/util/extras.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/src/framework/util/extras.cpp -------------------------------------------------------------------------------- /src/framework/util/extras.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/src/framework/util/extras.h -------------------------------------------------------------------------------- /src/framework/util/framecounter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/src/framework/util/framecounter.h -------------------------------------------------------------------------------- /src/framework/util/matrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/src/framework/util/matrix.h -------------------------------------------------------------------------------- /src/framework/util/pngunpacker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/src/framework/util/pngunpacker.cpp -------------------------------------------------------------------------------- /src/framework/util/pngunpacker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/src/framework/util/pngunpacker.h -------------------------------------------------------------------------------- /src/framework/util/point.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/src/framework/util/point.h -------------------------------------------------------------------------------- /src/framework/util/qrcodegen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/src/framework/util/qrcodegen.c -------------------------------------------------------------------------------- /src/framework/util/qrcodegen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/src/framework/util/qrcodegen.h -------------------------------------------------------------------------------- /src/framework/util/rect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/src/framework/util/rect.h -------------------------------------------------------------------------------- /src/framework/util/size.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/src/framework/util/size.h -------------------------------------------------------------------------------- /src/framework/util/stats.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/src/framework/util/stats.cpp -------------------------------------------------------------------------------- /src/framework/util/stats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/src/framework/util/stats.h -------------------------------------------------------------------------------- /src/framework/xml/tinystr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/src/framework/xml/tinystr.cpp -------------------------------------------------------------------------------- /src/framework/xml/tinystr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/src/framework/xml/tinystr.h -------------------------------------------------------------------------------- /src/framework/xml/tinyxml.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/src/framework/xml/tinyxml.cpp -------------------------------------------------------------------------------- /src/framework/xml/tinyxml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/src/framework/xml/tinyxml.h -------------------------------------------------------------------------------- /src/framework/xml/tinyxmlerror.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/src/framework/xml/tinyxmlerror.cpp -------------------------------------------------------------------------------- /src/framework/xml/tinyxmlparser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/src/framework/xml/tinyxmlparser.cpp -------------------------------------------------------------------------------- /src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/src/main.cpp -------------------------------------------------------------------------------- /src/otcicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/src/otcicon.ico -------------------------------------------------------------------------------- /src/otcicon.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/src/otcicon.rc -------------------------------------------------------------------------------- /src/otclient.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/src/otclient.rc -------------------------------------------------------------------------------- /src/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/src/resource.h -------------------------------------------------------------------------------- /vc17/otclient.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/vc17/otclient.sln -------------------------------------------------------------------------------- /vc17/otclient.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/vc17/otclient.vcxproj -------------------------------------------------------------------------------- /vc17/settings.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/vc17/settings.props -------------------------------------------------------------------------------- /vcpkg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentibiabr/otcv8/HEAD/vcpkg.json --------------------------------------------------------------------------------