[SOURCE] BcStorm - The whole caboodle.

Page 15 of 20 FirstFirst ... 57891011121314151617181920 LastLast
Results 351 to 375 of 485
  1. #351
    Banned rafa95123 is offline
    BannedRank
    May 2009 Join Date
    /home/RaphaLocation
    564Posts

    Re: [SOURCE] BcStorm - The whole caboodle.

    And i can't forget to fix the parameter '@name' of user_pets ...

  2. #352
    Elite Member Harmonic is offline
    Member +Rank
    Jun 2012 Join Date
    149Posts

    Re: [SOURCE] BcStorm - The whole caboodle.

    Can those submitting updates post the updates here instead of compiling it into a new source, helps those working on their own edits. :) Thanks :)

  3. #353
    Sorcerer Supreme Flare is offline
    Member +Rank
    Jun 2012 Join Date
    269Posts

    Re: [SOURCE] BcStorm - The whole caboodle.

    Quote Originally Posted by rafa95123 View Post
    One by one for ^^



    Action Sit: In Menu Bar of Habbo have one option for sit.. I fixed this...
    Sign: The sign keeps popping up all the time.. I fixed this too..
    mind releasing this little fix xD

  4. #354
    son, i am disappointed Squashing is offline
    Grand MasterRank
    Apr 2011 Join Date
    CaliforniaLocation
    683Posts

    Re: [SOURCE] BcStorm - The whole caboodle.

    @Jordynegen

    Trade's works :)

  5. #355
    En Français? Bjork is offline
    Grand MasterRank
    Apr 2007 Join Date
    854Posts

    Re: [SOURCE] BcStorm - The whole caboodle.

    Quote Originally Posted by rafa95123 View Post
    I will post the following fixs:
    *Action Sit;
    *Sign Fix;
    *Navigator Fix;
    *Help Tool;
    *Freeze;
    *Rooms Invisible;
    *Stream.

    But to post these fixs, I need to finish fixing others, as:
    *BattleBall;
    *Groups;
    *Rooms.

    I'm focusing more on fixing the rooms, they are very important ... If you have any bugs or errors to fix, let me know I'll put on my to do list.
    Good Job :D. Can't wait for your release :)

    What's the problem with BattleBall, Rooms and Groups exactly ?

    EDIT: Another Bug not fixed to do. Can't turn on/off Lights WallItem. Think the packet header is missing.
    Last edited by Bjork; 12-01-13 at 09:08 PM.

  6. #356
    Member Herofire is offline
    MemberRank
    Jul 2012 Join Date
    Solothurn, SwitLocation
    91Posts

    Re: [SOURCE] BcStorm - The whole caboodle.

    nice the thrand more fixes ^^

  7. #357
    Elite Member Harmonic is offline
    Member +Rank
    Jun 2012 Join Date
    149Posts

    Re: [SOURCE] BcStorm - The whole caboodle.

    Dude. Spoiler tag that next time, I hate having to scroll through crap :(

  8. #358
    Sorcerer Supreme Flare is offline
    Member +Rank
    Jun 2012 Join Date
    269Posts

    Re: [SOURCE] BcStorm - The whole caboodle.

    well we diden't need all of the expections. little snippets would be nice.. took me a year to get down here to post

  9. #359
    [̲̅$̲̅(̲̅1̲̅)̲̅$ ̲̅] leenster is offline
    Grand MasterRank
    May 2008 Join Date
    KanaadaLocation
    992Posts

    Re: [SOURCE] BcStorm - The whole caboodle.

    Fix for stream images:

    First add this to your htaccess
    PHP Code:
    RewriteRule ^habbo-imaging/head/([^/]+) /habbo-imaging/head.php?figure=$
    In GameClientMessageHandler.cs find
    PHP Code:
    if (((int) row["Type"]) == 0)
                    {
                        
    message.AppendString("http://localhost/heads/look.gif");
                    } 
    Replace that with
    PHP Code:
    if (((int)row["Type"]) == 0)
                    {
                        
    string im ButterflyEnvironment.StreamLink ButterflyEnvironment.GetGame().GetClientManager().GetLookById(Convert.ToUInt32(row["FriendId"])) + ".gif";
                        
    message.AppendString((string)im);
                    } 
    In GameClientManager.cs find

    PHP Code:
    private void GiveAllOnlineCredits(int amount
    Above that add
    PHP Code:
    internal string GetLookById(uint Id)
            {
                
    using (IQueryAdapter adapter ButterflyEnvironment.GetDatabaseManager().getQueryreactor())
                {
                    
    adapter.setQuery("SELECT look FROM users WHERE id = " Id);
                    return 
    adapter.getString();
                }
            } 

    In Habbo-Imaging create a file called head.php and put this PHP code in there
    PHP Code:
    <?php
    header
    ('Content-Type: image/gif');

    $figure str_replace(".gif","",$_GET['figure']);
    $url 'http://habbo.com/habbo-imaging/avatarimage?figure='.$figure;

    $image imagecreatetruecolor(6460);
    imagealphablending($imagefalse);
    $col=imagecolorallocatealpha($image,255,255,255,127);
    imagefilledrectangle($image,0,0,485500,$col);
    imagealphablending($image,true);

    $img_avatar imagecreatefrompng($url);
    imagecopyresampled($image$img_avatar000064606460);
    imagealphablending($image,true);

    imagealphablending($image,false);
    imagesavealpha($image,true);

    imagepng($image);
    imagedestroy($image);

    ?>
    In your emulator configuration
    PHP Code:
    stream.link=http://YOUR_URL/habbo-imaging/head.php?figure= 
    Last edited by leenster; 13-01-13 at 04:56 AM.

  10. #360
    Member Dovis is offline
    MemberRank
    Jan 2011 Join Date
    42Posts

    Re: [SOURCE] BcStorm - The whole caboodle.

    leenster Very Nice

  11. #361
    En Français? Bjork is offline
    Grand MasterRank
    Apr 2007 Join Date
    854Posts

    Re: [SOURCE] BcStorm - The whole caboodle.

    Quote Originally Posted by Dovis View Post
    Error criticalexceptions :

    ....

    1 day , I have 300 Players

    Are you serious? Wrong thread! Use the help thread for this!

    http://forum.ragezone.com/f333/offic...thread-902373/

  12. #362
    Keep your head up. FlyHotel is offline
    Grand MasterRank
    Apr 2011 Join Date
    The NetherlandsLocation
    570Posts

    Re: [SOURCE] BcStorm - The whole caboodle.

    Quote Originally Posted by leenster View Post
    Fix for stream images:

    First add this to your htaccess
    PHP Code:
    RewriteRule ^habbo-imaging/head/([^/]+) /habbo-imaging/head.php?figure=$
    In GameClientMessageHandler.cs find
    PHP Code:
    if (((int) row["Type"]) == 0)
                    {
                        
    message.AppendString("http://habteen.com/heads/look.gif");
                    } 
    Replace that with
    PHP Code:
    if (((int)row["Type"]) == 0)
                    {
                        
    string im ButterflyEnvironment.StreamLink ButterflyEnvironment.GetGame().GetClientManager().GetLookById(Convert.ToUInt32(row["FriendId"])) + ".gif";
                        
    message.AppendString((string)im);
                    } 
    In GameClientManager.cs find

    PHP Code:
    private void GiveAllOnlineCredits(int amount
    Above that add
    PHP Code:
    internal string GetLookById(uint Id)
            {
                
    using (IQueryAdapter adapter ButterflyEnvironment.GetDatabaseManager().getQueryreactor())
                {
                    
    adapter.setQuery("SELECT look FROM users WHERE id = " Id);
                    return 
    adapter.getString();
                }
            } 

    In Habbo-Imaging create a file called head.php and put this PHP code in there
    PHP Code:
    <?php
    header
    ('Content-Type: image/gif');

    $figure str_replace(".gif","",$_GET['figure']);
    $url 'http://habbo.com/habbo-imaging/avatarimage?figure='.$figure;

    $image imagecreatetruecolor(6460);
    imagealphablending($imagefalse);
    $col=imagecolorallocatealpha($image,255,255,255,127);
    imagefilledrectangle($image,0,0,485500,$col);
    imagealphablending($image,true);

    $img_avatar imagecreatefrompng($url);
    imagecopyresampled($image$img_avatar000064606460);
    imagealphablending($image,true);

    $fn md5(microtime()."head").".png";

    imagealphablending($image,false);
    imagesavealpha($image,true);

    imagepng($image);
    imagedestroy($image);

    ?>
    In your emulator configuration
    PHP Code:
    stream.link=http://YOUR_URL/habbo-imaging/avatarimage.php?figure= 
    lol i can't find this;

    PHP Code:
    if (((int) row["Type"]) == 0)
                    {
                        
    message.AppendString("http://habteen.com/heads/look.gif");
                    } 
    in GameClientMessageHandler.cs which line?

  13. #363
    [̲̅$̲̅(̲̅1̲̅)̲̅$ ̲̅] leenster is offline
    Grand MasterRank
    May 2008 Join Date
    KanaadaLocation
    992Posts

    Re: [SOURCE] BcStorm - The whole caboodle.

    sorry habteen.com = localhost


    updated the other post...

  14. #364
    Elite Member CrEcEp is offline
    Member +Rank
    Oct 2011 Join Date
    166Posts

    Re: [SOURCE] BcStorm - The whole caboodle.

    Quote Originally Posted by FlyHotel View Post
    lol i can't find this;

    PHP Code:
    if (((int) row["Type"]) == 0)
                    {
                        
    message.AppendString("http://habteen.com/heads/look.gif");
                    } 
    in GameClientMessageHandler.cs which line?
    Try:
    if (((int)row["Type"]) == 0)
    Quote Originally Posted by leenster View Post
    In your emulator configuration
    PHP Code:
    stream.link=http://YOUR_URL/habbo-imaging/avatarimage.php?figure= 
    And in Emulator Config:
    stream.link=http://YOUR_URL/habbo-imaging/head/

  15. #365
    Elite Member Galago is offline
    Member +Rank
    Aug 2011 Join Date
    The NetherlandsLocation
    177Posts

    Re: [SOURCE] BcStorm - The whole caboodle.

    Does anyone know how to fix this?

    I think it is something in the swf.
    error.png

  16. #366
    En Français? Bjork is offline
    Grand MasterRank
    Apr 2007 Join Date
    854Posts

    Re: [SOURCE] BcStorm - The whole caboodle.

    Quote Originally Posted by FlyHotel View Post
    lol i can't find this;

    PHP Code:
    if (((int) row["Type"]) == 0)
                    {
                        
    message.AppendString("http://habteen.com/heads/look.gif");
                    } 
    in GameClientMessageHandler.cs which line?
    In this void: "internal void InitStream()"

    Some colors aren't working with badges like purple and the colors for group furni are sometimes the wrong colors you chose when you created the group.

  17. #367
    Sorcerer Supreme Flare is offline
    Member +Rank
    Jun 2012 Join Date
    269Posts

    Re: [SOURCE] BcStorm - The whole caboodle.

    nice leen thanks! appreaciate the help

  18. #368
    Grand Master Ma Ma is offline
    Grand MasterRank
    Jan 2011 Join Date
    home.phpLocation
    580Posts

    Re: [SOURCE] BcStorm - The whole caboodle.

    Quote Originally Posted by XiFy View Post
    For the last time, everybody use the help thread provided by James in the Habbo help section to stop you from receiving a infection and from stop this thread from getting closed.
    It's infraction not infection XD

    I also made a thread so that everyone can find all the fixes that where posted in this thread

  19. #369
    Sorcerer Supreme Flare is offline
    Member +Rank
    Jun 2012 Join Date
    269Posts

    Re: [SOURCE] BcStorm - The whole caboodle.

    Leen, can u please send me ur two files of gameclient and messenger.. im getting errors debuging .

  20. #370
    Sorcerer Supreme jordynegen11 is offline
    Member +Rank
    Jul 2009 Join Date
    NetherlandsLocation
    398Posts

    Re: [SOURCE] BcStorm - The whole caboodle.

    Quote Originally Posted by Squashing View Post
    @Jordynegen

    Trade's works :)
    It's disabled at my hotel? huh? 0__O?

  21. #371
    Banned rafa95123 is offline
    BannedRank
    May 2009 Join Date
    /home/RaphaLocation
    564Posts

    Re: [SOURCE] BcStorm - The whole caboodle.

    Quote Originally Posted by jordynegen11 View Post
    It's disabled at my hotel? huh? 0__O?
    Sorry but for me works very fine!

  22. #372
    Banned rafa95123 is offline
    BannedRank
    May 2009 Join Date
    /home/RaphaLocation
    564Posts

    Re: [SOURCE] BcStorm - The whole caboodle.

    Quote Originally Posted by FlyHotel View Post
    How can you add custom jukebox songs?
    In table "songs" have the data for you make your custom song!

    #Edit

    I have fixed the:

    Roller and Rugs bug;
    :lay command (The user does not will anymore to out of room!).

    And now i will beggin to fix the doorbell ^^

  23. #373
    Run, but I'll find you. Ddos Attack is offline
    Grand MasterRank
    Jan 2011 Join Date
    AustraliaLocation
    908Posts

    Re: [SOURCE] BcStorm - The whole caboodle.

    Can you please release he scripts so we can add it? Instead of your own edit, because I have made a few changes of my own :/

  24. #374
    son, i am disappointed Squashing is offline
    Grand MasterRank
    Apr 2011 Join Date
    CaliforniaLocation
    683Posts

    Re: [SOURCE] BcStorm - The whole caboodle.

    Agree with DDOS ATTACK Because that's better :$

  25. #375
    Banned rafa95123 is offline
    BannedRank
    May 2009 Join Date
    /home/RaphaLocation
    564Posts

    Re: [SOURCE] BcStorm - The whole caboodle.

    Like I said, I want to at least fix some more things for me to disclose



Advertisement