[DiscordArchive] I'm retarded so I'd like to make a character that only levels up by fishing from 1-80. However, fish
[DiscordArchive] I'm retarded so I'd like to make a character that only levels up by fishing from 1-80. However, fish
Archived author: The Janitor • Posted: 2025-07-25T15:26:16.262000+00:00
Original source
I'm retarded so I'd like to make a character that only levels up by fishing from 1-80. However, fishing does not grant experience and you cannot unlock professions before level 5. Would it be possible somehow to enable XP from fishing through the server config?
Archived author: Tereneckla • Posted: 2025-07-25T15:26:37.579000+00:00
Original source
no
Archived author: Tereneckla • Posted: 2025-07-25T15:28:39.084000+00:00
Original source
you could make a module and hook into OnPlayerUpdateFishingSkill to give xp
Archived author: JudgeFae • Posted: 2025-07-25T18:41:08.062000+00:00
Original source
Tbh everything should be done via Eluna. All hail Eluna
Archived author: Tereneckla • Posted: 2025-07-25T18:41:30.437000+00:00
Original source
nah
Archived author: Tereneckla • Posted: 2025-07-25T18:41:43.029000+00:00
Original source
also making a module for xp on profession stuff atm
Archived author: Tereneckla • Posted: 2025-07-25T18:41:43.913000+00:00
Original source
for fun
Archived author: JudgeFae • Posted: 2025-07-25T19:29:53.890000+00:00
Original source
I have this in my recompile shellscript to update modules, but it doesn't actually do anything.
git submodule update --init --recursive
Archived author: JudgeFae • Posted: 2025-07-25T19:30:23.329000+00:00
Original source
Maybe I had AI hallucinate this as something that's doable with 1 line
Archived author: JudgeFae • Posted: 2025-07-25T19:40:43.363000+00:00
Original source
AI did cause that problem but it also fixed it. Here's a real one line you can add to a shell script to update your modules. Assuming the script is run from the root directory of azerothcore
find modules/ -type d -name ".git" -execdir git pull --quiet \;