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

Does anyone know how I activate store via otclient mehah?

Mateus Robeerto

Legendary OT User
Joined
Jun 5, 2016
Messages
1,747
Solutions
92
Reaction score
1,262
Location
ლ(ಠ益ಠლ)
Does anyone know how I activate the store via otclient mehah?loja.png

I went to test v8's module_game and played mehah, but it didn't show up... I know it's not compatible ok. but is there a way to dwell on the store in it?

@Mehah
 
Last edited:
Solution
The problem was already solved. Just go to the modules/game_interface/interface.otmod folder and open it with Visual Studio Code or another similar editing program. I do not recommend using Notepad as errors sometimes occur. I suggest using Visual Studio Code or Sublime and adding the code at the end here.
LUA:
- game_shop
The problem was already solved. Just go to the modules/game_interface/interface.otmod folder and open it with Visual Studio Code or another similar editing program. I do not recommend using Notepad as errors sometimes occur. I suggest using Visual Studio Code or Sublime and adding the code at the end here.
LUA:
- game_shop
 
Solution
Good evening everyone, could someone help me integrate the game_store and/or game_shop, I'm trying, I did what's here and it doesn't work in mehah, only in otcv8

1752022010920.webp
 
Last edited:
otc redemption has store for cipsoft packets [10.98-15.00]

there is a custom version of shop by oskar

if you don't have the cipsoft packets, use custom by oskar

modules/game_shop:

- Server:
copy dir: serverSide in tfs/data/scripts:

1752023731482.webp
- in OTC

1752023793862.webp
LUA:
function toggleStore()
    if  g_game.getFeature(GameIngameStore) then -- [10.98-15.00]
        modules.game_store.toggle() -- cipsoft packets
    else
        modules.game_shop.toggle() -- custom
    end
end
to
LUA:
function toggleStore()
     modules.game_shop.toggle()
end
 
Last edited:
Back
Top