• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

Limit effect 1.5 nekiro

Michcol94

Member
Joined
Sep 2, 2021
Messages
105
Reaction score
18
Hi I would like to increase the limit of effects, in the engine I probably did everything and compiled, but the limit is still I think that you need to change the source code otclient. Please podopowie as to increase the limit of effects. I use tfs 1.5 nekiro downgrade 8.60 and client otclient mehah
 
what is podopowie xd

In mehah client
Mehah\modules\game_things/things.lua
Lua:
g_game.enableFeature(GameMagicEffectU16)

just below
function load(version)

1679409576127.png

test in server with
talkactions z.lua
Lua:
function onSay(player, words, param)

    param = tonumber(param)
    if(not param or param < 0 or param > 999) then
     

        return true
    end

    doSendMagicEffect(player:getPosition(), param)



    return false
end
XML:
<talkaction words="/z" separator=" " script="z.lua" />
/z 260
 
Back
Top