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.

JoeDaStudd

Members
  • Joined

  • Last visited

Everything posted by JoeDaStudd

  1. What browser are you using? If your using IE try using Firefox and locking it down using NoScript and ad blocker (according to the RS rules you shouldn't block any adds on the site...). I've not had more then 5 pieces of ad/spyware on my pc since changing to FireFox. Note I scan once a week.
  2. Did you even read the Description of the video? It states they are using a Mac, not wii and are just using the Wiimote as a Mouse.
  3. Try cleaning out the cache and temp internet files.
  4. Personally I've used a fair few html editors, both WYSIWYG and text based ones. My personal favourite WYSIWYG is Dreamweaver as it supports php much better then any other WYSIWYG editor I've used. Not to mention the ability to be really lazy with your coding and file transfers. Text editing wise I use Notepad++ as it allows me to edit the highlighters and word lists easily. If you don't want to pay for dreamweaver or can't afford it the second best program is NVU.
  5. You could always try using Audacity to convert them. You will need to download Audacity and the lame mp3 extension, but once its set up you can convert and edit 99% of music files.
  6. Its a very bad way to level cooking... great for fishing though. The exp per fish is low making it take forever to cook them all to get the 99.
  7. to added to cem22lp's post. Private Sub Button1_Click() 'Declare your variables Dim MonsterExp as integer Dim Amount as integer Dim TotalExp as double 'Check they have only entered numbers in the textboxes if isnumeric(textbox1.text) and isnumeric(textbox2.text) then MonsterExp = textbox1.text Amount=textbox2.text TotalExp=(4 x MonsterExp)*Amount textbox3.text=MonsterExp else msgbox("You must only enter numbers into the textboxes") End if End Sub If you add a picture box to the form and then double click the picture box it should give the option to add a image to the picture box
  8. If you press F11 it puts the IE window to full screen mode which will remove the tool bars.
  9. I wrote the code in a matter of minutes a while back. I only created it as a mini project (it failed due to my lack of web host). The code does work, but your right it does need rewriting. When I finally get my web host I'll rewrite all the code and the mysql db. Thanks for the heads up on the cURL, I'll have a look into it.
  10. A while back I looked at how to code the dynamic sigs. The basic is to parse the lite highscore values into a table. Then from this data write over a image with the data. You then need to update the values every hour or so to ensure the sig is dynamic. [hide=My code]Code for setting up a sig <?php //Variables $UserName=strtolower($_GET['UserName']); $skills[0]="Overall"; $skills[1]="Attack"; $skills[2]="Defence"; $skills[3]="Strength"; $skills[4]="Hitpoints"; $skills[5]="Range"; $skills[6]="Prayer"; $skills[7]="Magic"; $skills[8]="Cooking"; $skills[9]="Woodcutting"; $skills[10]="Fletching"; $skills[11]="Fishing"; $skills[12]="Firemaking"; $skills[13]="Crafting"; $skills[14]="Smithing"; $skills[15]="Mining"; $skills[16]="Herblore"; $skills[17]="Agility"; $skills[18]="Thieving"; $skills[19]="Slayer"; $skills[20]="Farming"; $skills[21]="Runecrafting"; $skills[22]="Hunter"; $skills[23]="Construction"; $count=0; $con = mysql_connect("localhost","root",""); if (!$con) { die('Could not connect: ' . mysql_error()); } mysql_select_db("RuneScape", $con); $Found=0; $result=mysql_query("SELECT * FROM usernames"); while($row=mysql_fetch_array($result)) { if ($UserName==$row['UserName']) $Found=1; } if ($Found==1) { echo "Your username already has a sig"; } else { //Add user to usernames table (to avoid duplicates) mysql_query("INSERT INTO usernames (`UserName`) VALUES ('".$UserName."')"); //Get stats $file=fopen("stats.txt","w"); fwrite($file,rtrim(file_get_contents("http://hiscore.runescape.com/index_lite.ws?player=".$UserName.""))); fclose($file); $file=fopen("stats.txt","r"); //while not eof of file get each line and break them up using the "," as seperator, then add them to the database while(!feof($file)) { $str=fgets($file); $temp=explode("," ,$str); mysql_query("INSERT INTO stats (`UserName`,`ID`, `Skill`, `Rank`,`Level`,`Exp`) VALUES ('".$UserName."','".$count."', '".$skills[$count]."', '".$temp[0]."','".$temp[1]."','".$temp[2]."')"); $count++; } fclose($file); $count=0; } mysql_close($con); ?> Code for viewing the sig <?php //Variables $UserName=strtolower($_GET['UserName']); $coords[0]="37,10";//Attack $coords[1]="37,72";//Defence $coords[2]="37,42";//Strength $coords[3]="37,97";//Hitpoints $coords[4]="37,123";//Range $coords[5]="98,42";//Prayer $coords[6]="98,10";//Magic $coords[7]="333,72";//Cooking $coords[8]="333,97";//Woodcutting $coords[9]="273,118";//Fletching $coords[10]="273,42";//Fishing $coords[11]="153,42";//Firemaking $coords[12]="333,42";//Crafting $coords[13]="153,10";//Smithing $coords[14]="273,79";//Mining $coords[15]="96,123";//Herblore $coords[16]="213,42";//Agility $coords[17]="96,97";//Thieving $coords[18]="213,10";//Slayer $coords[19]="333,123";//Farming $coords[20]="96,72";//Runecrafting $coords[21]="273,10";//Hunter $coords[22]="333,10";//Construction $count=0; $con = mysql_connect("localhost","root",""); if (!$con) { die('Could not connect: ' . mysql_error()); } mysql_select_db("RuneScape", $con); $count=0; $result=mysql_query("SELECT * FROM stats WHERE UserName='".$UserName."' ORDER BY `ID`"); //Creating the image $im=imagecreatefrompng("sigbase.png"); $textcolor = imagecolorallocate($im, 255, 255, 255); $greycolor= imagecolorallocate($im, 125, 125, 125); while($row = mysql_fetch_array($result)) { if ($count>0&&$count<=23) { $temp2=explode(",",$coords[$count-1]); imagestring($im,5,$temp2[0],$temp2[1],$row["Level"],$textcolor); } $count++; } mysql_close($con); //Image displaying header("Content-type: image/png"); $font=imageloadfont("testfont.gdf"); $topsideup=imagerotate($im,90,0); imagestring($topsideup,$font,10,10,$UserName,$greycolor); imagestring($topsideup,$font,11,11,$UserName,$textcolor); $im=imagerotate($topsideup,270,0); imagepng($im); imagedestroy($im); ?> Code for updating the sigs from the lite highscores <?php //Variables $UserName=strtolower($_GET['UserName']); $skills[0]="Overall"; $skills[1]="Attack"; $skills[2]="Defence"; $skills[3]="Strength"; $skills[4]="Hitpoints"; $skills[5]="Range"; $skills[6]="Prayer"; $skills[7]="Magic"; $skills[8]="Cooking"; $skills[9]="Woodcutting"; $skills[10]="Fletching"; $skills[11]="Fishing"; $skills[12]="Firemaking"; $skills[13]="Crafting"; $skills[14]="Smithing"; $skills[15]="Mining"; $skills[16]="Herblore"; $skills[17]="Agility"; $skills[18]="Thieving"; $skills[19]="Slayer"; $skills[20]="Farming"; $skills[21]="Runecrafting"; $skills[22]="Hunter"; $skills[23]="Construction"; $count=0; $con = mysql_connect("localhost","root",""); if (!$con) { die('Could not connect: ' . mysql_error()); } mysql_select_db("RuneScape", $con); $result=mysql_query("SELECT * FROM usernames"); while($row=mysql_fetch_array($result)) { $User[$count]=$row["UserName"]; $count++; } $Users=$count; for ($ForCount=0;$ForCount<$Users;$ForCount++) { $result=mysql_query("SELECT * FROM stats WHERE UserName='".$User[$ForCount]."' AND ID='0'"); while($row=mysql_fetch_array($result)) { $TTlvl[$ForCount]=$row['Level']; } //Get stats $file=fopen("stats.txt","w"); fwrite($file,rtrim(file_get_contents("http://hiscore.runescape.com/index_lite.ws?player=".$User[$ForCount]))); fclose($file); $file=fopen("stats.txt","r"); $count=0; $eject=0; //while not eof of file get each line and break them up using the "," as seperator, then add them to the database while(!feof($file)&&$eject==0) { $str=fgets($file); $temp=explode("," ,$str); if ($count==0&&$temp[1]==$TTlvl[$ForCount]) { $eject=1; } else { mysql_query("UPDATE stats SET `Rank`='".$temp[0]."', `Level`='".$temp[1]."', `Exp`='".$temp[2]."' WHERE `ID`='".$count."' AND UserName='".$User[$ForCount]."'"); $count++; } } fclose($file); } ?> The Code to view the sig is simply [/hide] Note The code was made just after the highscores lite was introduced and has been changes for a good while so there are more then likey a few additions/edits which could be made. But its the basic outline. Also I'm thinking about writing the database (to make it less messy) therefore a lot of the code would be changed.
  11. The X1950Pro is a great card for the money. Performance wise it will beat the 7900GS at stock speeds. If you are willing to overclock the 7900GS will win, but if you leave the speeds the same the X1950Pro is the better of the two. I own a X1950Pro (ECI-Express version) and can happily say the card will run all the games I have on at least medium, if not high to maxed out. The only failure I can find with the card is that my card (I seem to have got a bad one, ps I have checked and it is just my card) seems to get a little too hot for my likings). With either card you will need to check if your power supply will be able to handle the card.
  12. I would bank both, sell the hides and use a players alter to bury the bones. You loss half your profit, but gain 3.5 times the prayer exp.
  13. Unholy Book:If you are going to use it its worth every penny, personally I use mine all the time (barrows, slayer tasks, ect) Ava's Accumulator: Yes, as other explained you need a clean path for the effect to work Ring of Wealth:Yes, if your careful you wont need ROL and who doesn't what to get more rare drops?
  14. For your looking for something which will do all the work for you you should be looking for a game creator/tool kit. If your serious about programming then I would recommend that you take a look at a language Lua which is a simple language to get started on, then progress to to C\C++ (if it still looks hard after Lua then try VB then C\C++).
  15. To add to Mercifull'a post. Your laptop may also have a S-Video port which can also be used for the same purpose, the quality will be worse, but more TV's (older ones) have S-Video sockets. [hide=What the ports look like]VGA Port DVI Port S-Video port [/hide]
  16. Ok, a while back I asked about web hosting. I found a host which seems perfect and a domain selling site which too seems perfect however something doesn't seem right. The total cost of the site would be about ̢̮â¬Å¡Ãâã15 per year (including 2 years of the domain being registered to me). This is the hosting site. And I'm planning on buying the domain from this site. Hosting ̢̮â¬Å¡Ãâã0.83 per month (̢̮â¬Å¡Ãâã9.96 per year) exc vat, ̢̮â¬Å¡Ãâã0.97 per month (̢̮â¬Å¡Ãâã11.71 per year) inc vat. The domain name costs ̢̮â¬Å¡Ãâã2.99 for 2 years. So it should total at ̢̮â¬Å¡Ãâã14.70 (2.99+11.71) right? I don't know about you guys, but to me it seems to cheap. What the heck am I over looking? I've checked the reviews and they all seem to be good (for both sites).
  17. Ok, Here my list (soz about it being a day late, I got held up) 2 of these DDR2 (800) 2 x 1gb - $155 each ($310 Total) Same case as you choose - $195 western Digital 500gb Hard drives -$155 each ($310 total) Intel Q6600 (Quad Core) - $349.99 Foxconn 8800GTS 640mb - $499.99 ASUS PBN-SLI Plus Board-$279.99 Totals at $1942.00 It will perform a hell of a lot better then the rig you put together (mainly due to the 8800GTS). I would reccommend droping 2gb of ram and adding this power supply (Corsair HX-620) as your old power supply may struggle. To save a little cash you can replace the 8800GTS with the 320mb version (it performs worse at high resolutions but still a lot better then the 8600GT) which will save you about $100 or so. Also you may want to think about getting 2gb of ram as XP and some versions of vista don't support 4gb of ram (XP's limit is 3gb, not sure on Vista's) Note you will have to buy a OS and some Optical drives if you don't already have them.
  18. For the same money (ok about $50 more) you can get; Q6600 (Quad Core) 4 gb DDr2 (800) ram A 8800GTS 640mb Asus SLI mobo The same case 2 better 500gb hard drives (Western Digital) Which will perform a lot better. If you give be 1 hour I'll make you a full build for $2000. But as it stands just look up the parts on that site.
  19. Its good, but it seems to be lacking a few features, such as; *Pictures of the the items *Any other way of finding a item *The layout of the parts needs to be more like the equipment screen on rs. I'm not going to just state I want this or that. I will help the Tip.it team code the project if they want (because I love programming, Tip.it and RS). I have a far bit of experience with html, php and MySQL (and a few other languages). [hide=How I would go about adding to the calc.]For example if you use the image location from the items database and past it with the rest of the item info across you can change the image on the equiptment page. (eg if(empty($variable)){echo ";} else {echo "'} ) You could add a auto complete field on the find a item page using AJAX. And adjust the layout of the items simply using tables/cells.[/hide]
  20. I use the same method and its the fastest skilling way to get astrals. Note that if you choose to walk back to the bank from the alter you should fill up on flax. It only takes a few seconds and will pay most of the ess you use.
  21. Ok, I'll clear as much as I can up. The legality of roms and isos depend on where your are, as different countries have completely different laws about this. Some will allow you to create backups, others will sue your if you do, and some don't give a damn. As many people will tell you most games consoles can be emulated, but some perform very poorly (mainly the newer the console is the poorer the performance). The best performing emulators are N64 (needs a decent PC) and older. The performance you get on a Xbox emulator would be poor. If you own a Xbox and halo 2 why do you need to play it on PC? Note. the ISO you downloaded is illegal in 90% of the world as you have not made he copy yourself. As for the Halo 2 (for PC) Patch, just do some research and you'll find it.
  22. <?php //Check if there are any messages. if(count($messages) >= 1) { ?> Messages <?php //Print out all messages. foreach($messages as $message) { echo($message.' '); } ?> <?php } //Check if there are any errors. if(count($errors) >= 1) { ?> Errors <?php //Print out all errors. foreach($errors as $error) { echo($error.' '); } ?> <?php } ?> Your email address: Subject: Message: <?php if(isset($emailtext)) echo($emailtext); ?>
  23. X1650Pro Its $10 bucks over your budget ($60) after rebates, but for the money its one of the best cards in the sub $100 mark up. The two you have in your original post the two cards you linked are the same card (ok one has more memory, but the one I choice has a higher core speed then that one.), only the one I selected has a $25 rebate offer. Note you shouldn't really buy open box products as you generally will be missing manuals and leads (which isn't good if you have little experience or if you have a lack of spare leads)
  24. Ok, I've just done some research into your pc. The HP Pavilion supports up to 2 gb of DDR ram (400mhz) and sports a AGP graphics socket. Ok, I'll start on the possible graphics cards; The X1950Pro is nearly the best AGP card around, money wise its best high end AGP card (bang for buck). X1950Pro - $122 The 1650Pro is a mid range, but for the price its definitely worth looking at X1650Pro -$59.99 RAM 1gb stick $45 Now if you want to max your pc out you can buy 2 of those sticks
  25. For a plain image add this to the page header. ( HERE) Note example.gif is the image you want in the background. It should put the image repeated all over the page. For a single copy of the image change the above to this; Really it depends on what you want it to look like and where. PS. there are a few other ways of adding a image, but the above is the closest to what I think you want.

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.