Break

From Hercules Wiki
Revision as of 16:50, 3 October 2013 by Dastgirpojee (Talk | contribs)

(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

Contents

Syntax

  • break;

Description

This command lets you break out of a loop or a switch block. After the break; command has been issued, the script will continue where needed.

Examples

switch (getequipweaponlv(EQI_HAND_L)) {
case 0:
	mes "You are holding a shield, so it doesnt have a level";
	break;
case 1:
case 2:
case 3:
case 4:
	mes "You are holding a lvl "+ getequipweaponlv(EQI_HAND_L) +" weapon";
	break;
case 5:
	mes "You are holding a lvl 5 weapon, hm, must be a custom design";
	break;
}
close;

See Also