LV5 Adrenaline Scroll ( Adrenaline_Scroll )
| ID 12220 |
|
|||||||||||||||||||||||||||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
Buy Price: 2 zeny | Sell Price: 1 zeny | Weight: 1 | Slots: Not specified | ||||||||||||||||||||||||||||||||||||||||
| Type: Usable item. | Sub Type: Not specified | Gender: Both | Locations: Not specified | |||||||||||||||||||||||||||||||||||||||||
| Attack: Not specified | Magic Attack: Not specified | Range: Not specified | Defense: Not specified | |||||||||||||||||||||||||||||||||||||||||
| Weapon Level: Not specified | Armor Level: Not specified | Min. Equip Level: Not specified | Max. Equip Level: Not specified | |||||||||||||||||||||||||||||||||||||||||
| Refineable: Not specified | Gradable: Not specified | Element: Neutral | Classes: Not specified | |||||||||||||||||||||||||||||||||||||||||
|
Pergaminho mágico criado com a essência de magia antiga. Gulungan untuk yang memiliki spesial efek yaitu memberikan level 5 Adrenalin rush. A scroll in which a Account Bound. All Not specified
Flags
Stacking
Not specified
Usage
Trade
Delay
Not specified
.@type = getiteminfo(getequipid(EQI_HAND_R), ITEMINFO_VIEW);
if (.@type == W_1HAXE || .@type == W_2HAXE || .@type == W_MACE) {
skilleffect "BS_ADRENALINE",0;
sc_start SC_ADRENALINE,150000,5;
}
Script References
getiteminfo
Command
getiteminfo
Signature:
Description:
and return the info set by TYPE argument.
It will return -1 if there is no such item or "" if the aegis item name is requested.
Valid types are:
Returned values and their constants (constant = value),
one can use either the value or the constants for your checks:
Example:
getequipid
Command
getequipid
Signature:
Description:
on the invoking character or the specified equipment slot. If nothing is
equipped there, it returns -1.
Valid equipment slots are:
EQI_COMPOUND_ON (-1) - Item slot that calls this script (In context of item script) - exclusive to getequipid
EQI_ACC_L (0) - Accessory 1
EQI_ACC_R (1) - Accessory 2
EQI_SHOES (2) - Footgear (shoes, boots)
EQI_GARMENT (3) - Garment (mufflers, hoods, manteaux)
EQI_HEAD_LOW (4) - Lower Headgear (beards, some masks)
EQI_HEAD_MID (5) - Middle Headgear (masks, glasses)
EQI_HEAD_TOP (6) - Upper Headgear
EQI_ARMOR (7) - Armor (jackets, robes)
EQI_HAND_L (8) - Left hand (weapons, shields)
EQI_HAND_R (9) - Right hand (weapons)
EQI_COSTUME_HEAD_TOP (10) - Upper Costume Headgear
EQI_COSTUME_HEAD_MID (11) - Middle Costume Headgear
EQI_COSTUME_HEAD_LOW (12) - Lower Costume Headgear
EQI_COSTUME_GARMENT (13) - Costume Garment
EQI_AMMO (14) - Arrow/Ammunition
EQI_SHADOW_ARMOR (15) - Shadow Armor
EQI_SHADOW_WEAPON (16) - Shadow Weapon
EQI_SHADOW_SHIELD (17) - Shadow Shield
EQI_SHADOW_SHOES (18) - Shadow Shoes
EQI_SHADOW_ACC_R (19) - Shadow Accessory 2
EQI_SHADOW_ACC_L (20) - Shadow Accessory 1
Notice that a few items occupy several equipment slots, and if the character is
wearing such an item, 'getequipid' will return its ID number for either slot.
Can be used to check if you have something equipped, or if you haven't got
something equipped:
You can also use it to make sure people don't pass a point before removing an
item totally from them. Let's say you don't want people to wear Legion Plate
armor, but also don't want them to equip if after the check, you would do this:
Example:
if
Command
if
Signature:
Description:
This is the basic conditional statement command, and just about the only one
available in this scripting language.
The condition can be any expression. All expressions resulting in a non-zero
value will be considered True, including negative values. All expressions
resulting in a zero are false.
If the expression results in True, the statement will be executed. If it isn't
true, nothing happens and we move on to the next line of the script.
For more information on conditional operators see the operators section above.
bothering to store it in a specific variable:
More examples of using the 'if' command in the real world:
Example 1:
Example 2:
Notice that examples 1 and 2 have the same effect.
Example 3:
Example 4:
Example 5:
See 'strcharinfo' for an explanation of what this function does.
Example 6: Using complex conditions.
The script engine also supports nested 'if' statements:
If the condition isn't met, it'll do the action following the 'else'.
We can also group several actions depending on a condition:
Remember that if you plan to do several actions upon the condition being false, and
you forget to use the curly braces (the { } ), the second action will be executed regardless
the output of the condition, unless of course, you stop the execution of the script if the
condition is true (that is, in the first grouping using a return; , and end; or a close; )
Also, you can have multiple conditions nested or chained.
Example:
skilleffect
Command
skilleffect
Signature:
Description:
attached character or, when defined, on any unit with the given ID.
involves displaying of a number (healing or damaging). Note, that this command
will not actually use the skill, it is intended for scripts, which simulate
skill usage by the NPC, such as buffs, by setting appropriate status and
displaying the skill's effect.
This will heal the character with 2000 HP, buff it with Blessing Lv 10 and
Increase AGI Lv 5, and display appropriate effects.
Example:
Not specified Script ReferencesNo documented script references were detected. Not specified Script ReferencesNo documented script references were detected. Not specified Not specified Not specified Not specified Not specified Not specified Not specified Not specified |
||||||||||||||||||||||||||||||||||||||||||||