Matematheus 12 Posted July 25, 2012 Share Posted July 25, 2012 (edited) Olá tibianos Estou postando um comando que a pessoa fala, por exemplo: /level player, 50 E o level do player muda junto com a mana e a life! #Primeiro va em seuot/data/talkactions/scripts Copie um arquivo da pasta e nome-ie de "level". #Agora abra a pasta, apague tudo e cole isso: function onSay(cid, words, param) if(param == "") then doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_BLUE, "Nome e nivel exigido.") return TRUE end local t = string.explode(param, ",") local player = getPlayerByNameWildcard(t[1]) local amount = tonumber(t[2]) if(not t[2]) then doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_BLUE, "Voce precisa adicionar um, entao o nivel para definir.") end if (doPlayerAddExp(player, getExperienceForLevel(amount)-(getPlayerExperience(player)))) == LUA_ERROR then doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_BLUE, "Error") end doCreatureAddMana(player, getCreatureMaxMana(player)-getCreatureMana(player)) doCreatureAddHealth(player, getCreatureMaxHealth(player)-getCreatureHealth(player)) return TRUE end Depois volte para a pasta talkactions e abra a pasta talkactions.xml Ache a sessao Gods e cole isso: <talkaction log="yes" words="/level" access="5" event="script" value="level.lua"/> Bom se voces gostaram de +Rep Comente se voce achou algum bug. Creditos: otfans.net Edited July 25, 2012 by FlaashMan Link to comment Share on other sites More sharing options...
SkyLigh 453 Posted July 25, 2012 Share Posted July 25, 2012 Ja existe scripts iguais no fórum e suponho que o script nao e seu ponha os créditos Link to comment Share on other sites More sharing options...
Matematheus 12 Posted July 25, 2012 Author Share Posted July 25, 2012 Ja existe scripts iguais no fórum e suponho que o script nao e seu ponha os créditos Eu peguei de um site em ingles irei por os creditos. Link to comment Share on other sites More sharing options...
Recommended Posts