-
Notifications
You must be signed in to change notification settings - Fork 73
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(content): Small drop table fixes (#1114)
item name fix shadow warrior drop table. item name fix shadow warrior drop table. monk of zamorak https://oldschool.runescape.wiki/w/Update:F2P_Castle_Wars
- Loading branch information
1 parent
48807fc
commit 1eacbd3
Showing
13 changed files
with
91 additions
and
70 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
[ai_queue3,shadow_warrior] | ||
gosub(npc_death); | ||
if (npc_findhero = false) { | ||
return; | ||
} | ||
|
||
// Default drop from config. | ||
obj_add(npc_coord, npc_param(death_drop), 1, ^lootdrop_duration); | ||
|
||
def_int $random = random(128); | ||
|
||
if ($random < 128) { | ||
// obj_add(npc_coord, adamantite_spear, 1, ^lootdrop_duration); | ||
//} else if ($random < ?) { | ||
// obj_add(npc_coord, black_dagger_p, 1, ^lootdrop_duration); | ||
//} else if ($random < ?) { | ||
// obj_add(npc_coord, black_knife, 1, ^lootdrop_duration); | ||
//} else if ($random < ?) { | ||
// obj_add(npc_coord, black_longsword, 1, ^lootdrop_duration); | ||
//} else if ($random < ?) { | ||
// obj_add(npc_coord, wizards_robe_black, 1, ^lootdrop_duration); | ||
//} else if ($random < ?) { | ||
// obj_add(npc_coord, cosmicrune, 3, ^lootdrop_duration); | ||
//} else if ($random < ?) { | ||
// obj_add(npc_coord, bloodrune, 2, ^lootdrop_duration); | ||
//} else if ($random < ?) { | ||
// obj_add(npc_coord, airrune, 45, ^lootdrop_duration); | ||
//} else if ($random < ?) { | ||
// obj_add(npc_coord, deathrune, 2, ^lootdrop_duration); | ||
//} else if ($random < ?) { | ||
// obj_add(npc_coord, ~randomherb, ^lootdrop_duration); | ||
//} else if ($random < ?) { | ||
// obj_add(npc_coord, coins, 8, ^lootdrop_duration); | ||
//} else if ($random < ?) { | ||
// obj_add(npc_coord, mithril_bar, 1, ^lootdrop_duration); | ||
//} else if ($random < ?) { | ||
// obj_add(npc_coord, weapon_poison, 1, ^lootdrop_duration); | ||
//} else if ($random < ?) { | ||
// obj_add(npc_coord, ~randomjewel, ^lootdrop_duration); | ||
} | ||
// TODO drop table % |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters