Skip to content
View in the app

A better way to browse. Learn more.

Tip.It Forum

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

GrandZephyr

Members
  • Joined

  • Last visited

Everything posted by GrandZephyr

  1. Hi CwazyCasper, thank you for the submission. I've moved it to forum Website Updates & Corrections subforum, Quests, and will let a quest editor know to have a look at it Thanks again.
  2. <*Looks at their side-profile...*> :blink: Uh, Peter, why does it now say "Status: Hide" when trying to pick that, both over there on the side and on the main profile page??? :wacko: This one gets the feeling that this new hiding option will be completed post-upgrade? :huh: ~Mr. D. V. "This one's feeling insanely confused..." Devnull Alright, guess we go back to the prior solution? Greasemonkey FTW! (really wish MageUK's change would have fixed things, DARN IPB!) // ==UserScript== // @name Runescape Status Remover // @namespace rs_status_remover // @description This script will add a "Remove" option to the pulldown menu of RuneScape statuses on the tip.it forum user's edit profile page // @include http://forum.tip.it/index.php?app=core&module=usercp&tab=members* // @require http://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js // ==/UserScript== // Initialize our jQuery once the page is ready $(document).ready(function() { // Add the "Remove" option to the RuneScape Status pulldown menu $('#field_13').append('<option value="aValueNotInDropDownMenuWillRemoveStatusFromProfile">Remove</option>'); });
  3. Paul, rather then doing so many imports, couldn't you just import once and then make references? https://docs.google.com/spreadsheet/ccc?key=0Aix-FOWMTZEodHR0cXM5aHFYNnhYZjdXb2laWDUyeXc
  4. This can easily be done. Since IPB will ignore fields that are empty, Admins just need to add an option to the pulldown menu with a null value. [spoiler=Obsolete | see post below by MageUK] They could just change the value of "n" for none to "" for none, and from then on people who choose the "none" option won't have a RuneScape Status portion in their profile or miniprofile at all. Here is a greasemonkey script that uses jQuery to add a "Remove" option to the pulldown menu. // ==UserScript== // @name Runescape Status Remover // @namespace rs_status_remover // @description This script will add a "Remove" option to the pulldown menu of RuneScape statuses on the tip.it forum user's edit profile page // @include http://forum.tip.it/index.php?app=core&module=usercp&tab=members* // @require http://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js // ==/UserScript== // Initialize our jQuery once the page is ready $(document).ready(function() { // Add the "Remove" option to the RuneScape Status pulldown menu $('#field_13').append('<option value="">Remove</option>'); }); Cheers. :thumbsup: Credit to dsavi for the idea. http://forum.tip.it/topic/258387-tipit-forum-status/page__view__findpost__p__4118149
  5. May I suggest functionality for the quests page similar to what is achieved using this Greasemonkey script? This way as soon as a player checkmarks a quest as done, it is hidden and the questid is added to the quests_completed cookie. // ==UserScript== // @name TIPQ // @namespace TIPQ // @description TIPQ Hider // @include http://open.tip.it/quests // @require http://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js // ==/UserScript== //Add the functions for cookie handling function setQuestCookie(questid,action) { var index,key,contents,exists=0 var cookies=document.cookie.split(";"); for (index=0; index<cookies.length; index++) { key=cookies[index].substr(0,cookies[index].indexOf("=")); key=key.replace(/^\s+|\s+$/g,""); contents=cookies[index].substring(cookies[index].indexOf("=")+1,cookies[index].length); if (key=="quests_completed") { exists = 1; //cookie exists, we found it contents = unescape(unescape(contents)); //When a quest is checked, we will add that questid to the cookie if(action == "add") { contents=contents.concat(questid+";"); } //When a quest is unchecked, we will remove that questid from the cookie if(action == "remove") { contents=contents.replace(questid+";",""); } } } if(exists == 0) // we did not find the cookie { contents=questid+";"; } //Check if there are any quests hidden, if not remove the cookie if(contents != "") { var expiration=new Date(); expiration.setDate(expiration.getDate() + 31536000); contents = escape(escape(contents)) + "; expires="+expiration.toUTCString(); } else { contents = "; expires=-1"; } document.cookie="quests_completed=" + contents; } // Initialize our jQuery once the page is ready $(document).ready(function() { // When a checkbox is changed, hide it if it was checked, or unhide it if it was unchecked. $(':checkbox').change(function() { if(this.checked){ $(this).parent().parent().addClass("members"); $(this).parent().parent().hide(); setQuestCookie(this.value,"add"); } else { $(this).parent().parent().removeClass("members"); $(this).parent().parent().show(); setQuestCookie(this.value,"remove"); } }); });
  6. URL: http://open.tip.it/pages/view/general_guides.htm Browser: Firefox 10.0.2 Description: The words "Capes - Other" are over the top of the cape image. Screenshot:
  7. Gotta admit I found the Kebbit spike to be a little phallic.
  8. I don't know if this will resolve your issue, but after looking around a bit about XFIRE and BF3 interaction, I found this page and thought you might want to give it a look. http://forums.steampowered.com/forums/showthread.php?t=2224117 Good luck.
  9. You may also want to make sure your Java is up to date: https://www.java.com/
  10. Could the name of the item, quest, shop or monster be added to the title bar of the page? i.e; Change Tip.It RuneScape Help :: Bestiary :: The Original RuneScape Help Site! to Tip.It RuneScape Help :: Bestiary :: %monstername% :: The Original RuneScape Help Site! Change Tip.It RuneScape Help :: RuneScape Item Database :: The Original RuneScape Help Site! to Tip.It RuneScape Help :: Runescape Item Database :: %itemname% :: The Original RuneScape Help Site! Change Tip.It RuneScape Help :: RuneScape Quest Database :: The Original RuneScape Help Site! to Tip.It RuneScape Help :: Runescape Quest Database :: %questname% :: The Original RuneScape Help Site! and Change Tip.It RuneScape Help :: RuneScape Shop Database :: The Original RuneScape Help Site! to Tip.It RuneScape Help :: RuneScape Shop Database :: %shopname% :: The Original RuneScape Help Site!
  11. I'm p2p, but I wouldn't mind coming f2p to dungeon with you sometime. :) My f2p combat level is 96.
  12. Thanks for the input obfuscator. :thumbsup: I apologize if my previous post wasn't clear, and it may not have been, I was running on fumes. What I meant with my suggestion was to supplement the user-agent code with a way to flag the content as mobile vs. desktop based on if the requested hostname was mobile.tip.it or path was /mobile/. Without knowing the specific complications associated with the framework, I can't offer a 100% solution. One easily guessed complication is the URLs for links either being absolute "h**p://open.tip.it/path/to/file" or relative to the root "/path/to/file". Either of those will easily break the two suggestions I offered. My previous post was a shot in the dark, and I actually hope I didn't offend anyone with it. Once again, I appreciate everyone's input. If I think of something else to contribute I'll post. Cheers! :thumbsup:
  13. Ok, sounds like there are a few reasons not to make mobile available on desktop, yet. Although, it's good to hear that it may be considered in the future. I'm not sure what backend code issue(s) you will run into, other then absolute urls for example. Not sure if these ideas have been considered as workarounds, and I understand there are reasons they may not be possible. 1) .htaccess rewrites to spoof /mobile/ folder to the root folder and have that checked at the same time you check the useragent to determine if they need mobile site 2) using a mobile.tip.it/ subdomain and have that checked at the same time you check the useragent to determine if they need mobile site Again, I am sure there are reasons these may not work, but just wanted to throw the idea(s) out there.
  14. Thank you for wanting to help! Your contributions will be greatly appreciated.
  15. My thoughts are below, but I think this is all going to end up needing the input of a specific individual, as described in tripsis' post. Please don't be mad at me for posting tripsis :unsure: My thoughts I believe Randox summed it up pretty well. Although, I don't agree with the motive of making mobile available for desktop users because of their limited system specifics such as CPU/Memory, I support having a slimmer version. Specifically, I like the idea for the purpose of increasing usability when considering a situation like side-by-side windows of Tip.it guide and Runescape game. I believe I read a post from someone who brought up the consideration of work needed for "official" support to handle difficulties that may arise, if the intention is to make the mobile version also work as a slim version for desktop users. This idea definitely has people thinking. Thanks for the idea Devnull! :thumbup: Tid-bit supporting the increase of usability Tid-bit against motive
  16. I support an in-game mail system that will allow you to send items as well as offline text messages. If this was to be implemented I would like to use mailboxes or banks to get the items/messages. (On a side note I wish they would also let you write "books" in-game as an item that you can trade off)
  17. I liked this guide very much, Goodjob!
  18. Hello, please try the following: In the menu you show in the picture, please right-click on the microphone and choose properties. Go to the "Levels" tab. Click & Drag the Microphone option to 100. Make sure the microphone is unmuted. (make sure the image to the right of the slider doesn't have a (\) next to it). Click Ok. Re-test using the voice recorder. Let us know how it worked for you.
  19. I played EQII when it was subscription only, and stopped months before it had its free-to-play component. The game is good. I quit due to IRL family drama bleeding into the game. I haven't tried out the free-to-play, but I wouldn't tell anyone not to.
  20. Glad to have the support Devnull! Waiting for the forum update is not a problem. I was just making sure if it wasn't already on the to-do list that someone knows about it now. :) For now I might just greasemonkey with it. If I do, I'll have the codes in my blog. As you can see in the pic, large pics ARE resized, but they are being resized for the width of the blog/thread. Cheers.

Important Information

By using this site, you agree to our Terms of Use.

Account

Navigation

Search

Search

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.