Sealed Clown Card ( SLD_Clown_Card )
| ID 27213 |
|
|||||||||||||||||||||||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
Цена покупки: zeny | Цена продажи: 0 zeny | Вес: 1 | Слоты: Не указано | ||||||||||||||||||||||||||||||||||||
| Тип: Карточный предмет. | Подтип: Не указано | Пол: Оба | Локации: Броня | |||||||||||||||||||||||||||||||||||||
| Атака: Не указано | Магическая атака: Не указано | Диапазон: Не указано | Защита: Не указано | |||||||||||||||||||||||||||||||||||||
| Уровень оружия: Не указано | Уровень брони: Не указано | Мин. Уровень Снаряжения: Не указано | Макс. Уровень Снаряжения: Не указано | |||||||||||||||||||||||||||||||||||||
| Поддается улучшению: Не указано | Оцениваемый: Не указано | Элемент: Нейтральный | Классы: Не указано | |||||||||||||||||||||||||||||||||||||
|
Nos refinos entre 0 e +14: Membuat pemain dapat menggunakan Level 5 Magic Strings, apabila pemain menggunakan Musical Instrument/Whip. Class: Card Все Не указано
Флаги
Стакирование
Не указано
Использование
Не указано
Торговля
Задержка
Не указано
if (getrefine()>=15) {
.@a = 7;
.@b = 15;
}
else {
.@a = 5;
.@b = 10;
}
if (getiteminfo(getequipid(EQI_HAND_R), ITEMINFO_VIEW) == W_MUSICAL || getiteminfo(getequipid(EQI_HAND_R), ITEMINFO_VIEW) == W_WHIP) {
skill "BA_POEMBRAGI2",.@a;
}
bonus bFlee,(readparam(bVit)>=110) ? (.@b*2) : .@b;
Справка по Скрипту
if
Команда
if
Сигнатура:
Описание:
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.
Пример:
getrefine
Команда
getrefine
Сигнатура:
Описание:
function is called.
This function is intended for use in item scripts.
getiteminfo
Команда
getiteminfo
Сигнатура:
Описание:
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:
Пример:
getequipid
Команда
getequipid
Сигнатура:
Описание:
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:
Пример:
bFlee
Бонус Предмета
bFlee
Сигнатура:
Описание:
Flee + n
readparam
Команда
readparam
Сигнатура:
Описание:
This function will return the specified stat of the invoking character, or, if a
character name or character id is specified, of that player. The stat can either
be a number or parameter name, defined in ''.
Some example parameters:
StatusPoint, BaseLevel, SkillPoint, Class, Upper, Zeny, Sex, Weight, MaxWeight,
JobLevel, BaseExp, JobExp, NextBaseExp, NextJobExp, Hp, MaxHp, Sp, MaxSp,
BaseJob, Karma, Manner, bVit, bDex, bAgi, bStr, bInt, bLuk, Ap, MaxAp
All of these also behave as variables, but don't expect to be able to just 'set'
them - some will not work for various internal reasons.
Example 1:
Using this particular information as a function call is not required. Typing this
will return the same result:
Example 2:
You can also use this command to get stat values.
Пример:
bVit
Бонус Предмета
bVit
Сигнатура:
Описание:
VIT + n
Не указано Справка по СкриптуДля этого скрипта не найдено документированных справок. Не указано Справка по СкриптуДля этого скрипта не найдено документированных справок. Не указано Не указано Не указано Не указано Не указано Не указано Не указано Не указано |
||||||||||||||||||||||||||||||||||||||||