<feed xmlns='http://www.w3.org/2005/Atom'>
<title>github/SkyblockMod.git/me/Danker/commands, branch v1.5.2</title>
<subtitle>Unnamed repository; edit this file 'description' to name the repository.</subtitle>
<link rel='alternate' type='text/html' href='https://git.nea.moe/github/SkyblockMod.git/'/>
<entry>
<title>Add /skills command, fix /loot command</title>
<updated>2020-07-20T03:28:40+00:00</updated>
<author>
<name>bowser0000</name>
<email>bowser0000@gmail.com</email>
</author>
<published>2020-07-20T03:28:40+00:00</published>
<link rel='alternate' type='text/html' href='https://git.nea.moe/github/SkyblockMod.git/commit/?id=34234ac4f58c66c3910e635aaaad60ebf08e9b00'/>
<id>34234ac4f58c66c3910e635aaaad60ebf08e9b00</id>
<content type='text'>
Also adds dashes to /slayer command.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Also adds dashes to /slayer command.
</pre>
</div>
</content>
</entry>
<entry>
<title>Move requests into API handler for future API commands</title>
<updated>2020-07-19T21:58:35+00:00</updated>
<author>
<name>bowser0000</name>
<email>bowser0000@gmail.com</email>
</author>
<published>2020-07-19T21:58:35+00:00</published>
<link rel='alternate' type='text/html' href='https://git.nea.moe/github/SkyblockMod.git/commit/?id=1b6cdee6ed6503b9b3dad740f9efa1e60d87600b'/>
<id>1b6cdee6ed6503b9b3dad740f9efa1e60d87600b</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Add /slayer, API handling and better number formats</title>
<updated>2020-07-19T02:26:30+00:00</updated>
<author>
<name>bowser0000</name>
<email>bowser0000@gmail.com</email>
</author>
<published>2020-07-19T02:26:30+00:00</published>
<link rel='alternate' type='text/html' href='https://git.nea.moe/github/SkyblockMod.git/commit/?id=d1f260be47ea166e77b2e25cd07d6b08ec3e767d'/>
<id>d1f260be47ea166e77b2e25cd07d6b08ec3e767d</id>
<content type='text'>
Added API handler which should make future API commands easier to add. Added /slayer command. Added format to numbers based on locale.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Added API handler which should make future API commands easier to add. Added /slayer command. Added format to numbers based on locale.
</pre>
</div>
</content>
</entry>
<entry>
<title>Add two spaces to slayer drops</title>
<updated>2020-07-14T00:22:26+00:00</updated>
<author>
<name>bowser0000</name>
<email>bowser0000@gmail.com</email>
</author>
<published>2020-07-14T00:22:26+00:00</published>
<link rel='alternate' type='text/html' href='https://git.nea.moe/github/SkyblockMod.git/commit/?id=951f0a660f14176b94f50ca50ecc7801ad096539'/>
<id>951f0a660f14176b94f50ca50ecc7801ad096539</id>
<content type='text'>
In my defence, it looks like one space in chat.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
In my defence, it looks like one space in chat.
</pre>
</div>
</content>
</entry>
<entry>
<title>/move command, colours and slayer fix</title>
<updated>2020-07-13T21:42:57+00:00</updated>
<author>
<name>bowser0000</name>
<email>bowser0000@gmail.com</email>
</author>
<published>2020-07-13T21:42:57+00:00</published>
<link rel='alternate' type='text/html' href='https://git.nea.moe/github/SkyblockMod.git/commit/?id=8ce07f5b4b4c7d8cef95dd613885e5219ce6a6a2'/>
<id>8ce07f5b4b4c7d8cef95dd613885e5219ce6a6a2</id>
<content type='text'>
Added /move command to move text displays. Add colour to messages and error messages in chat. Fixed slayer drops not being tracked.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Added /move command to move text displays. Add colour to messages and error messages in chat. Fixed slayer drops not being tracked.
</pre>
</div>
</content>
</entry>
<entry>
<title>Add tracker and display for all slayer drops</title>
<updated>2020-07-11T05:13:53+00:00</updated>
<author>
<name>bowser0000</name>
<email>bowser0000@gmail.com</email>
</author>
<published>2020-07-11T05:13:53+00:00</published>
<link rel='alternate' type='text/html' href='https://git.nea.moe/github/SkyblockMod.git/commit/?id=99e549b48623ea7968503377adbbf6ca3eccadca'/>
<id>99e549b48623ea7968503377adbbf6ca3eccadca</id>
<content type='text'>
Added token and 20% chance slayer drops. Also added display for the slayer tracker with /display.

This was more difficult than I thought. I first tried to use the PlayerEvent.ItemPickupEvent event, but it was server side only. Then I tried to use the ClientChatReceivedEvent event, but the boss slain message was sent to late. Ultimately, I decided on the PlaySoundEvent event, which waits for the noise for when a slayer boss dies.

