Posted at 2024-12-02 04:14:04 — Link
May Starclan light your path.
Posted at 2024-12-02 08:25:48 — Link
The mammal catchers use lassos. Idk about you but if I tie a rope around an animal and it starts to fly away you can bet your butt I'm letting go lol
Time: BK-8
I don't check the forums for updates as much as I should, so please don't be afraid to dm me for anything important or time sensitive :)
Posted at 2024-12-11 09:32:48 — Link
I'm writing a simple Oregon trail inspired text quest rn. But I just had to go and make my life more difficult by adding a money system. You wouldnt think that that's hard until you realize the system only let's you increase a variable by ONE AT A TIME
Time: BK-8
I don't check the forums for updates as much as I should, so please don't be afraid to dm me for anything important or time sensitive :)
Posted at 2024-12-11 16:03:17 — Link
Hmm...ive never used text quests but is there a loop feature where you can loop thru the same line of code a certain amount of times?
Chaos is the game and we must play to win.
Posted at 2024-12-12 01:58:58 — Link
Hmm... I don't know. I haven't done that before. :)
May Starclan light your path.
Posted at 2024-12-15 10:21:59 — Link
@Tiger_Claw there isn't one built in, but I kinda half made a function for that.
set [target] to 40
set [loop] to 20
run [subtract]
[Subtract]: //
if [loop] greater than 0
then
decrease [target]
decrease [loop]
run [subtract]
else
/done! Target now equals [target]!/
end
Time: BK-8
I don't check the forums for updates as much as I should, so please don't be afraid to dm me for anything important or time sensitive :)
Posted at 2024-12-15 17:04:06 — Link
that looks pretty good! I've never tried messing around w/ text quests so I'm not sure about the coding format XD
But great job!
Chaos is the game and we must play to win.