Item Details

Libra ( Z_Stone_12 )

ID 4969 Libra
Libra Kaufpreis: zeny Verkaufspreis: 0 zeny Gewicht: 0 Slots: Nicht angegeben
Typ: Kartengegenstand. Untertyp: Verzauberungskarte Geschlecht: Beide Orte: Nicht angegeben
Angriff: Nicht angegeben Magie Angriff: Nicht angegeben Reichweite: Nicht angegeben Verteidigung: Nicht angegeben
Waffenlevel: Nicht angegeben Rüstungslevel: Nicht angegeben Min. Ausrüstungslevel: Nicht angegeben Max. Ausrüstungslevel: Nicht angegeben
Veredelbar: Nicht angegeben Gradierbar: Nicht angegeben Element: Neutral Klassen: Nicht angegeben

Terdapat kemungkinan kecil mengaktifkan buff "Burn" saat menerima damage (fisik/magic)

Burn Buff:
Memberikan Burning status pada penyerang

Alle

Nicht angegeben

Flaggen
Kann einem Ankaufsstand eines Spielers hinzugefugt werden? Nein
Beschwört ein Monster? Nein
Teil eines Behälters? Nein
Hat einen einzigartigen Stapel? Nein
Bindet beim Anlegen? Nein
Kündigt den Drop an? Nein
Wird bei Benutzung verbraucht? Ja
Hat einen Drop-Effekt? Nein
Stapelung
Nicht angegeben
Verwendung
Nicht angegeben
Handel
Überschreiben Nicht angegeben
Kann fallengelassen werden? Ja
Kann gehandelt werden? Ja
Kann mit dem Partner gehandelt werden? Ja
Kann an NPC verkauft werden? Ja
Kann in den Karren gelegt werden? Ja
Kann im Lager abgelegt werden? Ja
Kann im Gildenlager abgelegt werden? Ja
Kann per Post versendet werden? Ja
Kann versteigert werden? Ja
Verzögerung
Nicht angegeben
setarray .@skills$, "AL_HEAL", "PR_SANCTUARY", "AM_POTIONPITCHER", "AB_HIGHNESSHEAL", "AB_CHEAL";
for( .@i = 0; .@i < getarraysize(.@skills$); .@i++ ) {
   bonus2 bSkillHeal2,.@skills$[.@i],1;
}
/* TODO: Depending on some recovery items HP recovery amount + 1% */
Skriptreferenzen
setarray Befehl
setarray
Signatur:
setarray <array name>[<first value>],<value>{,<value>...<value>};
Beschreibung:
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
Beispiel:
setarray .@array[0], 100, 200, 300, 400, 500, 600;
setarray .@array[0],200,200,200;
setarray .@array[1],300,150;
for Befehl
for
Signatur:
for (<variable initialization>; <condition>; <variable update>) <statement>;
Beschreibung:
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:
Beispiel:
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 Befehl
getarraysize
Signatur:
getarraysize(<array name>)
Beschreibung:
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.
Beispiel:
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);
bSkillHeal2 Gegenstandsbonus
bSkillHeal2
Signatur:
bonus2 bSkillHeal2,sk,n;
Beschreibung:
Increases heal amount if you are healed by skill sk by n%
recovery Befehl
recovery
Signatur:
recovery <type>{,<option>,<revive_flag>{,<map name>}};
Beschreibung:
This command will revive and fully restore the HP/SP of the selected characters. It returns 1 upon successful use. <type> is the target, and determines the <option> parameter: 0: Player -> Character ID number 1: Party -> Party ID number 2: Guild -> Guild ID number 3: Map -> Map name (a string) 4: All -> None (takes <revive_flag> as option) If no option is specified, the invoking player's character ID, party ID, guild ID, or map will be used. <revive_flag> determines the action: 1: Revive and heal all players (default) 2: Heal living players only 4: Revive dead players only <map name> can optionally be used to define a single map to execute the command on for types 1 (party) and 2 (guild). Examples:
Beispiel:
// Only revive characters in invoking party on map "morocc"
recovery 1,getcharid(1),4,"morocc";
// Fully heal (don't revive) all members of invoking character's guild
recovery 2,getcharid(2),2;
// Revive and fully heal everyone in map "prontera"
recovery 3,"prontera";
// Only revive all dead characters on server
recovery 4,4;
Nicht angegeben
Skriptreferenzen

Für dieses Skript wurden keine dokumentierten Referenzen erkannt.

Nicht angegeben
Skriptreferenzen

Für dieses Skript wurden keine dokumentierten Referenzen erkannt.

Nicht angegeben

Nicht angegeben

Nicht angegeben

Nicht angegeben

Nicht angegeben

Nicht angegeben

Nicht angegeben

Nicht angegeben