Ir para conteúdo
  • 0

(Duvida) Script Camera


BrunooMaciell

Pergunta

Estou com uma duvida relacionado a minha script de camera!

 

SCRIPT

Spoiler

function onUse(cid, item, frompos, item2, topos)

    if getPlayerStorageValue(cid, 99284) == 2 then
        doPlayerSendCancel(cid, "You have to close your private chat to create a TV channel.")
    return true
    end

    if getPlayerStorageValue(cid, 99284) == 1 then
        doPlayerSendCancel(cid, "You are already on air! Currently on channel: "..getPlayerStorageValue(cid, 99285).."")
        doPlayerSendChannel(cid, getPlayerChannelId(cid), getPlayerStorageValue(cid, 99285))
    return true
    end

if not isPremium(cid) then
doPlayerSendCancel(cid, "Only premium members are allowed to record videos.")
return true
end

    doPlayerPopupFYI(cid, "Choose a channel name")

end

 

Ela como podem ver esta so pra VIP usa eu queria deixa pra free pode usa.

 

Dai estava com duvida se era so tira isto \/ que voltava a fica free de novo pode usa.

Spoiler

if not isPremium(cid) then
doPlayerSendCancel(cid, "Only premium members are allowed to record videos.")
return true
end

 

Rep+

Link para o comentário
Compartilhar em outros sites

8 respostass a esta questão

Posts Recomendados

  • 0
1 hora atrás, brunoo1996 disse:

Estou com uma duvida relacionado a minha script de camera!

 

SCRIPT

  Mostrar conteúdo oculto

function onUse(cid, item, frompos, item2, topos)

    if getPlayerStorageValue(cid, 99284) == 2 then

        doPlayerSendCancel(cid, "You have to close your private chat to create a TV channel.")

    return true

    end

    if getPlayerStorageValue(cid, 99284) == 1 then

        doPlayerSendCancel(cid, "You are already on air! Currently on channel: "..getPlayerStorageValue(cid, 99285).."")

        doPlayerSendChannel(cid, getPlayerChannelId(cid), getPlayerStorageValue(cid, 99285))

    return true

    end

if not isPremium(cid) then

doPlayerSendCancel(cid, "Only premium members are allowed to record videos.")

return true

end

    doPlayerPopupFYI(cid, "Choose a channel name")

end

 

Ela como podem ver esta so pra VIP usa eu queria deixa pra free pode usa.

 

Dai estava com duvida se era so tira isto \/ que voltava a fica free de novo pode usa.

  Ocultar conteúdo

if not isPremium(cid) then

doPlayerSendCancel(cid, "Only premium members are allowed to record videos.")

return true

end

 

Rep+

 

amigo, eu testei isso e mesmo assim nao da pra funfar simplemente removendo isso, eles "ligam as cam" mas o canal nunca aparesce nas tv

dica 1, o TV system daba pra derruba o servidor com ele, usando alguns bugs os players usaram pra clonagem de pokes donaters do meu servidor

dica 2, o sistema esta bugado, se o player deslogar ou o servidor cair ou sla enquanto tem caras "asistindo" a tv eles irao levar tp pra aonde tava o cara com a tv ativa, no meu server daba pra levar players free na area vip usando essa tv

dica 3,  quando os players for asistir algo "eles levam tp aonde ta o cara com a cam" ai eles ficam em stack, stack stack stack 1 acima de outro. ai ira bugar apos ter muitos stacks e voce ira andar "bugado" o player alem a janela "battle" voce ira olhar tds la só q sem hp kkk

dica 4, retire o tv system : / é bugado

Link para o comentário
Compartilhar em outros sites

  • 0

function onUse(cid, item, frompos, item2, topos)

    if getPlayerStorageValue(cid, 99284) == 2 then
        doPlayerSendCancel(cid, "You have to close your private chat to create a TV channel.")
    return true
    end

    if getPlayerStorageValue(cid, 99284) == 1 then
        doPlayerSendCancel(cid, "You are already on air! Currently on channel: "..getPlayerStorageValue(cid, 99285).."")
        doPlayerSendChannel(cid, getPlayerChannelId(cid), getPlayerStorageValue(cid, 99285))
    return true
    end

    doPlayerPopupFYI(cid, "Choose a channel name")

return true

end

Link para o comentário
Compartilhar em outros sites

  • 0

Testar Assim 

Spoiler

local config = {
premium = false, -- se precisa ser premium account (true or false)
}

function onUse(cid, item, frompos, item2, topos)
    if getPlayerStorageValue(cid, 99284) == 2 then
        doPlayerSendCancel(cid, "You have to close your private chat to create a TV channel.")
    return true
    end
    if getPlayerStorageValue(cid, 99284) == 1 then
        doPlayerSendCancel(cid, "You are already on air! Currently on channel: "..getPlayerStorageValue(cid, 99285).."")
        doPlayerSendChannel(cid, getPlayerChannelId(cid), getPlayerStorageValue(cid, 99285))
    return true
    end
    if config.premium and not isPremium(cid) then
    doPlayerSendCancel(cid, "Only premium members are allowed to use camera.")
    return true
    end
    doPlayerPopupFYI(cid, "Choose a channel name")
end

 

Link para o comentário
Compartilhar em outros sites

×
×
  • Criar Novo...