Olá, sou novo portanto, não sei se dará certo.
Em talkactions add isto :
<talkaction words="!axe" event="script" value="axe.lua"/>
<talkaction words="!sword" event="script" value="sword.lua"/>
<talkaction words="!club" event="script" value="club.lua"/>
<talkaction words="!distance" event="script" value="distance.lua"/>
Pronto.
Agora dentro da pasta scripts em talkactions copie um arquivo qualquer .LUA e renomeie para axe e coleque isto
function onSay(cid, words, param, channel)
if getPlayerVocation == 4 then
doPlayerRemoveItem(cid,10556,1)
doPlayerAddSkillTry(cid, 3, 1)
doPlayerSendTextMessage(cid, 22, "Skill add com sucesso")
else
doPlayerSendTextMessage(cid, 22, "Você não é knight")
end
return TRUE
end
Novamente em talkactions copie um arquivo qualquer .LUA e renomeie para sword e coleque isto
function onSay(cid, words, param, channel)
if getPlayerVocation == 4 then
doPlayerRemoveItem(cid,10556,1)
doPlayerAddSkillTry(cid, 2, 1)
doPlayerSendTextMessage(cid, 22, "Skill add com sucesso")
else
doPlayerSendTextMessage(cid, 22, "Você não é knight")
end
return TRUE
end
Novamente em talkactions copie um arquivo qualquer .LUA e renomeie para club e coleque isto
function onSay(cid, words, param, channel)
if getPlayerVocation == 4 then
doPlayerRemoveItem(cid,10556,1)
doPlayerAddSkillTry(cid, 1, 1)
doPlayerSendTextMessage(cid, 22, "Skill add com sucesso")
else
doPlayerSendTextMessage(cid, 22, "Você não é knight")
end
return TRUE
end
Novamente em talkactions copie um arquivo qualquer .LUA e renomeie para distance e coleque isto
function onSay(cid, words, param, channel)
if getPlayerVocation == 3 then
doPlayerRemoveItem(cid,10556,1)
doPlayerAddSkillTry(cid, 4, 1)
doPlayerSendTextMessage(cid, 22, "Skill add com sucesso")
else
doPlayerSendTextMessage(cid, 22, "Você não é Paladin")
end
return TRUE
end
Não testei, portanto não sei se dará certo !!