User:Elevator1512: Difference between revisions
Jump to navigation
Jump to search
Elevator1512 (talk | contribs) No edit summary Tag: Reverted |
Elevator1512 (talk | contribs) m (updated code) Tag: Reverted |
||
Line 11: | Line 11: | ||
<code> | <code> | ||
!contains_any(user_groups, "sysop", "bot") & | |||
action === | ( | ||
action == "create" & | |||
page_namespace == 0 & | |||
user_editcount < 20 | page_age == 0 & | ||
& | user_age < 604800 & /* in seconds = 7 * 24 * 60 * 60 */ | ||
user_editcount < 20 & | |||
!ip_in_range(user_name, "2601:983:281:2160:0:0:0:0/64") | !ip_in_range(user_name, "2601:983:281:2160:0:0:0:0/64") | ||
) | |||
</code> | </code> |
Revision as of 16:15, 15 March 2024
They have been confirmed as a good user to this Wiki. |
Elevator1512 Productions here. Always looking to help Skyscrapersim with elevator tours and more!
Also one of the current Admins of the Skyscrapersim wiki and helping out with the wiki management!
YouTube Channel: Elevator1512 Productions
Currently testing abuse filter code for an upcoming filter blocking most IP page creations (with exceptions from trusted IP addresses w/ good page contributions):
!contains_any(user_groups, "sysop", "bot") &
(
action == "create" &
page_namespace == 0 &
page_age == 0 &
user_age < 604800 & /* in seconds = 7 * 24 * 60 * 60 */
user_editcount < 20 &
!ip_in_range(user_name, "2601:983:281:2160:0:0:0:0/64")
)