Skip to content
This repository was archived by the owner on Oct 14, 2025. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,12 @@
// https://youtu.be/jdcT9ogpMwE?t=104 underground
// all on the same z axis

// remove wildy warning if logged in at wildy border https://youtu.be/hiUfg8MsKMo
[proc,wilderness_warning_login]
if (inzone(0_45_54_48_56, 0_52_54_63_63, coord) = true | inzone(0_48_154_56_56, 0_48_154_63_63, coord) = true) {
%wilderness = ^true;
}

[queue,wilderness_warning]
if (%wilderness = ^false) {
%wilderness = ^true;
Expand Down
1 change: 1 addition & 0 deletions data/src/scripts/login_logout/login.rs2
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@ queue(macro_event_login, 0);
~ferment_wines_login;
~thieving_stall_timers_login;
~stat_boost_login; // f2p boost reset
~wilderness_warning_login; // remove wildy warning if logged in at wildy border https://youtu.be/hiUfg8MsKMo

if(inzone(movecoord(^grandtree_jail_coord, 0, 0, -2), movecoord(^grandtree_jail_coord, 3, 0, 2), coord) = true) {
~grandtree_spawn_charlie;
Expand Down