diff options
author | Playtester <Playtester@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2006-07-17 13:27:16 +0000 |
---|---|---|
committer | Playtester <Playtester@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2006-07-17 13:27:16 +0000 |
commit | 8f6da9491f55aa14d09ea74afc844e04e4e9d81d (patch) | |
tree | d11e3b17beb84ffa499c43640c2e20b4cab08c56 | |
parent | 3c5f9448d3b3dceded8278a9e048d3904d9dc805 (diff) | |
download | hercules-8f6da9491f55aa14d09ea74afc844e04e4e9d81d.tar.gz hercules-8f6da9491f55aa14d09ea74afc844e04e4e9d81d.tar.bz2 hercules-8f6da9491f55aa14d09ea74afc844e04e4e9d81d.tar.xz hercules-8f6da9491f55aa14d09ea74afc844e04e4e9d81d.zip |
Added slotted Running Shirt to Comobo Gambling
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@7715 54d463be-8e91-2dee-dedb-b68131a5f0ec
-rw-r--r-- | npc/Changelog.txt | 2 | ||||
-rw-r--r-- | npc/other/comodo_gambling.txt | 4 |
2 files changed, 5 insertions, 1 deletions
diff --git a/npc/Changelog.txt b/npc/Changelog.txt index 2f04ad8ad..280872f00 100644 --- a/npc/Changelog.txt +++ b/npc/Changelog.txt @@ -38,6 +38,8 @@ Playtester Date Added
======
+07/17
+ * Added slotted Running Shirt to Comobo Gambling [Playtester]
07/16
* Small spawn update in Kiel Dungeon [Playtester]
07/15
diff --git a/npc/other/comodo_gambling.txt b/npc/other/comodo_gambling.txt index e5ca69c06..aba68ab9d 100644 --- a/npc/other/comodo_gambling.txt +++ b/npc/other/comodo_gambling.txt @@ -364,7 +364,7 @@ comodo.gat,219,160,3 script Kachua 91,{ set @gamble,rand(1,500);
if ((@gamble > 200) && (@gamble < 204))
{
- set @gamble2,rand(1,10);
+ set @gamble2,rand(1,11);
if ((@gamble2 > 0) && (@gamble2 < 3))
set @item,2506;
else if ((@gamble2 > 2) && (@gamble2 < 5))
@@ -373,6 +373,8 @@ comodo.gat,219,160,3 script Kachua 91,{ set @item,2508;
else if ((@gamble2 > 7) && (@gamble2 < 11))
set @item,2507;
+ else if (@gamble2 == 11)
+ set @item,2523;
}
else if ((@gamble > 0) && (@gamble < 101))
set @item,2503;
|