mirror of
https://gitlab.com/openrsc/openrsc
synced 2026-08-16 08:23:06 -04:00
13 lines
No EOL
642 B
XML
13 lines
No EOL
642 B
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<queries xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../sql_queries.xsd">
|
|
<query key="item.deleteItems">
|
|
delete from `_PREFIX_itemstatuses` where `itemID` in ({items})
|
|
</query>
|
|
<query key="item.deleteItem">
|
|
delete from `_PREFIX_itemstatuses` where `itemID` = {itemId}
|
|
</query>
|
|
<query key="item.createItem">
|
|
insert into `_PREFIX_itemstatuses` (`itemId`, `catalogID`, `amount`, `noted`, `wielded`, `durability`)
|
|
values({itemId}, {catalogId}, {amount}, {noted}, {wielded}, {durability})
|
|
</query>
|
|
</queries> |