3D Printable Saurians by One Page Rules (2024)

TribesStoreFronTiersFORUMNEWCanvasThe AdventureNEWPhysical

Loading

3D Printable Saurians by One Page Rules (2)3D

Published 2021-01-07T11:23:50+00:00

    3D Printable Saurians by One Page Rules (3)

    3D Printable Saurians by One Page Rules (4)

    3D Printable Saurians by One Page Rules (5)

    3D Printable Saurians by One Page Rules (6)

    3D Printable Saurians by One Page Rules (7)

    3D Printable Saurians by One Page Rules (8)

    3D Printable Saurians by One Page Rules (9)

    3D Printable Saurians by One Page Rules (10)

3D Printable Saurians by One Page Rules (11)

58,322 views

181 collections

45 comments

'+ '

'+ '' + comment.user.username + '' + (comment.user.is_premium?'3D Printable Saurians by One Page Rules (20)':"") + (comment.user.isHobbyHunterPicked ? "3D Printable Saurians by One Page Rules (21)":"") + '' + comment.user.name+' • '+ formatDateToHumanReadable(comment['date_posted'])+source+ ''; if (comment.is_print == true && (comment.print_status == 2 || comment.print_status == 1) ) { //Add a Print subtitle after the posting date for this comment if (buildInModal){ returnData += ''; } else { returnData += '' + ' Community Print' + ''; } } let reply = ''; let textLikes = comment.likes == 1 ? ' Like' : ' Likes'; let likeButton = ''+comment.likes+''+ textLikes +''; let filterCommentsButton = 'Show all comments by '+comment.user.username+''; let dislikeButton = ''+comment.likes+''+ textLikes +''; likeButton = comment.is_liked ? dislikeButton : likeButton; reply = '

'+ likeButton + filterCommentsButton + '

'; returnData += '

' + '' + '' + '

'; return returnData + '

'+ '

'+ '' + replied + ''+ '' + Autolinker.link(escapeHTML(comment.comment)) + '' + '

    ' + attachments + '

' + hiddenPrint + reply + '

'+ '

