Skip to content

Commit c5de791

Browse files
authored
Barbarians yelling YYEEEEEAAARRRRGGHHHH!!! (#506)
* Added barbarians * Updated barbarians
1 parent c712097 commit c5de791

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
package game.combat.npcHooks
2+
3+
import api.combat.npc.NpcCombatHandler.combat
4+
import api.predef.*
5+
6+
// Barbarians in Barbarian Village
7+
combat(3246, 3247, 3248, 3249, 3250, 3251, 3252, 3253, 3255, 3256, 3257, 3258, 3259, 3260, 3261, 3262, 3263) {
8+
attack {
9+
melee {
10+
if (rand(36) < 8) {
11+
npc.speak("YYEEEEEAAARRRRGGHHHH!!!");
12+
}
13+
it
14+
}
15+
}
16+
}

0 commit comments

Comments
 (0)