mirror of
https://github.com/mod-playerbots/mod-playerbots.git
synced 2026-01-13 09:07:19 +00:00
### Update :Thank you to @notOrrytrout from prompting me to work on this. Its been a huge learning experience. With @notOrrytrout I started working on enabling bot fishing with master, but also on their own. The first commit didnt crash, showing that it was possible to have a bot cast when master does. Currently it compiles but crashes when you try to fish with a bot in the group, whether the bot has fishing or not. It makes me think that the check in FishingValues is broken somehow, but I cant figure out how. --------- Co-authored-by: bash <31279994+hermensbas@users.noreply.github.com>
16 lines
735 B
SQL
16 lines
735 B
SQL
DELETE FROM ai_playerbot_texts WHERE name IN ('no_fishing_pole_error');
|
||
DELETE FROM ai_playerbot_texts_chance WHERE name IN ('no_fishing_pole_error');
|
||
|
||
INSERT INTO ai_playerbot_texts (id, name, text, say_type, reply_type, text_loc1, text_loc2, text_loc3, text_loc4, text_loc5, text_loc6, text_loc7, text_loc8) VALUES
|
||
(1736, 'no_fishing_pole_error', "I don't have a Fishing Pole", 0, 0,
|
||
"낚싯대가 없습니다",
|
||
"Je n’ai pas de canne à pêche",
|
||
"Ich habe keine Angelrute",
|
||
"我沒有釣魚竿",
|
||
"我没有钓鱼竿",
|
||
"No tengo una caña de pescar",
|
||
"No tengo una caña de pescar",
|
||
"У меня нет удочки");
|
||
|
||
INSERT INTO ai_playerbot_texts_chance (name, probability) VALUES ('no_fishing_pole_error', 100);
|