I am assuming they aren’t in the game yet but will they be released in june and will kc now count towards it then ?
This! would be amazing to see these.
Yes, it’s keeping track of them. Just no hats yet.
[queue,chompybird_kill]
if (%chompybird_progress = ^chompybird_rantz_gave_player_bow) {
%chompybird_progress = ^chompybird_player_killed_chompy;
return;
}
if(%chompybird_progress < ^chompybird_complete | %chompybird_kills >= 100000) {
return;
}
// https://youtu.be/7ze4YEvQwHM?si=AYdN3zfe62SP4emb&t=215
mes("You scratch a notch on your bow for the chompy bird kill.");
%chompybird_kills = calc(%chompybird_kills + 1);
if(%chompybird_kills = 4000) {
stat_advance(ranged, 300000);
mes("You've been awarded ranged experience for your relentless pursuit of chompies!");
// https://youtu.be/cQ_HQgUodI0?si=NMThWxkpJozNbe57&t=121
~objbox(chompy_bird_obj, "@blu@**** Congratulations! 4000 Chompies! ****|@dre@~ You're an Expert Dragon Archer! ~|This is the highest honour that can be bestowed on any chompy bird hunter.", 250, 0, ^objbox_height);
}
1 Like