Item Details

¹°º´ÀÚ¸® ( Z_Stone_11 )

ID 4968 ¹°º´ÀÚ¸®
¹°º´ÀÚ¸® Preço de Compra: zeny Preço de Venda: 0 zeny Peso: 0 Slots: Não especificado
Tipo: Carta Subtipo: Carta de Encantamento Gênero: Ambos Localizações: Não especificado
Ataque: Não especificado Ataque Mágico: Não especificado Alcance: Não especificado Defesa: Não especificado
Nível da Arma: Não especificado Nível da Armadura: Não especificado Nível Mín. de Equipamento: Não especificado Nível Máx. de Equipamento: Não especificado
Refinável: Não especificado Graduável: Não especificado Elemento: Neutro Classes: Não especificado

Dapat menggunakan skill "Ruwach Lv1"
Dapat menggunakan skill "Decrease Agility Lv5"

Todos

Não especificado

Flags
Pode entrar em loja de player? Não
Invoca monstro? Não
Faz parte de um contêiner? Não
Tem pilha única? Não
Vincula ao equipar? Não
Anuncia o drop? Não
É consumido ao usar? Sim
Tem efeito ao cair no chão? Não
Empilhamento
Não especificado
Uso
Não especificado
Comércio
Substituir Não especificado
Pode ser descartado? Sim
Pode ser trocado? Sim
Pode ser trocado com o parceiro? Sim
Pode ser vendido para NPC? Sim
Pode ser colocado no carrinho? Sim
Pode ser colocado no armazém? Sim
Pode ser colocado no armazém da guilda? Sim
Pode ser enviado por correio? Sim
Pode ser leiloado? Sim
Atraso
Não especificado
setarray .@skills$, "AL_HEAL", "PR_SANCTUARY", "AM_POTIONPITCHER", "AB_HIGHNESSHEAL", "AB_CHEAL";
for( .@i = 0; .@i < getarraysize(.@skills$); .@i++ ) {
   bonus2 bSkillHeal,.@skills$[.@i],1;
}
Referências do Script
setarray Comando
setarray
Assinatura:
setarray <array name>[<first value>],<value>{,<value>...<value>};
Descrição:
This command will allow you to quickly fill up an array in one go. Check the Kafra scripts in the distribution to see this used a lot. First value is the index of the first element of the array to alter. For example: will produce: .@array[0]=200 .@array[1]=300 .@array[2]=150
Exemplo:
setarray .@array[0], 100, 200, 300, 400, 500, 600;
setarray .@array[0],200,200,200;
setarray .@array[1],300,150;
for Comando
for
Assinatura:
for (<variable initialization>; <condition>; <variable update>) <statement>;
Descrição:
Another pretest looping structure is the 'for' statement. It is considered a specialized form of the 'while' statement, and is usually associated with counter- controlled loops. Here are the steps of the 'for' statement: the initialize statement is executed first and only once. The condition test is performed. When the condition evaluates to false, the rest of the for statement is skipped. When the condition evaluates to true, the body of the loop is executed, then the update statement is executed (this usually involves incrementing a variable). Then the condition is reevaluated and the cycle continues. Example 1: Example 2:
Exemplo:
for( .@i = 1; .@i <= 5; .@i++ )
mes "This line will print 5 times.";
mes "This will print the numbers 1 - 5.";
for( .@i = 1; .@i <= 5; .@i++ )
mes "Number: " + .@i;
getarraysize Comando
getarraysize
Assinatura:
getarraysize(<array name>)
Descrição:
This function returns highest index of the array that is filled. counted towards this number. For example: This will make .@arraysize == 6. But if you try this: .@arraysize will still equal 6, even though you've set 7 values.
Exemplo:
setarray .@array[0], 100, 200, 300, 400, 500, 600;
set .@arraysize,getarraysize(.@array);
setarray .@array[0], 100, 200, 300, 400, 500, 600, 0;
set .@arraysize,getarraysize(.@array);
bSkillHeal Bônus de Item
bSkillHeal
Assinatura:
bonus2 bSkillHeal,sk,n;
Descrição:
Increases heal amount of skill sk by n%
Não especificado
Referências do Script

Nenhuma referência documentada foi detectada neste script.

Não especificado
Referências do Script

Nenhuma referência documentada foi detectada neste script.

Não especificado

Não especificado

Não especificado

Não especificado

Não especificado

Não especificado

Não especificado

Não especificado