An alternative tibia client for otserv written in C++20 and Lua, made with a modular system that uses lua scripts for ingame interface and functionality, making otclient flexible and easy to customize
[x] Bug fix (non-breaking change which fixes an issue)
How Has This Been Tested
tfs 13.10
local spawn = GlobalEvent("spawnStartup")
function spawn.onStartup()
local m = Game.createMonster("Demon", {x = 95, y = 121, z = 7}, true, true)
m:setSpecialIcon(5,0)
m:setIcon(CREATURE_ICON_PIGEON,0)
m:setIcon(CREATURE_ICON_QUESTION,1)
end
spawn:register()
canary 13.40
local spawn = GlobalEvent("spawnStartup")
function spawn.onStartup()
local m = Game.createMonster("Demon",Position(32335, 32189, 7), true, true)
m:setIcon("magma-bubble",0,4)
m:setIcon("goshnars-hatred-damage",1,7)
end
spawn:register()
Test Configuration:
Server Version: 13.10
Client: this pr
Operating System: 11
Checklist
[x] My code follows the style guidelines of this project
[x] I have performed a self-review of my own code
[x] I checked the PR checks reports
[ ] I have commented my code, particularly in hard-to-understand areas
[ ] I have made corresponding changes to the documentation
[x] My changes generate no new warnings
[x] I have added tests that prove my fix is effective or that my feature works
Description
miss for here
Only fix packets , no feature
Behavior
Actual
Packet Error
Expected
Do this and that happens
Fixes
971
Type of change
How Has This Been Tested
tfs 13.10
canary 13.40
Test Configuration:
Checklist