Jump to content


Photo

Hi I Need Help Getting A Tracker For My Penguin! I Dont Get How To Get It So Well... Help!


  • Please log in to reply
11 replies to this topic

#1 coolioApenguin

coolioApenguin

    Insider Penguin

  • Members
  • PipPip
  • 16 posts
  • Gender:

Posted 22 July 2012 - 02:46 PM

help plz ::^.^::

#2 frogsambob

frogsambob

    Magnificent Mountaineer

  • Insider Agents
  • 3,171 posts
  • Gender:
  • Club Penguin Username:frogsambob

Posted 22 July 2012 - 03:35 PM

I don't understand what you mean sorry.

gallery_168_459_19701.png

fnxu2s.png

p


#3 Splanky

Splanky

    Magnificent Mountaineer

  • Insider Agents
  • 3,088 posts
  • Gender:
  • Club Penguin Username:ACESxWILD1

Posted 22 July 2012 - 05:02 PM

I don't know exactly how to program trackers, and specifically how they work, I am unsure if it is possible or how difficult it is to program and/or create one.

I don't think you need one. Your penguin is probably not that famous. ;)

Let's eat, grandma!

Let's eat grandma!

Grammar saves lives!


#4 The Doc

The Doc

    FangWasHere

  • Members
  • 10,650 posts
  • Gender:
  • Club Penguin Username:Drpenguin193

Posted 23 July 2012 - 04:35 AM

No Idea! But you can just tell them where you are...
Joshua 24:15
Choose you this day whom ye will serve, Wither it be the gods of which thy fathers served that were on the other side of the flood, or the gods of the ammorites in whom land ye dwell, but as for me and my house, we will serve the Lord.

#5 Tigerman55

Tigerman55

    Subzero Superstar

  • Insider Agents
  • 3,752 posts
  • Gender:
  • Club Penguin Username:Tigerman55

Posted 23 July 2012 - 08:17 AM

I don't get what you're trying to say...

Luke 14:11

"For everyone who exalts himself will be humbled, and he who humbles himself will be exalted."
Fang was here.


#6 belle619

belle619

    Newbie

  • Junior Members
  • Pip
  • 1 posts

Posted 23 July 2012 - 08:39 AM

i cant get any of the trackers to work, for days they just all say same thing... Aunt Artic always shows up as "offline" for me and the other penguin trackers are always "tracking". Is there a specific browser I should be using? I use google chrome.

#7 Tigerman55

Tigerman55

    Subzero Superstar

  • Insider Agents
  • 3,752 posts
  • Gender:
  • Club Penguin Username:Tigerman55

Posted 23 July 2012 - 08:55 AM

i cant get any of the trackers to work, for days they just all say same thing... Aunt Artic always shows up as "offline" for me and the other penguin trackers are always "tracking". Is there a specific browser I should be using? I use google chrome.

For them to work, the administrators need to "Turn them on", which for some trackers they have not done, cause they know the particular famous penguins are not wandering the island at this time.

Luke 14:11

"For everyone who exalts himself will be humbled, and he who humbles himself will be exalted."
Fang was here.


#8 coolioApenguin

coolioApenguin

    Insider Penguin

  • Members
  • PipPip
  • 16 posts
  • Gender:

Posted 03 August 2012 - 11:59 AM

thx anyway ppl but thats not really what i meant but its ok becus i get it now so ya thx

#9 The Doc

The Doc

    FangWasHere

  • Members
  • 10,650 posts
  • Gender:
  • Club Penguin Username:Drpenguin193

Posted 04 August 2012 - 11:57 AM

kk - Cya
Joshua 24:15
Choose you this day whom ye will serve, Wither it be the gods of which thy fathers served that were on the other side of the flood, or the gods of the ammorites in whom land ye dwell, but as for me and my house, we will serve the Lord.

#10 Zootycooner

Zootycooner

    Newbie

  • Junior Members
  • Pip
  • 6 posts

