Ir para conteúdo

[Encerrado] .!Serverinfo


Posts Recomendados

Estou Com Um Problema No Comando, !Serverinfo !

Ja Adicionei Talkactions e Serverinfo.lua ..

Só que Quando entro no Server e Executo o Comando , Ele vai no default e nada acontece !

e No Prompt da Erro data/talkactions/scripts/serverinfo.lua:15: in function <data/talkactions/scripts/serverinfo.lua:10>

beurk.gif

 

Ajudem !

+REP

Link para o comentário
Compartilhar em outros sites

local config = {

rateExperience = getConfigInfo('rateExperience'),

rateSkill = getConfigInfo('rateSkill'),

rateLoot = getConfigInfo('rateLoot'),

rateMagic = getConfigInfo('rateMagic'),

rateSpawn = getConfigInfo('rateSpawn'),

protectionLevel = getConfigInfo('protectionLevel'),

stages = getBooleanFromString(getConfigInfo('experienceStages'))

}

function onSay(cid, words, param, channel)

local exp = config.rateExperience

if(config.stages) then

exp = getExperienceStage(getPlayerLevel(cid), getVocationInfo(getPlayerVocation(cid)).experienceMultiplier)

end

doPlayerPopupFYI(cid, "Server Information:\n\nExperience rate: x" .. exp .. "\nSkills rate: x" .. config.rateSkill .. "\nLoot rate: x" .. config.rateLoot .. "\nMagic rate: x" .. config.rateMagic .. "\nSpawns rate: x" .. config.rateSpawn .. "\nProtection level: " .. config.protectionLevel)

return true

end

Link para o comentário
Compartilhar em outros sites

 

local config = {

rateExperience = getConfigInfo('rateExperience'),

rateSkill = getConfigInfo('rateSkill'),

rateLoot = getConfigInfo('rateLoot'),

rateMagic = getConfigInfo('rateMagic'),

rateSpawn = getConfigInfo('rateSpawn'),

protectionLevel = getConfigInfo('protectionLevel'),

stages = getBooleanFromString(getConfigInfo('experienceStages'))

}

function onSay(cid, words, param, channel)

local exp = config.rateExperience

if(config.stages) then

exp = getExperienceStage(getPlayerLevel(cid), getVocationInfo(getPlayerVocation(cid)).experienceMultiplier)

doPlayerPopupFYI(cid, "Server Information:\n\nExperience rate: x" .. exp .. "\nSkills rate: x" .. config.rateSkill .. "\nLoot rate: x" .. config.rateLoot .. "\nMagic rate: x" .. config.rateMagic .. "\nSpawns rate: x" .. config.rateSpawn .. "\nProtection level: " .. config.protectionLevel)

return true

end

Testa aê.

Link para o comentário
Compartilhar em outros sites

Deu algum erro no distro ? qual ?

 

 

function onSay(cid, words, param, channel)

local config = {

rateExperience = getConfigInfo('rateExperience'),

rateSkill = getConfigInfo('rateSkill'),

rateLoot = getConfigInfo('rateLoot'),

rateMagic = getConfigInfo('rateMagic'),

rateSpawn = getConfigInfo('rateSpawn'),

protectionLevel = getConfigInfo('protectionLevel'),

stages = getBooleanFromString(getConfigInfo('experienceStages'))

}

doPlayerPopupFYI(cid, config)

return true

end

Editado por KarlKalvin
Link para o comentário
Compartilhar em outros sites

function onSay(cid, words)

local msg = [[ IP: 127.0.0.1

 

RateLoot: 990x

RateExp: 100x

RateBless: 30x

 

]]

 

doPlayerPopupFYI(cid, msg)

return true

end

 

Use isso, configure manualmente... vou pedir a um amigo me ajudar com esse script do serveinfo.. ;/

Para editar basta editar os numeros ali acima, ou para add basta add nova tag..

Editado por KarlKalvin
Link para o comentário
Compartilhar em outros sites

http://pythera.com/index.php?subtopic=serverinfo

 

ai esta , de uma olhada !

 

function onSay(cid, words)

local msg = [[ IP: 127.0.0.1

 

RateLoot: 990x

RateExp: 100x

RateBless: 30x

 

]]

 

doPlayerPopupFYI(cid, msg)

return true

end

 

Use isso, configure manualmente... vou pedir a um amigo me ajudar com esse script do serveinfo.. ;/

Para editar basta editar os numeros ali acima, ou para add basta add nova tag..

OBRIGADO, NAO SOLUCIONOU MEU PROBLEMA +REP POR TENTAR AJUDA !
Link para o comentário
Compartilhar em outros sites

Cara para quebrar seu galho, usa isso...

 

function onSay(cid, words)

local msg = [[ Site: pythera.com

 

RateLoot: 6x

 

RateExp: 200x

 

RateBless: 80x

 

RateSpawm: 2x

 

Protection Level: 40

 

Premium: Free

 

UpTime: 24Horas

 

Bank System: Enable

 

Guild Halls: Disable

 

PZLock: 40 Seconds

]]

 

doPlayerPopupFYI(cid, msg)

return true

end

 

Vai fica os dados = ao Site.

Link para o comentário
Compartilhar em outros sites

Tenta usar assim

 

 

 

 

local config = {

rateExperience = getConfigInfo('rateExperience'),

rateSkill = getConfigInfo('rateSkill'),

rateLoot = getConfigInfo('rateLoot'),

rateMagic = getConfigInfo('rateMagic'),

rateSpawn = getConfigInfo('rateSpawn'),

protectionLevel = getConfigInfo('protectionLevel'),

stages = getBooleanFromString(getConfigInfo('experienceStages'))

}

function onSay(cid)

local exp = config.rateExperience

if(config.stages) then

exp = getExperienceStage(getPlayerLevel(cid), getVocationInfo(getPlayerVocation(cid)).experienceMultiplier)

end

doPlayerPopupFYI(cid, "Server Information:\n\nExperience rate: x" .. exp .. "\nSkills rate: x" .. config.rateSkill .. "\nLoot rate: x" .. config.rateLoot .. "\nMagic rate: x" .. config.rateMagic .. "\nSpawns rate: x" .. config.rateSpawn .. "\nProtection level: " .. config.protectionLevel)

return true

end

end

 

 

nao te garanto nada, to quase 1 ano sem mexe com script e.e

Link para o comentário
Compartilhar em outros sites

  • 2 months later...
  • 4 years later...
A questão neste tópico de suporte foi encerrada por falta de respostas. Este tópico está fechado e foi movido para Suporte - Tópicos Sem Resposta.

+ Caso a dúvida não tenha sido resolvida você poderá criar outro tópico solicitando ajuda.
* Lembre-se que é permitido dar UP no tópico a cada 24 horas para assim o destacar e manter movimentado.
Link para o comentário
Compartilhar em outros sites

Visitante
Este tópico está impedido de receber novos posts.
×
×
  • Criar Novo...