Ir para conteúdo
  • Cadastre-se

Posts Recomendados

quero um script que quando eu digito !removefrags ele REMOVE TODOS OS FRAGS, e deixando seu frag zerado, pronto para matar denovo. para versao 8.60

e para retirar os frags custaria uns 100k

Editado por Tiago6795 (veja o histórico de edições)
Link para o post
Compartilhar em outros sites

tenta ai ? nem tentei

 


removefrags.lua
function onSay(cid, words, param)

local quantMoney = 5000 -- quantidade de gps
local noRemove = {SKULL_YELLOW}
local playerSkull = getPlayerSkullType(cid)

if isInArray(noRemove, playerSkull) then
doPlayerSendCancel(cid, "You can't remove this type of skull.")
doSendMagicEffect(getPlayerPosition(cid), CONST_ME_POFF)
return true
elseif playerSkull == SKULL_NONE then
doPlayerSendCancel(cid, "You don't have skull.")
doSendMagicEffect(getPlayerPosition(cid), CONST_ME_POFF)
return true
elseif not doPlayerRemoveMoney(cid, quantMoney) then
doPlayerSendCancel(cid, "You do not have money.")
return true
db.executeQuery("UPDATE `killers` SET `unjustified` = 0 WHERE `id` IN (SELECT `kill_id` FROM `player_killers` WHERE `player_id` = " .. getPlayerGUID(cid) .. ")")
doPlayerSendTextMessage(cid, 27, "Your frags & your skull have been removed!")
doSendMagicEffect(getPlayerPosition(cid), CONST_ME_MAGIC_RED)
doSendAnimatedText(getPlayerPosition(cid), "POFF!", 180)
doCreatureSetSkullType(cid,0)
doPlayerSetSkullEnd(cid, 0, playerSkull)
end

return true
end


talkactions.xml


<talkaction words="!removefrags" event="script" value="removefrags.lua"/>

Editado por Luquinha (veja o histórico de edições)

Dp9Y7vq.png

Link para o post
Compartilhar em outros sites

tenta ai ? nem tentei

 

removefrags.lua

function onSay(cid, words, param, channel)
local config = {
price = 10000,
amount = 1
}
if getPlayerFrags(cid) < config.amount then
doPlayerSendCancel(cid,"você não tem frags suficientes para executar está ação.") return true
elseif not doPlayerRemoveMoney(cid, config.price) then
doPlayerSendCancel(cid,"você precisa ter "..config.price.." gps para remover seus frags.") return true
end
doPlayerRemoveFrag(cid, config.amount)
doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_BLUE,"Parabéns! Foram removidos "..config.amount.." frags.")
doSendMagicEffect(getPlayerPosition(cid), 26)
return true
end

talkactions.xml

<talkaction words="/removefrags;!removefrags" event="script" value="removefrags.lua"/>

 

 

irei testar , edit jaja !

 

@nao funcionou =\

Editado por Tiago6795 (veja o histórico de edições)
Link para o post
Compartilhar em outros sites

tenta ai ? nem tentei , OBS : é outro

 

removefrags.lua

function onSay(cid, words, param)

local quantMoney = 5000 -- quantidade de gps
local noRemove = {SKULL_YELLOW}
local playerSkull = getPlayerSkullType(cid)

if isInArray(noRemove, playerSkull) then
doPlayerSendCancel(cid, "You can't remove this type of skull.")
doSendMagicEffect(getPlayerPosition(cid), CONST_ME_POFF)
return true
elseif playerSkull == SKULL_NONE then
doPlayerSendCancel(cid, "You don't have skull.")
doSendMagicEffect(getPlayerPosition(cid), CONST_ME_POFF)
return true
elseif not doPlayerRemoveMoney(cid, quantMoney) then
doPlayerSendCancel(cid, "You do not have money.")
return true
db.executeQuery("UPDATE `killers` SET `unjustified` = 0 WHERE `id` IN (SELECT `kill_id` FROM `player_killers` WHERE `player_id` = " .. getPlayerGUID(cid) .. ")")
doPlayerSendTextMessage(cid, 27, "Your frags & your skull have been removed!")
doSendMagicEffect(getPlayerPosition(cid), CONST_ME_MAGIC_RED)
doSendAnimatedText(getPlayerPosition(cid), "POFF!", 180)
doCreatureSetSkullType(cid,0)
doPlayerSetSkullEnd(cid, 0, playerSkull)
end

