Jump to content

Rook

Administrator
  • Posts

    64,406
  • Joined

  • Last visited

Everything posted by Rook

  1. Hello everyone! As usual, I'd like to keep everyone updated with what's happening with iOSGods for the past few weeks! A lot has happened this time, lots of back-end customisations & we've moved to a new faster server! That's not all, we've made a lot of other improvements and I'd like to list some of the important ones below. 1. New Retired & Coders group. 1.a: The retired group was originally named 'Retired Staff' for @@FuroowHD & @@Raggnar but we noticed that there were some more members who didn't use their rank and demoting them to member felt a bit harsh for all the great work they had done so we created a new group for them to show our appreciation. If the member becomes active again, they'll have to earn their previous rank or another. 1.b: The new Coders group was created as requested by a few members. They have a separate permission set as well as their own Coding section. Cheaters can access the coding section. 2. Lots of modifications! From top to bottom. 2.a: The new search bar. Only visual difference here but I had to include it in the list because it looks badass . You can change the search method by clicking the button next to where the placeholder 'Search...' is. 2.b: New Read/Redirect/Unread icon & hover effect! Removed the images from Board Index and added the icons which IPS4 uses! Also added a nice hover color on the sections which looks very good! We can change the color also if anyone has any suggestions. 2.c: Members online today. The members online today hook is now Collapsed by default. This caused a lot of scrolling on mobile devices viewing the forum as on PC. That's no longer an issue! 2.d: Top online users hook. A nice little hook which shows how much the member has been online for. Got the idea from iPhoneCake. 2.e: Emoticons in status updates. That's all for this. Enjoy! 2.f: Shoutbox modifications! I have removed a few button from the Board Index shoutbox which were useless and caused a double row on iPads/iPhones and replaced them with some nice looking icons! You can still access those buttons if you visit the shoutbox URL or type in "/prefs" in the shoutbox. The shoutbox also displays for guests but they can't use it and it has an overlay which reads "Members Only!". Adding that gave us a little bit of space to expand some blocks in the sidebar which would align with the categories. 2.g: New reputations points bar! I'm sure many of you have noticed it. The color & width of the bar changes depending on the amount of reputation points you have! Currently, Gold color is the maximum. 2.e: Custom fields in User Info Pane. Custom fields now display on the User Info Pane better than ever! If the member has not filled in their fields, the icon will display but greyed out and unclickable. You can now see the custom fields on mobile devices too by tapping on the icon! 2.f: Post content. The size of the post content has been decreased on both themes so you don't have to see all that empty space on each post! 2.g: New UpVote icon! We have replaced the default IPB UpVote image with a font icon! The arrow changes color when hovered and it looks pretty good. 2.h: Shoutbox on mobile! Yes, shoutbox is accessible now on the mobile skin but you can't use it . You can only see what others are chatting. 2.i: Search button on mobile skin. The search button on IP.Mobile has been added to board index which will be very useful for newbies searching for a hack. 2.j: UpVote button on Mobile Skin! By default, IPB has the upvote button on mobile skin but that's only if you're using the Like/Unlike system which we aren't so adding the upvote button on mobile skin was a challenge but we made it so there you have it! It also displays the amount of likes the post/topic has also. 2.k: Quoting the first post is now gone, forever! Yupp! There will be no more first post quotes! Quoting the first post is disabled on all the skins so you won't get spammed with "You have been quoted by x" notifications anymore. 2.l: Christmas & New year theme! We have pimped up the white skin for Christmas and New Year to get you all in that Christmas spirit. 2.m: Many more! There are many more modifications which I will not mention on this topic but you will probably notice them while browsing. Also hope I haven't forgotten to mention some of the important stuff. Some of the modifications you see have not been applied to the dark skin yet. But no worries, they will soon roll out for the dark skin also. If you want to see more features added or bugs needing squashed or have any kind of suggestion at all, you may post your idea in this topic: http://iosgods.com/topic/1333-forum-suggestions/ TL;DR Merry Christmas and a Happy New Year! That's all for now! Thank you for being a part of this community! p.s We're also having a Cheaters & Novice Cheaters giveaway in the Cheaters section so if you're a part of the group, go ahead and join!
  2. Everybody has a Santa hat! ^_^http://i.imgur.com/fdFoUmh.png

    1. Show previous comments  7 more
    2. Rook
    3. FateEX

      FateEX

      Me too. Too bright strains my eyes x_x

    4. Rook

      Rook

      Don't worry. I'll force you all to use the white theme :shifty:

    5. FateEX

      FateEX

      I was wondering why it became white :rofl:

    6. Rook
  3. You can try but if moviebox doesn't open you need to change your date before opening it.
  4. There's also the solution mentioned to prevent this. And yeah, bad quote
  5. This is a badass TV Show but I'm too bored to play the game. Good job though! :thumbsup:
  6. Since the Holidays are here, it's time to spice up your website with some snow falling effect! The simplest way to do it is by inserting this script before the closing </head> tag or another place of your choice. <script> var snowmax=145; var snowcolor=new Array("#aaaacc","#ddddff","#ccccdd","#f3f3f3","#f0ffff"); var snowtype=new Array("Times","Arial","Times","Verdana"); var snowletter="."; var sinkspeed=0.8; var snowmaxsize=20; var snowminsize=12; var snowingzone=1; var snow=new Array(); var marginbottom; var marginright; var timer; var i_snow=0; var x_mv=new Array(); var crds=new Array(); var lftrght=new Array(); var browserinfos=navigator.userAgent; var ie5=document.all&&document.getElementById&&!browserinfos.match(/Opera/); var ns6=document.getElementById&&!document.all; var opera=browserinfos.match(/Opera/); var browserok=ie5||ns6||opera; function randommaker(range) { rand=Math.floor(range*Math.random()) return rand } function initsnow() { if (ie5 || opera) { marginbottom = document.body.scrollHeight marginright = document.body.clientWidth-15 } else if (ns6) { marginbottom = document.body.scrollHeight marginright = window.innerWidth-15 } var snowsizerange=snowmaxsize-snowminsize for (i=0;i<=snowmax;i++) { crds[i] = 0; lftrght[i] = Math.random()*15; x_mv[i] = 0.03 + Math.random()/10; snow[i]=document.getElementById("s"+i) snow[i].style.fontFamily=snowtype[randommaker(snowtype.length)] snow[i].size=randommaker(snowsizerange)+snowminsize snow[i].style.fontSize=snow[i].size+'px'; snow[i].style.color=snowcolor[randommaker(snowcolor.length)] snow[i].style.zIndex=1000 snow[i].sink=sinkspeed*snow[i].size/5 if (snowingzone==1) {snow[i].posx=randommaker(marginright-snow[i].size)} if (snowingzone==2) {snow[i].posx=randommaker(marginright/2-snow[i].size)} if (snowingzone==3) {snow[i].posx=randommaker(marginright/2-snow[i].size)+marginright/4} if (snowingzone==4) {snow[i].posx=randommaker(marginright/2-snow[i].size)+marginright/2} snow[i].posy=randommaker(2*marginbottom-marginbottom-2*snow[i].size) snow[i].style.left=snow[i].posx+'px'; snow[i].style.top=snow[i].posy+'px'; } movesnow() } function movesnow() { for (i=0;i<=snowmax;i++) { crds[i] += x_mv[i]; snow[i].posy+=snow[i].sink snow[i].style.left=snow[i].posx+lftrght[i]*Math.sin(crds[i])+'px'; snow[i].style.top=snow[i].posy+'px'; if (snow[i].posy>=marginbottom-2*snow[i].size || parseInt(snow[i].style.left)>(marginright-3*lftrght[i])){ if (snowingzone==1) {snow[i].posx=randommaker(marginright-snow[i].size)} if (snowingzone==2) {snow[i].posx=randommaker(marginright/2-snow[i].size)} if (snowingzone==3) {snow[i].posx=randommaker(marginright/2-snow[i].size)+marginright/4} if (snowingzone==4) {snow[i].posx=randommaker(marginright/2-snow[i].size)+marginright/2} snow[i].posy=0 } } var timer=setTimeout("movesnow()",50) } for (i=0;i<=snowmax;i++) { document.write("<span id='s"+i+"' style='position:absolute;top:-"+snowmaxsize+"'>"+snowletter+"</span>") } if (browserok) { window.onload=initsnow } </script> You can customise the script above the way you like it and you don't need to know JavaScript to do so. It's pretty readable. ----------------------------- Another way you can add snow to your website is using Schillmania's Snowstorm.js file. It works better than the script above and that's what iOSGods is using atm . More info and how to install: http://schillmania.com/projects/snowstorm/ ----------------------------- jQuery snow: Add this inside your <head> tags: <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.3/jquery.min.js"></script> // Includes jQuery from Google Servers <script type="text/javascript" src="jsnow.js"></script> <script type="text/javascript"> $(function() { $().jSnow(); }); </script> Download jsnow.js from here and upload it to the same path where your index file is or change the file paths to where you saved your jsnow.js file. Example: src="/folder/jsnow.js" ----------------------------- Snowfall effect using images & Javascript: Add this inside the <head> tags: <script type="text/javascript"> imageDir = "path/snow/"; sflakesMax = 65; sflakesMaxActive = 65; svMaxX = 2; svMaxY = 6; ssnowStick = 1; ssnowCollect = 0; sfollowMouse = 1; sflakeBottom = 0; susePNG = 1; sflakeTypes = 5; sflakeWidth = 15; sflakeHeight = 15; </script> <script type="text/javascript" src="path/snow/snow.js"></script> Download this archive and upload the contents inside to your server or to an external server then link it using the script above. The snowflakes here are actual images floating around on your screen so it may cause extra load on browsers and lag weak PCs. They have the best view though, true snowflakes with the edges,
  7. The cheat or MovieBox itself? You might want to install StoreAlert from Cydia to prevent this.
  8. Moved to DIY Cheats & nice find! But what if someone can't download from the cloud? And does this still work? http://iosgods.com/topic/508-moviebox-3-5/ Also, this MovieBox version has no ads but I don't think it's the latest. http://iosgods.com/topic/1900-tutorial-how-to-get-moviebox-on-non-jailbroken-idevice-ios-7-ios-8/
×
  • Create New...

Important Information

We would like to place cookies on your device to help make this website better. The website cannot give you the best user experience without cookies. You can accept or decline our cookies. You may also adjust your cookie settings. Privacy Policy - Guidelines