mirror of
https://github.com/Rogiel/l2jserver2
synced 2025-12-06 07:32:46 +00:00
Implements dropped items on the ground
The dropped item is broadcasted to all players near by and are stored in the database, allowing them to be restored after a server restart.
This commit is contained in:
@@ -1,23 +1,32 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!-- <template:item xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" -->
|
||||
<!-- xsi:schemaLocation="http://schemas.l2jserver2.com/item ../item.xsd" -->
|
||||
<!-- xmlns:template="http://schemas.l2jserver2.com/item" id="1" icon="icon.etc_adena_i00"> -->
|
||||
<!-- <name>Short Sword</name> -->
|
||||
<!-- <material>STEEL</material> -->
|
||||
<!-- <effect type="IMMEDIATE" /> -->
|
||||
<!-- <price>1</price> -->
|
||||
<!-- <stats> -->
|
||||
<!-- <physicalDamage> -->
|
||||
<!-- <set order="128">510</set> -->
|
||||
<!-- </physicalDamage> -->
|
||||
<!-- <magicalDamage> -->
|
||||
<!-- <set order="128">508</set> -->
|
||||
<!-- </magicalDamage> -->
|
||||
<!-- <criticalChance> -->
|
||||
<!-- <set order="128">8</set> -->
|
||||
<!-- </criticalChance> -->
|
||||
<!-- <physicalAttackSpeed> -->
|
||||
<!-- <set order="128">379</set> -->
|
||||
<!-- </physicalAttackSpeed> -->
|
||||
<!-- </stats> -->
|
||||
<!-- </template:item> -->
|
||||
<template:item xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||||
xsi:schemaLocation="http://schemas.l2jserver2.com/item ../item.xsd"
|
||||
xmlns:template="http://schemas.l2jserver2.com/item" id="1" icon="icon.etc_adena_i00">
|
||||
<name>Short Sword</name>
|
||||
<material>STEEL</material>
|
||||
<effect type="IMMEDIATE" />
|
||||
xmlns:template="http://schemas.l2jserver2.com/item" id="1" name="Short sword">
|
||||
<weight>1</weight>
|
||||
<price>1</price>
|
||||
<stats>
|
||||
<physicalDamage>
|
||||
<set order="128">510</set>
|
||||
</physicalDamage>
|
||||
<magicalDamage>
|
||||
<set order="128">508</set>
|
||||
</magicalDamage>
|
||||
<criticalChance>
|
||||
<set order="128">8</set>
|
||||
</criticalChance>
|
||||
<physicalAttackSpeed>
|
||||
<set order="128">379</set>
|
||||
</physicalAttackSpeed>
|
||||
</stats>
|
||||
<icon>icon.etc_adena_i00</icon>
|
||||
<material>GOLD</material>
|
||||
<!-- <effect type="IMMEDIATE" /> -->
|
||||
</template:item>
|
||||
|
||||
@@ -1,7 +1,10 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<item id="2" icon="icon.etc_adena_i00">
|
||||
<name>Adena</name>
|
||||
<material>GOLD</material>
|
||||
<effect type="IMMEDIATE" />
|
||||
<template:item xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||||
xsi:schemaLocation="http://schemas.l2jserver2.com/item ../item.xsd"
|
||||
xmlns:template="http://schemas.l2jserver2.com/item" id="2" name="Long Sword">
|
||||
<weight>1</weight>
|
||||
<price>1</price>
|
||||
</item>
|
||||
<icon>icon.etc_adena_i00</icon>
|
||||
<material>GOLD</material>
|
||||
<!-- <effect type="IMMEDIATE" /> -->
|
||||
</template:item>
|
||||
|
||||
@@ -1,7 +1,10 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<item id="57" icon="icon.etc_adena_i00">
|
||||
<name>Adena</name>
|
||||
<material>GOLD</material>
|
||||
<effect type="IMMEDIATE" />
|
||||
<template:item xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||||
xsi:schemaLocation="http://schemas.l2jserver2.com/item ../item.xsd"
|
||||
xmlns:template="http://schemas.l2jserver2.com/item" id="57" name="Adena">
|
||||
<weight>1</weight>
|
||||
<price>1</price>
|
||||
</item>
|
||||
<icon>icon.etc_adena_i00</icon>
|
||||
<material>GOLD</material>
|
||||
<!-- <effect type="IMMEDIATE" /> -->
|
||||
</template:item>
|
||||
|
||||
Reference in New Issue
Block a user