User:Elevator1512: Difference between revisions

From Skyscraper Wiki
Jump to navigation Jump to search
m (updated code)
Tag: Reverted
No edit summary
Tag: Reverted
Line 6: Line 6:
YouTube Channel: [https://www.youtube.com/channel/UClg0Kkor3GtD-V0rTm5Mtsg/videos Elevator1512 Productions]
YouTube Channel: [https://www.youtube.com/channel/UClg0Kkor3GtD-V0rTm5Mtsg/videos Elevator1512 Productions]


<!-- Please do not edit below this line -->
Currently testing abuse filter code for an upcoming filter blocking most IP page creations (with exceptions from trusted IP addresses w/ good page contributions). Check [[MediaWiki talk:Abusefilter]] if you have suggestions there.
 
Currently testing abuse filter code for an upcoming filter blocking most IP page creations (with exceptions from trusted IP addresses w/ good page contributions):
 
<code>
!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")
)
 
</code>

Revision as of 22:10, 15 March 2024

This user is legitimate.
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). Check MediaWiki talk:Abusefilter if you have suggestions there.