Ir para conteúdo
  • 0

Script Para Quest Valendo 5 Rep+ Por Favor Ajudem


matheusfera

Pergunta

Seguinte Galera Do Xtibia Eu Tenho Um Systema De Reputaçao Meio Diferente Vou Postar Para Voces Verem .......

E Com Esse Systema De Reputaçao Eu Queria Criar Uma Quest Que Ex:

 

O Cara Tem 1000 Pontos De Reputaçao E Ai Ele Entra Na Sala E Completa A Quest Que Precisava De 1000 Pontos De Reputaçao Automaticamente Os 1000 Pontos De Reputaçao Dele Voltara Para 0 Pontos De Reputaçao E Que Ele Possa Fazer A Quest Quantas Veses Ele Quiser Basta Ele Conseguir Novamente Os 1000 Pontos De Reputaçao.

 

Meu Systema De Reputaçao É Por Mods

 

<?xml version="1.0" encoding="UTF-8"?>

<mod name="Cyber's REPutation System" revision="5.0" author="Cybermaster" contact="otland.net" enabled="yes">

<config name="repSystem"><![CDATA[

rep = {

--[[ GLOBAL CONFIG ]]--

interval = 6 * 60 * 60, --This is [6] hours, in seconds. Time between rep.

lastTime = 5136, --Used to store the player's last Rep Timestamp

lastName = 5138, --Used to store the last repped's GUID

minLevel = 20, --From this level onwards player can use commands

pvpLevel = 30, --Minimum level for PVP Rep'ing

skull = {4,5}, --these skulled player won't receive rep when killing

getArticle = function(cid, uppercase)

return getPlayerSex(cid) == 0 and (uppercase and 'S' or 's') ..'he' or (uppercase and 'H' or 'h') ..'e'

end,

getPoints = function(cid)

local Info = db.getResult("SELECT `rep` FROM `players` WHERE `id` = " .. getPlayerGUID(cid) .. ";")

local rep = Info:getDataInt("rep")

Info:free()

return rep

end,

getPower = function(points)

local power = {{0,2},{300,3},{500,4},{1000,5},{1500,6},{2000,8},{5000,10}}

table.sort(power, function(a, b) return a[1] > b[1] end)

for _, t in ipairs(power) do

if(math.abs(points) >= t[1]) then

return t[2]

end

end

return power[1][2]

end,

getRank = function(points)

local ranks = {

{-5000, 'Power Abuser (*<<==========)'},

{-2000, 'Evil (=*<==========)'},

{-1500, 'Slayer (==*==========)'},

{-1000, 'Killer (===|=========)'},

{-500, 'Vilao (====|========)'},

{-300, 'Cretino (======|======)'},

{-299, 'Amador (======|======)'},

{300, 'Aprendiz (=======|=====)'},

{500, 'Popular (========|====)'},

{1000, 'Hailed (=========|===)'},

{1500, 'Acclaimed (==========+==)'},

{2000, 'Hero (==========>+=)'},

{5000, 'Legend Hero (==========>>+)'},

}

if points > -1 then

table.sort(ranks, function(a, b) return a[1] > b[1] end)

for _, t in ipairs(ranks) do if points >= t[1] then return t[2] end end

else

table.sort(ranks, function(a, b) return a[1] < b[1] end)

for _, t in ipairs(ranks) do if points <= t[1] then return t[2] end end

end

return ranks[1][2]

end,

set = function(cid, points)

db.executeQuery("UPDATE `players` SET `rep` = " .. points .. " WHERE `id` = " .. getPlayerGUID(cid) .. ";")

end,

add = function(cid, amount, color)

db.executeQuery("UPDATE `players` SET `rep` = `rep` + " .. amount .. " WHERE `id` = " .. getPlayerGUID(cid) .. ";")

doSendAnimatedText(getCreaturePosition(cid), '+REP', color)

doPlayerSendCancel(cid,'You have just been hailed and gained '.. amount ..' reputation points.')

end,

remove = function(cid, amount, color)

db.executeQuery("UPDATE `players` SET `rep` = `rep` - " .. amount .. " WHERE `id` = " .. getPlayerGUID(cid) .. ";")

doSendAnimatedText(getCreaturePosition(cid), '-REP', color)

doPlayerSendCancel(cid,'You have just been repudiated and lost '.. amount ..' reputation points.')

end,

getTime = function(timeDiff)

local dateFormat = {

{'h', timeDiff / 60 / 60 % 6},

{'m', timeDiff / 60 % 60},

}

local out = {}

for k, t in ipairs(dateFormat) do

local v = math.floor(t[2])

if(v > 0) then

table.insert(out, (k < #dateFormat and '' or ' and ') .. v .. '' .. t[1])

end

end

return table.concat(out)

end,

formatNum = function(str, sep)

str = tostring(str):reverse()

str = str:gsub("(%d)(%d)(%d)", '%1%2%3' .. (sep or " "), math.ceil(str:len() / 3)-1)

return str:reverse()

end,

}]]>

</config>

<event type="login" name="repRegister" event="script"><![CDATA[

function onLogin(cid)

registerCreatureEvent(cid, "repLook")

registerCreatureEvent(cid, "repKill")

registerCreatureEvent(cid, "repMonster")

return true

end]]>

</event>

<event type="look" name="repLook" event="script"><![CDATA[

domodlib('repSystem')

function onLook(cid, thing, position, lookDistance)

if isPlayer(thing.uid) then

doPlayerSetSpecialDescription(thing.uid,'.\n' .. (thing.uid == cid and 'You are' or rep.getArticle(thing.uid, true) .. ' is') .. ' ' .. rep.getRank(rep.getPoints(thing.uid)))

end

return true

end]]>

</event>

<event type="kill" name="repKill" event="script"><![CDATA[

domodlib('repSystem')

local t = {

[sKULL_WHITE] = 10,

[sKULL_RED] = 25,

[sKULL_BLACK] = 50,

[sKULL_NONE] = -10,

}

function onKill(cid, target, lastHit)

if isPlayer(cid) and isPlayer(target) then

--THE KILLER

if isInArray({0,3,4,5}, getCreatureSkullType(target)) then

if getPlayerLevel(target) >= rep.pvpLevel and not isInArray(rep.skull, getCreatureSkullType(cid)) then

doSendAnimatedText(getCreaturePosition(cid), getCreatureSkullType(target) == 0 and '-REP' or '+REP', math.random(1,255))

rep.set(cid, rep.getPoints(cid)+t[getCreatureSkullType(target)])

doPlayerSendTextMessage(cid, 20, 'You '.. (getCreatureSkullType(target) == 0 and 'lose' or 'gain') ..' reputation because you killed a player.')

end

end

--THE VICTIM

if rep.getPoints(target) == 0 then

return true

elseif rep.getPoints(target) > 0 then

rep.remove(target, 5, TEXTCOLOR_RED)

doPlayerSendTextMessage(target, 20, 'You lose reputation because you were killed by a player.')

else

rep.add(target, 5, TEXTCOLOR_LIGHTBLUE)

doPlayerSendTextMessage(target, 20, 'You lose reputation because you were killed by a player.')

end

end

return true

end]]>

</event>

<event type="kill" name="repMonster" event="script"><![CDATA[

domodlib('repSystem')

function onKill(cid, target, lastHit)

if not isPlayer(cid) or not isMonster(target) then

return true

end

local monsters = {

["Guardiao Zumbi"] = 50,

["{BOSS} Shadown Server"] = 100,

}

local name = getCreatureName(target)

local monster = monsters[string.lower(name)]

if monster then

rep.add(cid, monsters[string.lower(getCreatureName(target))], TEXTCOLOR_LIGHTBLUE)

end

return true

end]]>

</event>

<talkaction log= "yes" words="/hail;/fuck;/set" access="4" event="buffer"><![CDATA[

domodlib('repSystem')

if param == '' then

doPlayerSendCancel(cid,'You must write a player\'s name.')

return true

end

local t = string.explode(param, ',')

local tid = getPlayerByName(t[1])

if not isPlayer(tid) then

doPlayerSendCancel(cid, 'Player ' .. param .. ' not found or is not online.')

return true

end

if not t[2] and isPlayer(tid) then

if words == '/hail' then

rep.add(tid, 5, TEXTCOLOR_TEAL)

doPlayerSendCancel(cid, 'You added +5 rep points to ' .. getPlayerName(tid) .. ', and now ' .. rep.getArticle(tid, false) .. ' has ' .. rep.getPoints(tid) .. ' points.')

return true

end

if words == '/fuck' then

rep.remove(tid, 5, TEXTCOLOR_RED)

doPlayerSendCancel(cid, 'You removed -5 rep points to ' .. getPlayerName(tid) .. ', and now ' .. rep.getArticle(tid, false) .. ' has ' .. rep.getPoints(tid) .. ' points.')

return true

end

end

if t[2] and isInArray({'/set','/hail','fuck'}, words) then

if not tonumber(t[2]) then

doPlayerSendCancel(cid, 'Reputation amount is invalid.')

return true

end

end

if words == '/hail' then

rep.add(tid, t[2], TEXTCOLOR_TEAL)

doPlayerSendCancel(cid, 'You added ' .. t[2] .. ' rep points to ' .. getPlayerName(tid) .. ', and now ' .. rep.getArticle(tid, false) .. ' has ' .. rep.getPoints(tid) .. ' points.')

return true

end

if words == '/fuck' then

rep.remove(tid, t[2], TEXTCOLOR_RED)

doPlayerSendCancel(cid, 'You removed ' .. t[2] .. ' rep points to ' .. getPlayerName(tid) .. ', and now ' .. rep.getArticle(tid, false) .. ' has ' .. rep.getPoints(tid) .. ' points.')

return true

end

if t[2] and words == '/set' then

rep.set(tid, t[2])

doPlayerSendCancel(cid, 'You have set ' .. getPlayerName(tid) .. '\'s points to ' .. rep.getPoints(tid))

else

doPlayerSendCancel(cid, 'Absolute reputation amount not specified.')

return true

end

if not t[2] then

doPlayerSendCancel(cid, 'Absolute reputation amount not specified.')

return true

end

return true]]>

</talkaction>

<talkaction words="!ranks rep" event="buffer"><![CDATA[

domodlib('repSystem')

local players = 10

local str, value, name, result = "","","",0,nil

if isInArray({'hero','pos','1','+'}, param) then

str,value,name = "[#]-[Name]-[Points]-[Rank]\n--[Positive Rep Highscores]--\n","rep","name"

result = db.getResult("SELECT `name`, `rep` FROM `players` WHERE `rep` > -1 AND `id` > 6 AND `group_id` < 2 ORDER BY `rep` DESC, `name` ASC;")

elseif isInArray({'evil','neg','2','-'}, param) then

str,value,name = "[#]-[Name]-[Points]-[Rank]\n--[Negative Rep Highscores]--\n","rep","name"

result = db.getResult("SELECT `name`, `rep` FROM `players` WHERE `rep` < 0 AND `id` > 6 AND `group_id` < 2 ORDER BY `rep` ASC, `name` DESC;")

else

doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_BLUE, "Unknown Paramater: '" .. param .. "'")

return true

end

if (result:getID() ~= -1) then

local i = 1

while true do

str = str .. "\n " .. i .. ". " .. result:getDataString("name") .. " - [" .. result:getDataInt(value) .. "] - " .. rep.getRank(result:getDataInt(value)) .. ""

i = i+1

if not(result:next()) or i > players then

break

end

end

result:free()

end

if str ~= "" then

doPlayerPopupFYI(cid, str)

end

return true]]>

</talkaction>

<talkaction words="!rep" event="buffer"><![CDATA[

domodlib('repSystem')

local points, lastName, action = rep.getPoints(cid), getPlayerStorageValue(cid, rep.lastName), false

doPlayerSendTextMessage(cid, 19, 'You have ' .. rep.formatNum(points, "") .. ' reputation points. You are ' .. rep.getRank(points) .. '\nYour Rep Power is ' .. rep.getPower(points) ..'. ' .. (getPlayerStorageValue(cid, rep.lastName) ~= -1 and 'You last reputed ' .. getPlayerNameByGUID(lastName) .. '.' or ''))

if points > 4999 then --female rep+++ queen outfit

disguise, text, action = (getPlayerSex(cid) == 0 and {lookType = 331} or {lookType = 332}), (getPlayerSex(cid) == 0 and 'Queen!!' or 'King!!'), true

elseif points > 1999 then --rep++ cm outfit

disguise, text, action = {lookType = 73}, 'Hero!!', true

elseif points > 1499 then --rep+ hero outfit

disguise, text, action = {lookType = 63}, 'Acclaimed!!', true

elseif points < -4999 then --rep*** devil outfit

disguise, text, action = {lookType = 334}, 'P.O.!', true

elseif points < -1999 then --rep** pig outfit

disguise, text, action = {lookType = 306}, 'Evil!!', true

elseif points < -1499 then --rep* orc outfit

disguise, text, action = {lookType = 5}, "Slayer!!", true

end

if action and getCreatureOutfit(cid).lookType ~= disguise.lookType then

doSetCreatureOutfit(cid, disguise, -1)

doSendAnimatedText(getCreaturePosition(cid), text, math.random(1,255))

return true

end

return true]]>

</talkaction>

<talkaction words="!hail;!fuck" event="buffer"><![CDATA[

domodlib('repSystem')

if param == '' then

doPlayerSendCancel(cid, 'Command requires a player\'s name.')

return true

end

local target, oldTime = getPlayerByName(param), getPlayerStorageValue(cid, rep.lastTime)

if not isPlayer(target) then

doPlayerSendCancel(cid, 'That player does not exist or is offline.')

return true

end

if oldTime == -1 then

setPlayerStorageValue(cid, rep.lastTime, os.time())

end

if getPlayerLevel(cid) < rep.minLevel then

doPlayerSendCancel(cid,'You may repute from level ' .. rep.minLevel ..' onwards.')

return true

end

if getPlayerGUID(target) == getPlayerStorageValue(cid, rep.lastName) then

doPlayerSendCancel(cid, 'You may not repute that player two times in a row.')

return true

end

if (os.time() - oldTime) < rep.interval then

doPlayerSendCancel(cid, 'You may repute in ' .. rep.getTime(oldTime - os.time()) .. ' [' .. os.date("%b.%d %X", oldTime + rep.interval) ..']')

return true

end

if getPlayerIp(cid) == getPlayerIp(target) then

doPlayerSendCancel(cid, 'You may not repute neither yourself nor someone in your IP.')

return true

end

if words == '!hail' then

setPlayerStorageValue(cid, rep.lastName, getPlayerGUID(target))

rep.add(target, rep.getPower(cid), TEXTCOLOR_LIGHTBLUE)

setPlayerStorageValue(cid, rep.lastTime, os.time())

doPlayerSendCancel(cid, 'You have just reputed ' .. getCreatureName(target))

elseif words == '!fuck' then

setPlayerStorageValue(cid, rep.lastName, getPlayerGUID(target))

rep.remove(target, rep.getPower(cid), TEXTCOLOR_RED)

setPlayerStorageValue(cid, rep.lastTime, os.time())

doPlayerSendCancel(cid, 'You have just reputed ' .. getCreatureName(target))

end

return true]]>

</talkaction>

</mod>

 

 

Valendo 5 Rep+ Pra Quem Me Ajudar Por Favor Galera Ajudem Ai

Desde Ja Agradeço

 

Shadown Server

Link para o comentário
Compartilhar em outros sites

Posts Recomendados

  • 0

va em quest.xml adione essa tag

<action uniqueid="89774" event="script" value="repquest.lua" />

 

va em actions/script crie um arquivo lua com nome repquest e coloque isto dentro

function getPoints(cid)
local Info = db.getResult("SELECT `rep` FROM `players` WHERE `id` = " .. getPlayerGUID(cid) .. ";")
local rep = Info:getDataInt("rep")
Info:free()
return rep
end

function remove(cid, amount)
db.executeQuery("UPDATE `players` SET `rep` = `rep` - " .. amount .. " WHERE `id` = " .. getPlayerGUID(cid) .. ";")
doPlayerSendCancel(cid,'You lost '.. amount ..' reputation points.')
end


quantidade = 1000 --quantidade nessesaria para faser a quest(quantidade que sera retirada)

premios = { {2160,100} , {2161,1} } --premios que o player ganhara --edite da seguite forma {id do item,quandidade}

function onUse(cid, item, fromPosition, itemEx, toPosition)
if getPoints(cid) >= quantidade then
for i = 1, #premios do
doPlayerAddItem(cid, premios[i][1],premios[i][2])
end
remove(cid, quantidade)
else
doPlayerSendCancel(cid,'You need '.. amount ..' reputation points to do this quest.')
end
end

agora so abrir o remre e adicionar o unique id 89774 na quest e pronto.

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

  • 0

I MANO EU TESTEI E NAO FUNFO FIZ CERTIN QUINEM SE FALO MAIS NADA

SE O PLAYER NAO TEM REP NAO APARECE MSG FALANDO QUE ELE PRECISA

SE O PLAYER TEM REP NAO GANHA NADA

 

 

 

OBS: COLOQUEI UNIQUEID 60000 PQ O UNIQUEID VAI ATE 65000

 

OQ FAÇO ?

Link para o comentário
Compartilhar em outros sites

  • 0

ops erro na ora de digita

 

abra o aquivo do script

procure por "quatidade" (sem apas) e substitua por "quantidade" (sem apas tbm)

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

  • 0

CARA SEGUINTE MANO EU CRIEI UMA QUEST EM QUE QUEM TEM 1000 REP+ FAÇA E GANHEI ITEM FIZ COM ESSE SCRIPT Que Voce Me Passou

 

function getPoints(cid)
local Info = db.getResult("SELECT `rep` FROM `players` WHERE `id` = " .. getPlayerGUID(cid) .. ";")
local rep = Info:getDataInt("rep")
Info:free()
return rep
end
function remove(cid, amount)
db.executeQuery("UPDATE `players` SET `rep` = `rep` - " .. amount .. " WHERE `id` = " .. getPlayerGUID(cid) .. ";")
doPlayerSendCancel(cid,'Voce Perdeu '.. amount ..' Pontos De Reputaçao.')
end

quantidade = 1000 --quantidade nessesaria para faser a quest(quantidade que sera retirada)
premios = { {5097,1} } --premios que o player ganhara --edite da seguite forma {id do item,quandidade}
function onUse(cid, item, fromPosition, itemEx, toPosition)
if getPoints(cid) >= quantidade then
for i = 1, #premios do
doPlayerAddItem(cid, premios[i][1])
end
remove(cid, quantidade)
else
doPlayerSendCancel(cid,'Voce Preçisa De '.. amount ..' Pontos De Reputaçao Para Completar A Quest.')
end
end

 

AI QUERIA UMA MSM QUEST MAIS EM QUE O PLAYER QUE TENHA 1000 REP- POSSA FAZER

 

Ta Mt Foda Pf Esta Valendo 5 Rep+

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

  • 0

usa esse

function getPoints(cid)
local Info = db.getResult("SELECT `rep` FROM `players` WHERE `id` = " .. getPlayerGUID(cid) .. ";")
local rep = Info:getDataInt("rep")
Info:free()
return -rep
end

function remove(cid, amount)
db.executeQuery("UPDATE `players` SET `rep` = `rep` + " .. amount .. " WHERE `id` = " .. getPlayerGUID(cid) .. ";")
doPlayerSendCancel(cid,'You lost '.. amount ..' reputation points.')
end


quantidade = 1000 --quantidade nessesaria para faser a quest(quantidade que sera retirada)

premios = { {2160,100} } --premios que o player ganhara --edite da seguite forma {id do item,quandidade}

function onUse(cid, item, fromPosition, itemEx, toPosition)
if getPoints(cid) >= quantidade then
for i = 1, #premios do
doPlayerAddItem(cid, premios[i][1],premios[i][2])
end
remove(cid, quantidade)
else
doPlayerSendCancel(cid,'You need '.. amount ..' reputation points to do this quest.')
end
end


Link para o comentário
Compartilhar em outros sites

  • 0

CARA EU USEI O SCRIPT AI TIPO QUANDO O CARA TEM 1000 REP- ELE COMPLETA A QUEST DE REP- NORMALMENTE E NAO CONSEGUE COMPLETA A DO REP+ ATE AKI FICO OK DO JEITO QUE EU QUERO

 

MAIS AI SE ELE TEM 1000 REP+ ELE NAO CONSEGUE COMPLETA A QUEST DE REP+ E QUANDO SE CLICA NA QUEST PRA COMPLETA APARECE ESSE ERRO NO DISTRO

 

 

[10/06/2012 19:21:22] [Error - Action Interface]
[10/06/2012 19:21:22] data/actions/scripts/mangarepmais.lua:onUse
[10/06/2012 19:21:22] Description:
[10/06/2012 19:21:22] data/actions/scripts/mangarepmais.lua:21: attempt to concatenate global 'amount' (a nil value)
[10/06/2012 19:21:22] stack traceback:
[10/06/2012 19:21:22]  data/actions/scripts/mangarepmais.lua:21: in function <data/actions/scripts/mangarepmais.lua:14>

 

OQ FAZER ?

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

  • 0

INTAO MAIS TIPO CONFORME EU COLOCO OS 2 SCRIPT 1 AUTOMATICAMENTE PARA DE FUNCIONAR NAO SEI PQ

 

MAN SEGUINTE PRA FACILITAR TERIA COMO CRIA 1 SCRIPT QUE TANTO SE O PLAYER TIVER REP+ OU REP- ELE CONSEGUISSE COMPLETAR A QUEST E SE ELE TIVESSE 1000+ VOLTASSE PA 0 E SE TIVESSE 1000- VOLTASSE PA 0 TMB TEM COMO FAZER ISSO ?

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

  • 0

usa esse ele vai vou ta pra zero os rep e intrega os items,caso tenha mais de 1000 ou menos -1000

 

function getPoints(cid)
local Info = db.getResult("SELECT `rep` FROM `players` WHERE `id` = " .. getPlayerGUID(cid) .. ";")
local rep = Info:getDataInt("rep")
Info:free()
return rep
end

function reset(cid)
db.executeQuery("UPDATE `players` SET `rep` = 0 WHERE `id` = " .. getPlayerGUID(cid) .. ";")
doPlayerSendCancel(cid,'You lost '.. amount ..' reputation points.')
end


quantidade = 1000 --quantidade nessesaria para faser a quest(quantidade que sera retirada)

premios = { {2160,100} } --premios que o player ganhara --edite da seguite forma {id do item,quandidade}

function onUse(cid, item, fromPosition, itemEx, toPosition)
x = getPoints(cid)
if x >= quantidade or -(x) >= quantidade then
for i = 1, #premios do
doPlayerAddItem(cid, premios[i][1],premios[i][2])
end
reset(cid)
else
doPlayerSendCancel(cid,'You need '.. amount ..' reputation points to do this quest.')
end
end

Link para o comentário
Compartilhar em outros sites

  • 0

MAN A FICO CERTIN QUANDO O CARA TEM + OU - ELE COMPLETA FICO CERTINHO MAIS

TEVE UM PROBLEMINHA TIPO SE ELE TIVER 5000 DE PONTO E ELE COMPLETA ELE PERDE TD E NAO APENAS 1000 QUE SERIA OOQ A QUEST PEDE

 

Oq Devo Fazer ?

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

  • 0

ue se tinha faldo que era pra volta pra zero,n pra perde 1000 ¬¬

 

function getPoints(cid)
local Info = db.getResult("SELECT `rep` FROM `players` WHERE `id` = " .. getPlayerGUID(cid) .. ";")
local rep = Info:getDataInt("rep")
Info:free()
return rep
end

function reset(cid)
db.executeQuery("UPDATE `players` SET `rep` = `rep` - " .. amount .. " WHERE `id` = " .. getPlayerGUID(cid) .. ";")
doPlayerSendCancel(cid,'You lost '.. amount ..' reputation points.')
end


quantidade = 1000 --quantidade nessesaria para faser a quest(quantidade que sera retirada)

premios = { {2160,100} } --premios que o player ganhara --edite da seguite forma {id do item,quandidade}

function onUse(cid, item, fromPosition, itemEx, toPosition)
x = getPoints(cid)
if x >= quantidade then
for i = 1, #premios do
doPlayerAddItem(cid, premios[i][1],premios[i][2])
end
reset(cid, 1000)
elseif -(x) >= quantidade then
for i = 1, #premios do
doPlayerAddItem(cid, premios[i][1],premios[i][2])
end
reset(cid, -1000)
else
doPlayerSendCancel(cid,'You need '.. amount ..' reputation points to do this quest.')
end
end

Link para o comentário
Compartilhar em outros sites

  • 0

AI MANOLO SEGUINTE USEI ESSE SCRIPT QUE SE ME PASSO NAO TINHA FUNFADO CERTINHO MAIS DEI UMAS ARRUMADINHAS

 

function getPoints(cid)

local Info = db.getResult("SELECT `rep` FROM `players` WHERE `id` = " .. getPlayerGUID(cid) .. ";")

local rep = Info:getDataInt("rep")

Info:free()

return rep

end

function reset(cid)

db.executeQuery("UPDATE `players` SET `rep` = `rep` - " .. amount .. " WHERE `id` = " .. getPlayerGUID(cid) .. ";")

doPlayerSendCancel(cid,'You lost '.. amount ..' reputation points.')

end

quantidade = 1000 --quantidade nessesaria para faser a quest(quantidade que sera retirada)

premios = { {2160,100} } --premios que o player ganhara --edite da seguite forma {id do item,quandidade}

function onUse(cid, item, fromPosition, itemEx, toPosition)

x = getPoints(cid)

if x >= quantidade then

for i = 1, #premios do

doPlayerAddItem(cid, premios[1],premios[2])

end

reset(cid, 1000)

elseif -(x) >= quantidade then

for i = 1, #premios do

doPlayerAddItem(cid, premios[1],premios[2])

end

reset(cid, -1000)

else

doPlayerSendCancel(cid,'You need '.. amount ..' reputation points to do this quest.')

end

end

 

ONDE TA RESET SUBSTITUI PELA FUNÇAO DE REMOVE E AI FUNFO CERTINHO

VLW MSM MANO SE SALVO MY LIFE ^^ JA COMEÇEI A PAGAR OS REP+ JA PAGUEI 1 FALTA 4

 

OBS: Tem Como Voce Cria 1 Tile Onde So Player Que Tenha Qualquer Quantia De Rep+ Passe E Outro Tile Que Players Com Rep- Passe

 

Ai Inves De Dar 5 Rep+ Como Prometido Dou 7

 

Vlw Msm Mano Msm Se Nao Quiser Fazer O Tile Se Salvou Minha Vida ^^

 

Vlw

 

PRONTO MANOLO PAGUEI SEUS 5 REP+ TEM COMO AJUDAR NO TILE QUE EU PEDI NAO ? VAENDO +2 REP+

 

 

VLW

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

  • 0

va em moveevents.xml crie a tag

<movevent type="StepIn" actionid="12457;12457" event="script" value="reptile.lua"/>

 

va na pasta de script(do moveevents),crie um arquivo lua com nome reptile e coloque isso nele

function getPoints(cid)
local Info = db.getResult("SELECT `rep` FROM `players` WHERE `id` = " .. getPlayerGUID(cid) .. ";")
local rep = Info:getDataInt("rep")
Info:free()
return rep
end

quantidademais = 1000 --quantidade para passar no tile de rep+
quantidademenos = 1000 --quantidade para passar no tile de rep-

function onStepIn(cid, item, pos, fromPosition)
x = getPoints(cid)
if item.actionid  == 12457 then
if x < quantidemais then
 doPlayerSendCancel(cid,"Apenas jogadores com "..quantidademais.."  rep+ ou mais podem passar.")
 doTeleportThing(cid, pos)
 doSendMagicEffect(pos, 2)
end
elseif item.actionid  == 12458 then
if x > quantidemenos then
 doPlayerSendCancel(cid,"Apenas jogadores com "..quantidademenos.."  rep- ou mais podem passar.")
 doTeleportThing(cid, pos)
 doSendMagicEffect(pos, 2)
end
end
end

Link para o comentário
Compartilhar em outros sites

  • 0

AI MANO VLW MSM TU SEMPRE SALVANDO MINHA VIDA ^^ O SCRIPT FUNFO CERTIN

 

VOU TE DAR OS 2 REP+

 

POREM PRESTA MAIS ATENÇAO NA HORA DE ESCREVE MAN NOVAMENTE VC ERRO AO ESCREVER QUANTIDADE E NO COMEÇO NAO TAVA FUNFANO AI EU AXEI E CONCERTEI

 

REVEJA AI NO SCRIPT ESTA "QUANTIDE"

 

MAIS VLW MSM MANO SE SEMPRE SALVANDO MINHA VIDA ^^ TY

 

REP+

 

EDIT ~~~~~~~~~~~~

 

AI MANO TIPO CRIEI VARIAS QUEST DE REP

ENFIM CRIEI UMA QUEST QUE NECESITA DE 50K DE REP PRA CATAR O ITEM FUNFO CERTIN

 

POREM AS QUE PRECISA DE MENOS DE REP PRA SER COMPLETADAS

 

SO TEM COMO COMPLETA SE O PLAYER TIVER 50K DE REP

 

A QUEST RETIRA APENAS 1000 QUE É O CERTO MAIS NO CASO ELE TEM QUE TER 51K DE REP PRA PODER COMPLETAR A QUEST DE 1000 OQ ACONTECEU ?

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

×
×
  • Criar Novo...