Objetivo: Juntar o Maior número de Querys (códigos) nessa postagem como forma de compartilhamento de informações e ajuda mútua, ou seja, nós aprendemos se ajudando.

Primeiro Passo: Abra o Navcat -->Abra sua Database (my) --> Abra o console (F6 ou clicar no botão direito do mouse em cima da db com nome em verde (my)  --> abrir console. os códigos abaixo deverão ser executados nesse "console" digitando o código e apertando "Enter" do teclado.

Querys Atuais

#001 - Mudar taxa de composição (reborn pontos ganhos):

2x Multiplicar a taxa atual de pontos ganhos (mark)
2/ Dividir a Taxa de Reborn

update cq_eudemon_rbn_rqr set min=min*2;
update cq_eudemon_rbn_rqr set max=max*2;

regra: min= mínimo pontos ganhos
          max=máximo pontos ganhos
         *2 = multiplicação por 2 ou 2x
         /2 = dividir por 2 a taxa atual 2/2 =1


#002 - TODOS PETS TROVÃO

UPDATE `cq_eudemon` SET `damage_type`='5'

Regra: Abrir o menu "query" no navicat em seguida clicar em "new query"
colar a query acima em seguida clicar no botão "Run".

obs: todos os pets chocados no servidor serão da propriedade Thunder (trovão)

#003 - MUDANDO DROP DE TODOS OS MONSTROS DO SERVIDOR

update cq_dropitemrule set item0=ID DO ITEM A DROPAR;
update cq_dropitemrule set item1=DO ITEM A DROPAR;
update cq_dropitemrule set item2=DO ITEM A DROPAR;
update cq_dropitemrule set item3=DO ITEM A DROPAR;
update cq_dropitemrule set item4=DO ITEM A DROPAR;
update cq_dropitemrule set item5=DO ITEM A DROPAR;
update cq_dropitemrule set item6=1DO ITEM A DROPAR;
update cq_dropitemrule set item7=DO ITEM A DROPAR;
update cq_dropitemrule set item8=ID DO ITEM A DROPAR;
update cq_dropitemrule set item9=ID DO ITEM A DROPAR;
update cq_dropitemrule set item10=ID DO ITEM A DROPAR;
update cq_dropitemrule set item11=ID DO ITEM A DROPAR;
update cq_dropitemrule set item12=ID DO ITEM A DROPAR;
update cq_dropitemrule set item13=ID DO ITEM A DROPAR;
update cq_dropitemrule set item14=ID DO ITEM A DROPAR;
UPDATE CQ_DROPITEMRULE SET CHANCE=NÚMERO DA CHANCE DE DROPAR:

Regra: item0 ao item14 são os possíveis itens de se dropar do monstro
            SET CHANCE = QUANTO MAIOR NÚMERO MAIOR A CHANCE DE DROPAR

OBS: COLOCAR UM NÚMERO RELATIVAMENTE GRANDE EXEMPLO : 50000000

Comentários