I also have no idea what I'm doing with these commits, don't look at history.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Added token and 20% chance slayer drops. Also added display for the slayer tracker with /display.

This was more difficult than I thought. I first tried to use the PlayerEvent.ItemPickupEvent event, but it was server side only. Then I tried to use the ClientChatReceivedEvent event, but the boss slain message was sent to late. Ultimately, I decided on the PlaySoundEvent event, which waits for the noise for when a slayer boss dies.

I also have no idea what I'm doing with these commits, don't look at history.
</pre>
</div>
</content>
</entry>
<entry>
<title>Revert "Add tracker and display for all slayer drops"</title>
<updated>2020-07-11T05:10:05+00:00</updated>
<author>
<name>bowser0000</name>
<email>bowser0000@gmail.com</email>
</author>
<published>2020-07-11T05:10:05+00:00</published>
<link rel='alternate' type='text/html' href='https://git.nea.moe/github/SkyblockMod.git/commit/?id=f2ce0179174518c6ae67a7c60920338e673d6f22'/>
<id>f2ce0179174518c6ae67a7c60920338e673d6f22</id>
<content type='text'>
This reverts commit 0f232e1343fc6495d79f61af212b93fbd55e1598.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This reverts commit 0f232e1343fc6495d79f61af212b93fbd55e1598.
</pre>
</div>
</content>
</entry>
<entry>
<title>Add tracker and display for all slayer drops</title>
<updated>2020-07-11T05:07:31+00:00</updated>
<author>
<name>bowser0000</name>
<email>bowser0000@gmail.com</email>
</author>
<published>2020-07-11T05:07:31+00:00</published>
<link rel='alternate' type='text/html' href='https://git.nea.moe/github/SkyblockMod.git/commit/?id=0f232e1343fc6495d79f61af212b93fbd55e1598'/>
<id>0f232e1343fc6495d79f61af212b93fbd55e1598</id>
<content type='text'>
Added token and 20% chance slayer drops. Also added display for the slayer tracker with /display.

This was more difficult than I thought. I first tried to use the PlayerEvent.ItemPickupEvent event, but it was server side only. Then I tried to use the ClientChatReceivedEvent event, but the boss slain message was sent to late. Ultimately, I decided on the PlaySoundEvent event, which waits for the noise for when a slayer boss dies.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Added token and 20% chance slayer drops. Also added display for the slayer tracker with /display.

This was more difficult than I thought. I first tried to use the PlayerEvent.ItemPickupEvent event, but it was server side only. Then I tried to use the ClientChatReceivedEvent event, but the boss slain message was sent to late. Ultimately, I decided on the PlaySoundEvent event, which waits for the noise for when a slayer boss dies.
</pre>
</div>
</content>
</entry>
<entry>
<title>Revert "Add tracker and display for all slayer drops"</title>
<updated>2020-07-11T04:56:03+00:00</updated>
<author>
<name>bowser0000</name>
<email>bowser0000@gmail.com</email>
</author>
<published>2020-07-11T04:56:03+00:00</published>
<link rel='alternate' type='text/html' href='https://git.nea.moe/github/SkyblockMod.git/commit/?id=126f20c221bd2626bb873faa14843e669ad5859f'/>
<id>126f20c221bd2626bb873faa14843e669ad5859f</id>
<content type='text'>
This reverts commit 9ef7d0c75496281946f6139e98095d01f0164ba3.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This reverts commit 9ef7d0c75496281946f6139e98095d01f0164ba3.
</pre>
</div>
</content>
</entry>
<entry>
<title>Add tracker and display for all slayer drops</title>
<updated>2020-07-11T04:37:32+00:00</updated>
<author>
<name>bowser0000</name>
<email>bowser0000@gmail.com</email>
</author>
<published>2020-07-11T04:37:32+00:00</published>
<link rel='alternate' type='text/html' href='https://git.nea.moe/github/SkyblockMod.git/commit/?id=9ef7d0c75496281946f6139e98095d01f0164ba3'/>
<id>9ef7d0c75496281946f6139e98095d01f0164ba3</id>
<content type='text'>
Added token and 20% chance slayer drops. Also added display for the slayer tracker with /display.

This was more difficult than I thought. I first tried to use the PlayerEvent.ItemPickupEvent event, but it was server side only. Then I tried to use the ClientChatReceivedEvent event, but the boss slain message was sent to late. Ultimately, I decided on the PlaySoundEvent event, which waits for the noise for when a slayer boss dies.</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Added token and 20% chance slayer drops. Also added display for the slayer tracker with /display.

This was more difficult than I thought. I first tried to use the PlayerEvent.ItemPickupEvent event, but it was server side only. Then I tried to use the ClientChatReceivedEvent event, but the boss slain message was sent to late. Ultimately, I decided on the PlaySoundEvent event, which waits for the noise for when a slayer boss dies.</pre>
</div>
</content>
</entry>
</feed>
