Postado Março 23, 2017 8 anos Desculpe se estiver postando lugar errado. Vamos lá eu tenho um servidor que simplesmente não consigo fazer item nenhum /i ou /n e nem sumonar nenhum bixo no /m. já baixei varios servidores para arruma isso, ate agora o que mudou foi que /ghost não ia agora vai. segue meu talkaction <?xml version="1.0" encoding="UTF-8"?> <talkactions> <!-- <talkaction words="/ctffdgdfgdf" separator=" " script="ctf.lua" />--> <!-- Gods --> <talkaction words="/addskill" separator=" " script="add_skill.lua" /> <talkaction words="/r" separator=" " script="removething.lua" /> <talkaction words="/chameleon" separator=" " script="chameleon.lua" /> <talkaction words="/clean" script="clean.lua" /> <talkaction words="/closeserver" separator=" " script="closeserver.lua" /> <talkaction words="/save" separator=" " script="save.lua" /> <talkaction words="/i" separator=" " script="create_item.lua" /> <talkaction words="/ghost" script="ghost.lua" /> <talkaction words="/hide" script="hide.lua" /> <talkaction words="/mccheck" script="mccheck.lua" /> <talkaction words="/openserver" script="openserver.lua" /> <talkaction words="/reload" separator=" " script="reload.lua" /> + <talkaction words="/raid" separator=" " script="force_raid.lua" /> <talkaction words="/owner" separator=" " script="owner.lua" /> <talkaction words="/m" separator=" " script="place_monster.lua" /> <talkaction words="/s" separator=" " script="place_npc.lua" /> <talkaction words="/summon" separator=" " script="place_summon.lua" /> <!-- Achievements Commands --> <talkaction words="/addach" separator=" " script="achievements.lua" /> <talkaction words="/removeach" separator=" " script="achievements.lua" /> <!-- Gamemasters --> <talkaction words="/ban" separator=" " script="ban.lua" /> <talkaction words="/ipban" separator=" " script="ipban.lua" /> <talkaction words="/unban" separator=" " script="unban.lua" /> <talkaction words="/up" script="up.lua" /> <talkaction words="/down" script="down.lua" /> <talkaction words="/c" separator=" " script="teleport_creature_here.lua" /> <talkaction words="/goto" separator=" " script="teleport_to_creature.lua" /> <talkaction words="/gotopos" separator=" " script="teleport_to_pos.lua" /> <talkaction words="/t" script="teleport_home.lua" /> <talkaction words="/town" separator=" " script="teleport_to_town.lua" /> <talkaction words="/a" separator=" " script="teleport_ntiles.lua" /> <talkaction words="/pos" separator=" " script="position.lua" /> <talkaction words="/info" separator=" " script="info.lua" /> <talkaction words="/kick" separator=" " script="kick.lua" /> <talkaction words="/B" separator=" " script="broadcast.lua" /> <talkaction words="/looktype" separator=" " script="looktype.lua" /> <talkaction words="/mute" script="mute.lua" /> <!--Tutors --> <talkaction words="/mute" separator=" " script="mute.lua" /> <!-- Senior Tutors --> <talkaction words="/addtutor" separator=" " script="add_tutor.lua" /> <talkaction words="/removetutor" separator=" " script="remove_tutor.lua" /> <!-- War Area System --> <!-- <talkaction words="/citywar" script="wardarashia.lua"/> <talkaction words="/citywar" script="waredron.lua"/> <talkaction words="/citywar" script="warlb.lua"/>--> <!-- player talkactions --> <talkaction words="!buyhouse" script="buyhouse.lua" /> <talkaction words="!leavehouse" script="leavehouse.lua" /> <talkaction words="!sellhouse" separator=" " script="sellhouse.lua" /> <talkaction words="!uptime" script="uptime.lua" /> <talkaction words="!spectators" script="spectators.lua" /> <talkaction words="!cast" separator=" " script="start_cast.lua" /> <talkaction words="!stopcast" script="stop_cast.lua" /> <talkaction words="!outfit" script="guild_outfit.lua"/> <talkaction words="!frags" script="kills.lua" /> <talkaction words="!online" script="online.lua" /> <talkaction words="!guildpoints" separator=" " script="guildpoints.lua" /> <talkaction words="!serverinfo" script="serverinfo.lua" /> <talkaction words="/mute2" separator=" " script="mute2.lua" /> <talkaction words="/unmute2" separator=" " script="mute2.lua" /> <talkaction words="/mute" separator=" " script="mute.lua" /> <talkaction words="/unmute" separator=" " script="mute.lua" /> <talkaction words="!aol" script="aol.lua"/> <talkaction words="!bless" script="bless.lua"/> <!--<talkaction words="Allwords" script="antidivulguer.lua" /> --> <talkaction words="!exp" script="exp.lua" /> </talkactions>
Postado Março 23, 2017 8 anos você usa qual tfs? Você ta como god? (talvez pdoe estar como gm ou cm ai tem algumas limitações...) se for tfs 0.4 apaga a tag do /i e coloca essa <talkaction log="yes" words="/i" access="4" event="script" value="create_item.lua"/> usa esse script no create_item.lua Spoiler function onSay(cid, words, param, channel) if(param == '') then doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_BLUE, "Command param required.") return true end local t = string.explode(param, ",") local ret = RETURNVALUE_NOERROR local pos = getCreaturePosition(cid) local id = tonumber(t[1]) if(not id) then id = getItemIdByName(t[1], false) if(not id) then doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_BLUE, "Item wich such name does not exists.") return true end end local amount = 100 if(t[2]) then amount = t[2] end local item = doCreateItemEx(id, amount) if(t[3] and getBooleanFromString(t[3])) then if(t[4] and getBooleanFromString(t[4])) then pos = getCreatureLookPosition(cid) end ret = doTileAddItemEx(pos, item) else ret = doPlayerAddItemEx(cid, item, true) end if(ret ~= RETURNVALUE_NOERROR) then doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_BLUE, "Couldn't add item: " .. t[1]) return true end doDecayItem(item) if(not isPlayerGhost(cid)) then doSendMagicEffect(pos, CONST_ME_MAGIC_RED) end return true end Scriptszinhos: Spoiler [CREATURESCRIPT] Auto TP depois de matar boss [ACTION] Clean Area [TALKACTION] !FelizAnoNovo [ACTION + MOVEMENT] Cartas ao GOD [CREATURESCRIPT] Always Emblem System [ACTION] Anihi simples [TALKACTIONS] Urinar / fazer xixi Não abandone seu tópico, quando você tiver a dúvida resolvida sozinho tente ensinar aos outros como resolve-la (você pode não ser o único com o problema) e quando ela for resolvida por outra pessoa não se esqueça de marcar como melhor resposta e deixar o gostei.
Postado Março 26, 2017 8 anos Autor Poxa nao sei to usando Um VPn versão do otserv 10.98 tem muitos commdos que nao estao funcionando.
Postado Março 26, 2017 8 anos @pablobion o server dele usa distro 1.x na qual tags como acess="", event="" foram removidos, contudo o scripts em si também não funcionará... @anhottq1 você modificou seu char corretamente para administrador ? Mudou o type da conta na db, e o group do player na db, para o valor do god ?
Postado Março 26, 2017 8 anos @KotZletY pode ser a flag tbm n pode? GitHub: https://github.com/s3kk Conteúdo: [SERVER] Heromassa[GESIOR] Gesior 2012 modificado por Sekk[GESIOR] Shop Addons & Mounts - TFS 1.x[GESIOR] Outfitter para Characters e Rank[SISTEMA] Castle 24h[TALKACTION] Multi Element Wand[ACTION] Multi Elemental Arrow & Shield[PROGRAMAÇÃO] Compilar TFS 0.4 no Linux[PROGRAMAÇÃO] Compilando TFS 0.4 no MSVC(x64 e x32) [INFRAESTRUTURA] Configuração COMPLETA Google VM + Tibia 11.x
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.