return true
end
 

 



talkactions.xml


 

 

<talkaction words="!removefrags" event="script" value="removefrags.lua"/>
 

 

Editado por Luquinha (veja o histórico de edições)

Dp9Y7vq.png

Link para o post
Compartilhar em outros sites

tenta ai ? nem tentei , OBS : é outro

 

removefrags.lua

function onSay(cid, words, param)

local quantMoney = 5000 -- quantidade de gps
local noRemove = {SKULL_YELLOW}
local playerSkull = getPlayerSkullType(cid)

if isInArray(noRemove, playerSkull) then
doPlayerSendCancel(cid, "You can't remove this type of skull.")
doSendMagicEffect(getPlayerPosition(cid), CONST_ME_POFF)
return true
elseif playerSkull == SKULL_NONE then
doPlayerSendCancel(cid, "You don't have skull.")
doSendMagicEffect(getPlayerPosition(cid), CONST_ME_POFF)
return true
elseif not doPlayerRemoveMoney(cid, quantMoney) then
doPlayerSendCancel(cid, "You do not have money.")
return true
db.executeQuery("UPDATE `killers` SET `unjustified` = 0 WHERE `id` IN (SELECT `kill_id` FROM `player_killers` WHERE `player_id` = " .. getPlayerGUID(cid) .. ")")
doPlayerSendTextMessage(cid, 27, "Your frags & your skull have been removed!")
doSendMagicEffect(getPlayerPosition(cid), CONST_ME_MAGIC_RED)
doSendAnimatedText(getPlayerPosition(cid), "POFF!", 180)
doCreatureSetSkullType(cid,0)
doPlayerSetSkullEnd(cid, 0, playerSkull)
end

return true
end
 

 

talkactions.xml

 

 

<talkaction words="!removefrags" event="script" value="removefrags.lua"/>
 

 

 

 

Nada :/ troco o script e do reload talkactions  e nada.

Link para o post
Compartilhar em outros sites

Cara não tem como não funcionar.

 

Siga os procedimentos
cria um arquivo .lua com o nome removefrags na pasta data/talkactions/scripts, cole:


function onSay(cid, words, param)

local quantMoney = 5000 -- quantidade de gps
local noRemove = {SKULL_YELLOW}
local playerSkull = getPlayerSkullType(cid)

if isInArray(noRemove, playerSkull) then
doPlayerSendCancel(cid, "You can't remove this type of skull.")
doSendMagicEffect(getPlayerPosition(cid), CONST_ME_POFF)
return true
elseif playerSkull == SKULL_NONE then
doPlayerSendCancel(cid, "You don't have skull.")
doSendMagicEffect(getPlayerPosition(cid), CONST_ME_POFF)
return true
elseif not doPlayerRemoveMoney(cid, quantMoney) then
doPlayerSendCancel(cid, "You do not have money.")
return true
db.executeQuery("UPDATE `killers` SET `unjustified` = 0 WHERE `id` IN (SELECT `kill_id` FROM `player_killers` WHERE `player_id` = " .. getPlayerGUID(cid) .. ")")
doPlayerSendTextMessage(cid, 27, "Your frags & your skull have been removed!")
doSendMagicEffect(getPlayerPosition(cid), CONST_ME_MAGIC_RED)
doSendAnimatedText(getPlayerPosition(cid), "POFF!", 180)
doCreatureSetSkullType(cid,0)
doPlayerSetSkullEnd(cid, 0, playerSkull)
end

return true
end


em talkactions.xml cole a tag:
<talkaction words="!removefrags" event="script" value="removefrags.lua"/>

