User:Elevator1512: Difference between revisions

From Skyscraper Wiki
Jump to navigation Jump to search
No edit summary
Tag: Reverted
m (updated code)
Tag: Reverted
Line 11: Line 11:


<code>
<code>
7 days / 20 edits Page Creation Restriction
!contains_any(user_groups, "sysop", "bot") &


action === create
(
(user_age < 604800 /* in seconds = 7 * 24 * 60 * 60 */
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 17:15, 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):

!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") )