Posted 11 August 2012 - 06:12 PM

I do not under stand why you would make a Club Penguin Tracker for yourself but its your lucky day! I do know how to code PHP, HTML, CSS... Heres the code for a PHP Tracker
index.html:

<html>
<body>

<form action="update.php" method="POST">
Status: <input type="text" name="status"><br><br>
Server: <input type="text" name="server"><br><br>
Room: <input type="text" name="room"><br><br>
Password: <input type="password" name="password"><br><br>
<input type="submit" name="submit" value="Update!">
</body>
</html>

This file is update.php:

<?php

//Write the variables
$submit = $_POST['submit'];
$server = $_POST['server'];
$status = $_POST['status'];
$room = $_POST['room'];
$password = $_POST['password'];

//Check to see if they pressed submit. This if statement means "IF submit has been pressed... Check the rest of the form. Or ELSE ECHO an error."
if ($submit)
{
//Check to see if all fields are filled.
if ($status&&$server&&$room)
{
//Check to see if the password is correct.
if ($password == "PASSWORD HERE") //This can be edited.
{
//Write the image sources.
$tracker = imagecreatefrompng("IMAGE2"); //This is the image WITHOUT any text on it. It MUST be in the same file as index.php and update.php.
$color = imagecolorallocate($tracker, 255, 255, 255); //This is the RGB code for white. If you want something different go to [url][url]http://chir.ag/projects/name-that-color/[/url][/url] to choose another RGB code out of the color wheel.
$font = "BurbankBigRegular-Bold.ttf"; //This is the custom font file. Some hosts may not allow it. This MUST be in the same file as the index.php and the update.php.

//Align and color the text.
imagettftext($tracker, 25, 0, 280, 107, $color, $font, $status);
imagettftext($tracker, 25, 0, 280, 163, $color, $font, $server);
imagettftext($tracker, 25, 0, 270, 210, $color, $font, $room);
//Imagettftext = function.
//$tracker = image file.
//20 = font size.
//0 = text angle (do not edit this).
//250 = how far the text is from the left.
// 115/150/200 = how far the text is from the top.

//Create the final copy of the tracker.
imagepng($tracker, "IMAGE"); //This is the image WITH text.
imagedestroy($tracker);
echo "<b><font face='arial' size='3'>Update Successful! Preview:</font><br>";
echo "<img src='IMAGE'><br>You may need to refresh!<b>";

}
else
echo "1/Error. The password you provided was incorrect. 2/Error. No hackers. 3/Error. No pedophiles";
}
else
echo "Error. You must fill in all fields.";
}
else
echo "Error. You must press submit.";

?>


Here is what I mean by Image and Image2
Image = Your image of the tracker
Image = Copy of the same image

THESE ARE REALLY IMPORTANT!

This may not work on some hosting sites but I suggest X10Hosting.

You will also need a font called BurbankBigRegular-Bold.ttf you will need that for your text...

I hope this works!!

OH NO! Im so sorry about that innp word above! I dont know how that got in there ='( Please forgive me!

#11 Pie6666

Pie6666

    Proud Puffle

  • Members
  • 574 posts
  • Gender:
  • Club Penguin Username:pie6666

Posted 04 September 2012 - 01:22 PM

what innp word?

150px-Perry_signature.jpg

 

 


#12 Lodes159

Lodes159

    Magnificent Mountaineer

  • Members
  • 4,958 posts
  • Gender:
  • Club Penguin Username:Riccowed

Posted 05 September 2012 - 07:58 AM

Read what she said
Hery everyone believe it or not I actully found out about the gallery now (yep its true) I have uploaded 2 pictures already and i ust wanted to say please come have a look at them comment and please tell me if I am doing aything wrong and if you like my pictures.

We can and will make the inpossibe into the possible!




0 user(s) are reading this topic

0 members, 0 guests, 0 anonymous users