'; } function filterComments(username){ $([document.documentElement, document.body]).animate({ scrollTop: $("#post-comment-avatar").offset().top - 150 }, 800); $('.comment').css('border-bottom', '0'); $('.comment').hide(); $('.comment[data-user="'+username+'"]').show(); $('.filterLink[data-user="'+username+'"]').replaceWith('Back to all comments'); $('.filterLink.show-all').css('opacity', '1'); } function showAllComments(username){ $('.filterLink[data-user="'+username+'"]').replaceWith('Show all comments by '+username+''); $('.filterLink').css('opacity', '0.6'); $('.comment').show(); } function bindImagePopup() { $('.commentimage').click(function() { const src = $('.commentimage').attr('src').replace('url(', '').replace(')', '').replace('comment-thumbnails', 'comment'); try { $(document).foundation() } catch(err) { window.open(src, '_blank'); } $.fancybox({ 'padding': 0, 'autoScale': true, 'width': 580, 'height': 580, 'href': src }).trigger('click'); }); } function escapeHTML(s, forAttribute) { const ESC_MAP = { '&': '&', '<': '<', '>': '>', '"': '"', "'": ''' }; forAttribute = (typeof forAttribute !== 'undefined') ? forAttribute : true; s = s.replace(forAttribute ? /[&<>'"]/g : /[&<>]/g, function(c) { return ESC_MAP[c]; }); return s.replace(/(?:\r\n|\r|\n)/g, '
'); } Object.size = function(obj) { let size = 0; for(let key in obj) if(obj.hasOwnProperty(key)) size++; return size; };

3D Printable Saurians by One Page Rules (22)

    Loading comments... 3D Printable Saurians by One Page Rules (23)

    ' + '' + '' ); } else if(commentList.html() === 'Be the first to comment. ') { commentList.html(''); commentList.css('text-align', 'left'); } $('#comment_list').prepend(buildComment(comment, false, comment.collaboration)); $('#attachments_ul').empty(); $('#attachments').empty(); $('#is-print').hide(); $('#prints-options').hide(); $('#formnewcomment').val(''); const commentsCounter = $('.noComments'); commentsCounter.text(parseInt(commentsCounter.first().text()) + 1); } } }).always(function() { $('button').attr('disabled', false); $('#post-comment-loader').hide(); }); }); $('.ajax-upload-dragdrop').on('click', function() { window.customEventDispatcher.dispatchEvent('SHOW_LOGIN'); }); $('#formnewcomment').on('click', function() { window.customEventDispatcher.dispatchEvent('SHOW_LOGIN'); }); }setTimeout(initComments, '500') function appendCommentImage(image) { $('#attachments').append(''); $('#attachments_ul').append( '
  • ' + '3D Printable Saurians by One Page Rules (24)' + '' + '' + '' + '
  • ' ); if($('[id="attachments_ul"] li').length === 1) { $('#is-print').show(); $.ajax({ url: '/prints/create-prints-form/148583' }).done(function(data) { const options = $('#prints-options'); options.empty(); options.append(data); options.show(); }); } } function changeIsPrint(checkbox) { const options = $('#prints-options'); checkbox.checked ? options.show() : options.hide(); } function deleteCommentImage(uid) { $('[id="' + uid + '"]').parent().remove(); $('[id="attachments"] option[value="' + uid + '"]').remove(); if($('[id="attachments_ul"] li').length === 0) { $('#is-print').hide(); $('#prints-options').hide(); } $.ajax({ url: '/api/v2/image?upload_id=XXX'.replace('XXX', uid), method: 'DELETE' }); }

    3D Printable Saurians by One Page Rules (25)3D

    Published 2021-01-07T11:23:50+00:00

    One Page Rules

    @onepagerules

    741 objects

    22,780Followers

    Send Message to onepagerules

    Please enter the code below

    3D Printable Saurians by One Page Rules (26)

    Send Message

    ×

    See your Inbox

    ×

    '; } $('#sendMessage').on('click',function(){ $('#result').html("").hide(); var message = $('#messagearea').val(); var captcha = $('#captchaAnswer').val(); if(message == ""){ $('#result').html(showMessage("Whoops! Message can not be empty!",'alert')).show(); return } if(captcha == ""){ $('#result').html(showMessage("Please enter to captcha code!",'alert')).show(); return } // Get some values from elements on the page: var username = 'onepagerules'; var url = "/users/message"; // Send the data using post var csrfToken = $('.csrf_token').val(); var captcha = $('#captchaAnswer').val(); $.ajax({ url: url, type: 'POST', data: { _csrf_token: csrfToken, captcha:captcha, content: message, username: username } }).done(function(data) { $('#messagearea').val(""); $('#captchaAnswer').val(""); $('#messageresult').html(showMessage(data,'success')).show(); $('#secondModal').foundation('reveal','open'); $('#captcharefresh').click(); }).fail(function(data) { $('#result').html(showMessage(data.responseJSON.error_description,'alert')).show(); }); }); }); $('.btn-message').hover(function(){ $('.btn-message i').addClass('color-mmfgreen'); }, function(){ $('.btn-message i').removeClass('color-mmfgreen'); });

    Add Files To Cart $24.00

    +VAT/Sales Tax (if applicable)

    92% goes to the Creator

    (excluding payment processing fees)

    695 45 Add to Collection

    Description

    Get 50% off on Patreon: patreon.com/onepagerules

    Save BIG by buying this bundle, which comes with all of these models:

    -1Saurian Veteran
    - 13 Saurian Warriors
    -9 Raptor Riders

    Files are fully pre-supported!

    License

    MyMiniFactory Digital File Store License Standard Digital File Store License

    Technical Information

    Date published 07/01/2021
    Price $24.00
    Support Free YES

    More Information

    Object Parts

    Interesting objects for you

    ×

    181 collections where you can find Saurians - Release #1 byonepagerules

    ×

    MYMINIFACTORY

    AboutHow it worksRelease LogHelp / FAQForumBlogCareersInvestor RelationsIntellectual Property

    MAKERS

    For MakersBrowse ContentPhysical MiniaturesScan The WorldThe AdventureCustomizer

    CREATORS

    Design CompetitionsBecome a Premium CreatorCreator Portal

    PARTNERS

    MuseumsAPIAdvertize with us

    Copyright, MyMiniFactory, 2024 / 2 Berners Road, Islington, London, N1 0PW, United Kingdom /Privacy Policy / /Sitemap

    3D Printable Saurians 
            by One Page Rules (2024)
    Top Articles
    Latest Posts
    Article information

    Author: Golda Nolan II

    Last Updated:

    Views: 5566

    Rating: 4.8 / 5 (58 voted)

    Reviews: 81% of readers found this page helpful

    Author information

    Name: Golda Nolan II

    Birthday: 1998-05-14

    Address: Suite 369 9754 Roberts Pines, West Benitaburgh, NM 69180-7958

    Phone: +522993866487

    Job: Sales Executive

    Hobby: Worldbuilding, Shopping, Quilting, Cooking, Homebrewing, Leather crafting, Pet

    Introduction: My name is Golda Nolan II, I am a thoughtful, clever, cute, jolly, brave, powerful, splendid person who loves writing and wants to share my knowledge and understanding with you.