Postado Dezembro 4, 2022 2 anos .Qual servidor ou website você utiliza como base? otx5 Qual o motivo deste tópico? queria colocar alguns comando de god da tfs 0.4 para 1.3 Está surgindo algum erro? Se sim coloque-o aqui. Citar nao da erro nenhum na distro Você tem o código disponível? Se tiver publique-o aqui: local cliport = TalkAction("/cliport") local ignore = createConditionObject(CONDITION_GAMEMASTER, -1, false, GAMEMASTER_IGNORE, CONDITIONID_DEFAULT) local teleport = createConditionObject(CONDITION_GAMEMASTER, -1, false, GAMEMASTER_TELEPORT, CONDITIONID_DEFAULT) local light = createConditionObject(CONDITION_LIGHT, -1, false, 0, CONDITIONID_DEFAULT) setConditionParam(light, CONDITION_PARAM_LIGHT_LEVEL, 255) setConditionParam(light, CONDITION_PARAM_LIGHT_COLOR, 215) function onSay(cid, words, param, channel) if(not checkExhausted(cid, 7384, 10)) then return true end local condition, type, subId, name = ignore, CONDITION_GAMEMASTER, GAMEMASTER_IGNORE, "private messages ignoring" if(words:sub(2, 2) == "c") then condition, subId, name = teleport, GAMEMASTER_TELEPORT, "map click teleport" elseif(words:sub(2, 2) == "l") then condition, type, subId, name = light, CONDITION_LIGHT, 0, "full light" end local action = "off" if(not getCreatureCondition(cid, type, subId, CONDITIONID_DEFAULT)) then doAddCondition(cid, condition) action = "on" else doRemoveCondition(cid, type, subId, CONDITIONID_DEFAULT) end doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_BLUE, "You have turned " .. action .. " " .. name .. ".") return true end cliport:separator(" ") cliport:register() Você tem alguma imagem que possa auxiliar no problema? Se sim, coloque-a aqui. fiz assim mas nao funciona o comando
Participe da conversa
Você pode postar agora e se cadastrar mais tarde. Se você tem uma conta, faça o login para postar com sua conta.