Discover Habbo's history
Treat yourself with a Secret Santa gift.... of a random Wiki page for you to start exploring Habbo's history!
Happy holidays!
Celebrate with us at Habbox on the hotel, on our Forum and right here!
Join Habbox!
One of us! One of us! Click here to see the roles you could take as part of the Habbox community!


Page 1 of 2 12 LastLast
Results 1 to 10 of 14
  1. #1
    Join Date
    Nov 2006
    Location
    Liverpool/Manchester
    Posts
    2,457
    Tokens
    0

    Latest Awards:

    Default habbo text generator...

    any good ones post them here plz +rep to all good ones, please do not repeat
    Joe


  2. #2
    Join Date
    Feb 2007
    Posts
    1,036
    Tokens
    0

    Latest Awards:


  3. #3
    Join Date
    Jun 2005
    Location
    leeds
    Posts
    3,889
    Tokens
    1,603

    Latest Awards:

    Default

    habbotools.de That one is good

  4. #4
    Join Date
    Feb 2007
    Posts
    1,036
    Tokens
    0

    Latest Awards:

    Default

    was mine any good then?

  5. #5
    Join Date
    Aug 2006
    Location
    United Kingdom
    Posts
    3,843
    Tokens
    1,121

    Latest Awards:

    Default

    Its the same thing... AllHabbo Had one.

  6. #6
    Join Date
    Dec 2006
    Location
    Doncaster, UK
    Posts
    4,244
    Tokens
    0

    Latest Awards:

    Default

    Hey merseymusic,

    I think the way you should approach this is by using a great text generator located at www.habbotimes.de - if you can navigate your way around the site you'll easily find it.

    If you fail to find it; it is indeed located here: http://www.habbotimes.de/?s=63

    It is german but it's easily understandable.

    Thanks,
    Xeoro.
    A collection of forum users' views on obesity
    Quote Originally Posted by mynameisjake View Post
    sounds good
    Quote Originally Posted by Stephen View Post
    Just google it.
    Quote Originally Posted by jesus View Post
    jesus christ
    Quote Originally Posted by Alexicles. View Post
    It will probably soon go away.

  7. #7
    Join Date
    Aug 2005
    Location
    London
    Posts
    9,773
    Tokens
    146

    Latest Awards:


  8. #8
    Join Date
    Apr 2005
    Location
    North Carolina, USA
    Posts
    4,535
    Tokens
    0

    Latest Awards:

    Default

    PHP Code:
    <?   
    $pos 
    '10'
    $fonts['2'] = '2'
    $fonts['1'] = 'blah'
    $fonts['groot'] = 'groot';
    $fonts['love'] = 'love';
    if(
    $_GET[font] == "1") {
    define("height"20); 
    }
    if(
    $_GET[font] == "groot") {
    define("height"43); 
    }
    if(
    $_GET[font] == "love") {
    define("height"34); 
    }
      if(!
    function_exists('str_split')){ 
       function 
    str_split($string,$split_length=1){ 
           
    $count strlen($string);  
           if(
    $split_length 1){ 
               return 
    false;  
           } elseif(
    $split_length $count){ 
               return array(
    $string); 
           } else { 
               
    $num = (int)ceil($count/$split_length);  
               
    $ret = array();  
               for(
    $i=0;$i<$num;$i++){  
                   
    $ret[] = substr($string,$i*$split_length,$split_length);  
               }  
               return 
    $ret
           }      
       }  
    }
      if(
    preg_match("/^[a-zA-Z0-9 ]{0,30}$/"$_GET['message']) && !empty($_GET['message'])) { 
        
    $chars str_split(str_replace(' ''_'$_GET['message'])); 
      } else { 
        
    $chars str_split('Invalid_Message'); 
      } 

      
    // Assign font variable 
      
    $fontDirectory $fonts[$_GET['font']]; 
      if(
    $fontDirectory == ''$fontDirectory 'test'

      
    // Count size and create images 
      
    foreach($chars as $char) { 
        
    $cl $fontDirectory.'/'.$char.'.gif'
        
    $charsImgs[] = @imagecreatefromgif($cl); 
        @list(
    $width) = @getimagesize($cl) or exit; 
        
    $charsWidth[] = $width
        
    $imgWidth $imgWidth+$width
      } 

      
    // Create and merge final image 
      
    $imgWidth = ($pos*2)+$imgWidth
      
    $img = @imagecreate($imgWidthheight); 
      
    $bg = @imagecolorallocate($img255255255); 
      foreach(
    $charsImgs as $charsImg) { 
        
    $width array_shift($charsWidth); 
        @
    imagecopymerge($img$charsImg$pos000$widthheight100); 
        
    $pos $pos+$width
      } 

      
    header("Content-type: image/gif"); 
      @
    imagegif($img); 
      @
    imagedestroy($img); 
      exit; 
    ?>
    have a folder with all the letters and define them in the $fonts variable.

  9. #9
    Join Date
    Feb 2007
    Posts
    1,036
    Tokens
    0

    Latest Awards:

    Default

    Quote Originally Posted by Xeoro View Post
    Hey merseymusic,

    I think the way you should approach this is by using a great text generator located at www.habbotimes.de - if you can navigate your way around the site you'll easily find it.

    If you fail to find it; it is indeed located here: http://www.habbotimes.de/?s=63

    It is german but it's easily understandable.

    Thanks,
    Xeoro.
    basically what i posted.

  10. #10
    Join Date
    Aug 2006
    Location
    Manchester, UK
    Posts
    2,016
    Tokens
    141
    Habbo
    florx

    Latest Awards:

    Default

    Quote Originally Posted by Dentafrice View Post
    PHP Code:
    <?   
    $pos 
    '10'
    $fonts['2'] = '2'
    $fonts['1'] = 'blah'
    $fonts['groot'] = 'groot';
    $fonts['love'] = 'love';
    if(
    $_GET[font] == "1") {
    define("height"20); 
    }
    if(
    $_GET[font] == "groot") {
    define("height"43); 
    }
    if(
    $_GET[font] == "love") {
    define("height"34); 
    }
      if(!
    function_exists('str_split')){ 
       function 
    str_split($string,$split_length=1){ 
           
    $count strlen($string);  
           if(
    $split_length 1){ 
               return 
    false;  
           } elseif(
    $split_length $count){ 
               return array(
    $string); 
           } else { 
               
    $num = (int)ceil($count/$split_length);  
               
    $ret = array();  
               for(
    $i=0;$i<$num;$i++){  
                   
    $ret[] = substr($string,$i*$split_length,$split_length);  
               }  
               return 
    $ret
           }      
       }  
    }
      if(
    preg_match("/^[a-zA-Z0-9 ]{0,30}$/"$_GET['message']) && !empty($_GET['message'])) { 
        
    $chars str_split(str_replace(' ''_'$_GET['message'])); 
      } else { 
        
    $chars str_split('Invalid_Message'); 
      } 

      
    // Assign font variable 
      
    $fontDirectory $fonts[$_GET['font']]; 
      if(
    $fontDirectory == ''$fontDirectory 'test'

      
    // Count size and create images 
      
    foreach($chars as $char) { 
        
    $cl $fontDirectory.'/'.$char.'.gif'
        
    $charsImgs[] = @imagecreatefromgif($cl); 
        @list(
    $width) = @getimagesize($cl) or exit; 
        
    $charsWidth[] = $width
        
    $imgWidth $imgWidth+$width
      } 

      
    // Create and merge final image 
      
    $imgWidth = ($pos*2)+$imgWidth
      
    $img = @imagecreate($imgWidthheight); 
      
    $bg = @imagecolorallocate($img255255255); 
      foreach(
    $charsImgs as $charsImg) { 
        
    $width array_shift($charsWidth); 
        @
    imagecopymerge($img$charsImg$pos000$widthheight100); 
        
    $pos $pos+$width
      } 

      
    header("Content-type: image/gif"); 
      @
    imagegif($img); 
      @
    imagedestroy($img); 
      exit; 
    ?>
    have a folder with all the letters and define them in the $fonts variable.
    + rep for the code but i cant get it to work (im a n00b) lol
    Last edited by Florx; 07-03-2007 at 09:08 PM. Reason: Didnt read right :(

Page 1 of 2 12 LastLast

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •