Histórico de Curtidas
-
neighbourhood deu reputação a Vabrindox em Como eu coloco essa Door no meu ot?Qual tfs vc tá usando? Eu testei aqui e está 100% vc configurou as posições no script? E no remeres só troque o uniqueid que é a última opção e n actionid.
local pos_frente = {x=99, y=122, z=7} local pos_atras = {x=99, y=124, z=7} local lvMin = 50 local horizontal = true local vertical = false -
neighbourhood deu reputação a BetterWar ATS em [Actions] Novo gold--Buy Jeff local coins = { [2148] = { to = 2152, effect = 210 }, [2152] = { from = 2148, to = 2160, effect = 130 }, [2160] = { from = 2152, to = 9971, effect = 65 }, [2157] = { from = 2160, effect = 198 } } function onUse(cid, item, fromPosition, itemEx, toPosition) if(getPlayerFlagValue(cid, PLAYERFLAG_CANNOTPICKUPITEM)) then return false end local coin = coins[item.itemid] if(not coin) then return false end if(coin.to ~= nil and item.type == ITEMCOUNT_MAX) then doChangeTypeItem(item.uid, item.type - item.type) doPlayerAddItem(cid, coin.to, 1) doSendAnimatedText(fromPosition, "+ $$$", coins[coin.to].effect) elseif(coin.from ~= nil) then doChangeTypeItem(item.uid, item.type - 1) doPlayerAddItem(cid, coin.from, ITEMCOUNT_MAX) doSendAnimatedText(fromPosition, "- $$$", coins[coin.from].effect) end return true end Pra quem esta com problema neste script basta substituir por este...
fica em action/scripts/other/changegold, algo assim... Mas eh changegold.lua
-
neighbourhood recebeu reputação de Fire3712 em Otpokemon Equipe "MAPER"\õ/
-
neighbourhood recebeu reputação de Fire3712 em (Resolvido)[DÚVIDA] Como eu crio um mapa do zerofala pessoal td bem, então.... Eu vo abrir um otserv e quero algumas dicas pra mim criar um mapa própio, eu curto bastante mapa baiak.. se alguem poder me ajudar ficarei grato; e td de bom para todos....
-
neighbourhood recebeu reputação de Fire3712 em (Resolvido)[PEDIDO] System De !rank 854Isso já vem junto com o server
Va até a pasta talkactions
"data\talkactions" Depois abra o arquivo: talkactions.xml
e cole isso lá:
<talkaction words="!rank" script="ranks.lua"/> Depois crie um novo bloco de notas na area de trabalho
e renomeie para: ranks.lua
e cole/salve isso dentro do bloco de notas:
local ranks = { ['fist'] = {0}, ['club'] = {1}, ['sword'] = {2}, ['axe'] = {3}, ['distance'] = {4}, ['shield'] = {5}, ['fish'] = {6}, ['magic'] = {7}, ['level'] = {8}, } function onSay(cid, words, param) local msg = string.lower(param) if ranks[msg] ~= nil then str = getHighscoreString((ranks[msg][1])) else str = getHighscoreString((8)) end doPlayerPopupFYI(cid, str) return TRUE end depois jogue o bloco de notas que voce criou: ranks.lua
dentro dá pasta:
data\talkactions\scripts ESPERO TER AJUDADO