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

OTClient Use extended Opcode to get voca, oufit,... TFS 1.3

cuteduck23

New Member
Joined
Nov 16, 2021
Messages
3
Reaction score
2
GitHub
cuteduck23
Hi Otland community,
somebody can help me sending vocation, outfit, type of group(Game master, God) and storage using extended Opcode to OTclient.
If this is not possible, I would appreciate it if you could tell me. Or if possible using another method.
thanks eveybody .
 

Tfs
local response = {
group = player:getGroup():getId(),
outfit = player:getOufit(),
storage = player:getStorage(12345)
}
player:sendExtendedOpcode(14, json.encode(response))

OTC
print(json_data.outfit.lookType)
print(json_data.outfit.lookBody)
print(json_data.group)
print(json_data.storage)

 
Back
Top