Skip to content
Snippets Groups Projects
Commit aec7fc95 authored by MELERIX's avatar MELERIX
Browse files

BETA: Small Fixes & Improvements.

parent d36ad37a
No related branches found
No related tags found
No related merge requests found
......@@ -25,7 +25,14 @@
</xs:restriction>
</xs:simpleType>
</xs:attribute>
<xs:attribute name="successRate" type="xs:decimal" />
<xs:attribute name="successRate">
<xs:simpleType>
<xs:restriction base="xs:decimal">
<xs:minInclusive value="1.0" />
<xs:maxInclusive value="100.0" />
</xs:restriction>
</xs:simpleType>
</xs:attribute>
<xs:attribute name="targetGrade">
<xs:simpleType>
<xs:restriction base="xs:token">
......@@ -51,7 +58,14 @@
</xs:restriction>
</xs:simpleType>
</xs:attribute>
<xs:attribute name="successBonus" type="xs:decimal" use="required" />
<xs:attribute name="successBonus" use="required">
<xs:simpleType>
<xs:restriction base="xs:decimal">
<xs:minInclusive value="1.0" />
<xs:maxInclusive value="100.0" />
</xs:restriction>
</xs:simpleType>
</xs:attribute>
<xs:attribute name="targetGrade" use="required">
<xs:simpleType>
<xs:restriction base="xs:token">
......
......@@ -5,8 +5,8 @@ CREATE TABLE IF NOT EXISTS `custom_npcaidata` (
`primarySkillId` smallint(5) unsigned DEFAULT '0',
`agroRange` smallint(4) unsigned NOT NULL DEFAULT '0',
`canMove` tinyint(1) unsigned NOT NULL DEFAULT '1',
`targetable` tinyint(1) NOT NULL DEFAULT '1',
`showName` tinyint(1) NOT NULL DEFAULT '1',
`targetable` tinyint(1) unsigned NOT NULL DEFAULT '1',
`showName` tinyint(1) unsigned NOT NULL DEFAULT '1',
`minRangeSkill` smallint(5) unsigned DEFAULT '0',
`minRangeChance` tinyint(3) unsigned DEFAULT '0',
`maxRangeSkill` smallint(5) unsigned DEFAULT '0',
......@@ -15,7 +15,7 @@ CREATE TABLE IF NOT EXISTS `custom_npcaidata` (
`spiritShot` smallint(4) unsigned DEFAULT '0',
`spsChance` tinyint(3) unsigned DEFAULT '0',
`ssChance` tinyint(3) unsigned DEFAULT '0',
`aggro` smallint(4) NOT NULL DEFAULT '0',
`aggro` smallint(4) unsigned NOT NULL DEFAULT '0',
`isChaos` smallint(4) unsigned DEFAULT '0',
`clan` varchar(40) DEFAULT NULL,
`clanRange` smallint(4) unsigned DEFAULT '0',
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment