Libra Diadem ( Libra_Diadem_J )
| ID 19468 |
|
|||||||||||||||||||||||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
Preço de Compra: 20 zeny | Preço de Venda: 10 zeny | Peso: 10 | Slots: Não especificado | ||||||||||||||||||||||||||||||||||||
| Tipo: Equipamento | Subtipo: Não especificado | Gênero: Ambos | Localizações: Equipamento de Cabeça Superior | |||||||||||||||||||||||||||||||||||||
| Ataque: Não especificado | Ataque Mágico: Não especificado | Alcance: Não especificado | Defesa: 12 | |||||||||||||||||||||||||||||||||||||
| Nível da Arma: Não especificado | Nível da Armadura: 1 | Nível Mín. de Equipamento: Não especificado | Nível Máx. de Equipamento: Não especificado | |||||||||||||||||||||||||||||||||||||
| Refinável: 1 | Graduável: Não especificado | Elemento: Neutro | Classes: Não especificado | |||||||||||||||||||||||||||||||||||||
|
Todos Não especificado
Flags
Empilhamento
Não especificado
Uso
Não especificado
Comércio
Atraso
Não especificado
.@r = getrefine();
bonus bUnbreakableHelm;
bonus bMdef,15;
bonus bStr,10;
bonus bBaseAtk,50;
bonus bDelayrate,-20;
if (eaclass()&EAJL_THIRD && BaseJob == Job_Knight) {
bonus2 bSubClass,Class_Boss,20;
bonus bHPGainValue,500;
bonus bSPGainValue,50;
bonus2 bSkillAtk,"RK_STORMBLAST",(.@r>=8?70:(.@r>=6?50:30));
bonus2 bFixedCastrate,"RK_REFRESH",-100;
autobonus3 "{ bonus bAtkRate,-50; bonus bMatkRate,-50; bonus3 bAutoSpellWhenHit,\"RK_MILLENNIUMSHIELD\",1,10; }",1000,60000,"RK_MILLENNIUMSHIELD";
autobonus3 "{ percentheal 100,100; sc_end UNLUCKY; sc_end IGNORANCE; sc_end WEAKNESS; sc_end ENERVATION; sc_end LAZINESS; }",1000,1000,"RK_REFRESH";
autobonus3 "{ bonus bNoKnockback; }",1000,30000,"RK_CRUSHSTRIKE";
autobonus3 "{ bonus bStr,30; bonus bInt,-30; }",1000,300000,"RK_GIANTGROWTH";
autobonus3 "{ bonus2 bSPRegenRate,40,10000; }",1000,300000,"RK_ABUNDANCE";
autobonus3 "{ bonus bShortWeaponDamageReturn,10; heal -1000,0; }",1000,300000,"RK_STONEHARDSKIN";
autobonus3 "{ bonus2 bHPRegenRate,500,10000; }",1000,300000,"RK_VITALITYACTIVATION";
autobonus3 "{ bonus bBaseAtk,10; bonus bAspdRate,10; }",1000,300000,"RK_FIGHTINGSPIRIT";
if (.@r>=6)
autobonus3 "{ bonus3 bAutoSpellWhenHit,\"RK_MILLENNIUMSHIELD\",1,20; }",1000,60000,"RK_MILLENNIUMSHIELD";
if (.@r>=8) {
bonus bAllStats,10;
bonus2 bHPRegenRate,500,5000;
bonus2 bSPRegenRate,50,5000;
autobonus3 "{ bonus3 bAutoSpellWhenHit,\"RK_MILLENNIUMSHIELD\",1,30; }",1000,60000,"RK_MILLENNIUMSHIELD";
}
}
Referências do Script
getrefine
Comando
getrefine
Assinatura:
Descrição:
function is called.
This function is intended for use in item scripts.
bUnbreakableHelm
Bônus de Item
bUnbreakableHelm
Assinatura:
Descrição:
Helm cannot be damaged/broken by any means
bMdef
Bônus de Item
bMdef
Assinatura:
Descrição:
Equipment MDEF + n
bStr
Bônus de Item
bStr
Assinatura:
Descrição:
STR + n
bBaseAtk
Bônus de Item
bBaseAtk
Assinatura:
Descrição:
Basic attack power + n
bDelayrate
Bônus de Item
bDelayrate
Assinatura:
Descrição:
Increases skill delay by n%
if
Comando
if
Assinatura:
Descrição:
Este é o comando de instrução condicional básico, e praticamente o único disponível nesta linguagem de script.
A condição pode ser qualquer expressão. Todas as expressões que resultam em um valor não zero serão consideradas Verdadeiras, incluindo valores negativos. Todas as expressões que resultam em zero são falsas.
Se a expressão resultar em Verdadeira, a instrução será executada. Se não for verdadeira, nada acontece e passamos para a próxima linha do script.
Para mais informações sobre operadores condicionais, consulte a seção de operadores acima.
armazená-lo em uma variável específica:
Mais exemplos de uso do comando 'if' no mundo real:
Exemplo 1:
Exemplo 2:
Note que os exemplos 1 e 2 têm o mesmo efeito.
Exemplo 3:
Exemplo 4:
Exemplo 5:
Veja 'strcharinfo' para uma explicação do que esta função faz.
Exemplo 6: Usando condições complexas.
O motor de script também suporta declarações 'if' aninhadas:
Se a condição não for atendida, ele executará a ação seguinte ao 'else'.
Também podemos agrupar várias ações dependendo de uma condição:
Lembre-se que se você planeja fazer várias ações quando a condição for falsa, e
você esquecer de usar as chaves ( { } ), a segunda ação será executada independentemente
da saída da condição, a menos, é claro, que você pare a execução do script se a
condição for verdadeira (ou seja, no primeiro agrupamento usando um return;, end; ou um close;)
Além disso, você pode ter múltiplas condições aninhadas ou encadeadas.
Exemplo:
eaclass
Comando
eaclass
Assinatura:
Descrição:
This commands returns the "eA job-number" corresponding to the given class, and
uses the invoking player's class if none is given. The eA job-number is also a
class number system, but it's one that comes with constants which make it easy
to convert among classes. The command will return -1 if you pass it a job number
which doesn't have an eA job-number equivalent.
Exemplo:
bSubClass
Bônus de Item
bSubClass
Assinatura:
Descrição:
+x% damage reduction against class c
bHPGainValue
Bônus de Item
bHPGainValue
Assinatura:
Descrição:
Heals +n HP when killing an enemy with a melee-physical attack
bSPGainValue
Bônus de Item
bSPGainValue
Assinatura:
Descrição:
Heals +n SP when killing an enemy with a melee-physical attack
bSkillAtk
Bônus de Item
bSkillAtk
Assinatura:
Descrição:
Increases damage of skill sk by n%
bFixedCastrate
Bônus de Item
bFixedCastrate
Assinatura:
Descrição:
Increases fixed cast time of skill sk by n% (has effect in RENEWAL_CAST only)
autobonus3
Comando
autobonus3
Assinatura:
Descrição:
These commands are meant to be used in item scripts only! See 'petautobonus' for pet usage.
What these commands do is 'attach' a script to the player which will get
executed on attack (or when attacked in the case of autobonus2).
Rate is the trigger rate of the script (1000 = 100%).
Duration is the time in milliseconds that the bonus will last for since the script has triggered.
Skill ID/skill name the skill which will be used as trigger to start the bonus. (autobonus3)
The optional argument 'flag' is used to classify the type of attack where the script
can trigger (it shares the same flags as the bAutoSpell bonus script):
Range criteria:
Attack type criteria:
Skill criteria:
The difference between the optional argument 'other script' and the 'bonus script' is that,
the former one triggers only when attacking(or attacked) and the latter one runs on
status calculation as well, which makes sure, within the duration, the "bonus" that get
lost on status calculation is restored. So, 'bonus script' is technically supposed to accept
"bonus" command only. And we usually use 'other script' to show visual effects.
In all cases, when the script triggers, the attached player will be the one
who holds the bonus. There is currently no way of knowing within this script
who was the other character (the attacker in autobonus2, or the target in
autobonus and autobonus3).
//Grants a 1% chance of starting the state "all stats +10" for 10 seconds when
//using weapon or misc attacks (both melee and ranged skills) and shows a special
//effect when the bonus is active.
Exemplo:
bAtkRate
Bônus de Item
bAtkRate
Assinatura:
Descrição:
ATK + n% that won't interfere with Damage modifier and SC_EDP (renewal mode only)
bMatkRate
Bônus de Item
bMatkRate
Assinatura:
Descrição:
Magical attack power + n%
bAutoSpellWhenHit
Bônus de Item
bAutoSpellWhenHit
Assinatura:
Descrição:
Adds a n/10% chance to cast skill sk of level y when being hit by a direct attack with trigger criteria bf
percentheal
Comando
percentheal
Assinatura:
Descrição:
This command will heal the invoking character. It heals the character, but not
by a set value - it adds percent of their maximum HP/SP.
you have maximum. Like 'heal', this will not call up any animations or effects.
Exemplo:
bNoKnockback
Bônus de Item
bNoKnockback
Assinatura:
Descrição:
Character is no longer knocked back by enemy skills with such effect
bInt
Bônus de Item
bInt
Assinatura:
Descrição:
INT + n
bSPRegenRate
Bônus de Item
bSPRegenRate
Assinatura:
Descrição:
Gain n SP every t milliseconds
bShortWeaponDamageReturn
Bônus de Item
bShortWeaponDamageReturn
Assinatura:
Descrição:
Reflects n% of received melee damage back to the enemy that caused it
heal
Comando
heal
Assinatura:
Descrição:
This command will heal a set amount of HP and/or SP on the invoking character.
character and produces no other output whatsoever.
Exemplo:
bHPRegenRate
Bônus de Item
bHPRegenRate
Assinatura:
Descrição:
Gain n HP every t milliseconds
bAspdRate
Bônus de Item
bAspdRate
Assinatura:
Descrição:
Attack speed + n%
bAllStats
Bônus de Item
bAllStats
Assinatura:
Descrição:
STR + n, AGI + n, VIT + n, INT + n, DEX + n, LUK + n
Não especificado Referências do ScriptNenhuma referência documentada foi detectada neste script. Não especificado Referências do ScriptNenhuma 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 |
||||||||||||||||||||||||||||||||||||||||