Dp9Y7vq.png

Link para o post
Compartilhar em outros sites

Cara não tem como não funcionar.

 

Siga os procedimentos

cria um arquivo .lua com o nome removefrags na pasta data/talkactions/scripts, cole:


function onSay(cid, words, param)

local quantMoney = 5000 -- quantidade de gps
local noRemove = {SKULL_YELLOW}
local playerSkull = getPlayerSkullType(cid)

if isInArray(noRemove, playerSkull) then
doPlayerSendCancel(cid, "You can't remove this type of skull.")
doSendMagicEffect(getPlayerPosition(cid), CONST_ME_POFF)
return true
elseif playerSkull == SKULL_NONE then
doPlayerSendCancel(cid, "You don't have skull.")
doSendMagicEffect(getPlayerPosition(cid), CONST_ME_POFF)
return true
elseif not doPlayerRemoveMoney(cid, quantMoney) then
doPlayerSendCancel(cid, "You do not have money.")
return true
db.executeQuery("UPDATE `killers` SET `unjustified` = 0 WHERE `id` IN (SELECT `kill_id` FROM `player_killers` WHERE `player_id` = " .. getPlayerGUID(cid) .. ")")
doPlayerSendTextMessage(cid, 27, "Your frags & your skull have been removed!")
doSendMagicEffect(getPlayerPosition(cid), CONST_ME_MAGIC_RED)
doSendAnimatedText(getPlayerPosition(cid), "POFF!", 180)
doCreatureSetSkullType(cid,0)
doPlayerSetSkullEnd(cid, 0, playerSkull)
end

return true
end

em talkactions.xml cole a tag:

<talkaction words="!removefrags" event="script" value="removefrags.lua"/>

 

fiz o  procedimento, dei reload e nada, tem skype para nos conversarmoss? irei testar apos reiniciar o servidor.

Link para o post
Compartilhar em outros sites

Usa action, dá na mesma apenas use um NPC para vende o item.

Vá até a pasta "Actions" entre na pasta "Script" e crie um arquivo com o nome de RemoveFrags.lua com isto dentro dele

 

-- [( Script created by Luquinha for TK )] --
function onUse(cid, item, fromPosition, item2, toPosisition)
local rskulls = {green = SKULL_GREEN, red = SKULL_RED, black = SKULL_BLACK}
if isInArray(rskulls, getPlayerSkullType(cid)) then
doPlayerSendCancel(cid,"You don't remover your frags and skulls.")
doSendMagicEffect(getPlayerPosition(cid), 2)
else
db.executeQuery("UPDATE `killers` SET `unjustified` = 0 WHERE `id` IN (SELECT `kill_id` FROM `player_killers` WHERE `player_id` = " .. getPlayerGUID(cid) .. ")")
doCreatureSetSkullType(cid, 0)
doCreatureSay(cid, "Your frags and skulls is cleaned!", 19)
doSendMagicEffect(getPlayerPosition(cid), 26)
doRemoveItem(item.uid, 1)
return TRUE
end
end

Agora volte até a pasta "Actions" e abra o arquivo "Actions.xml" e adicione esta Tag nele

        <action itemid="5468" event="script" value="RemoveFrags.lua"/>

Editado por Luquinha (veja o histórico de edições)

Dp9Y7vq.png

Link para o post
Compartilhar em outros sites

Participe da conversa

Você pode postar agora e se cadastrar mais tarde. Se você tem uma conta, faça o login para postar com sua conta.

Visitante
Responder

×   Você colou conteúdo com formatação.   Remover formatação

  Apenas 75 emojis são permitidos.

×   Seu link foi automaticamente incorporado.   Mostrar como link

×   Seu conteúdo anterior foi restaurado.   Limpar o editor

×   Não é possível colar imagens diretamente. Carregar ou inserir imagens do URL.

  • Quem Está Navegando   0 membros estão online

    Nenhum usuário registrado visualizando esta página.

×
×
  • Criar Novo...

Informação Importante

Confirmação de Termo