Offical BCStorm Help Thread

Page 21 of 40 FirstFirst ... 11131415161718192021222324252627282931 ... LastLast
Results 301 to 315 of 589
  1. #301
    Member Qbus is offline
    MemberRank
    Mar 2012 Join Date
    In your mind.Location
    60Posts

    Re: Offical BCStorm Help Thread

    Somebody knows a fix for Update for Crystals?
    its know only updated when i restart my Emulator And not Auto. when i relog my Client.

    - Qbus

  2. #302
    Valued Member Noman is offline
    MemberRank
    Sep 2011 Join Date
    United KingdomLocation
    137Posts

    Re: Offical BCStorm Help Thread

    Moodlights don't work for me, they don't go onto the wall.

  3. #303
    Apprentice LEOXZ is offline
    MemberRank
    Jan 2013 Join Date
    6Posts

    Re: Offical BCStorm Help Thread

    Help me:

    help.png

    Help please

  4. #304
    Account Upgraded | Title Enabled! r63 is offline
    MemberRank
    Jan 2012 Join Date
    apt-get GPSLocation
    430Posts

    Re: Offical BCStorm Help Thread

    Quote Originally Posted by LEOXZ View Post
    Help me:

    help.png

    Help please
    check the error logs n shit

  5. #305
    Apprentice Dan5ielle is offline
    MemberRank
    Jan 2013 Join Date
    6Posts

    Re: Offical BCStorm Help Thread

    I get packet errors when I chat and when I create a group.





  6. #306
    hi i'm robbie Roper is offline
    MemberRank
    Oct 2008 Join Date
    /home/roperLocation
    2,283Posts

    Re: Offical BCStorm Help Thread

    Quote Originally Posted by xMiraclesz View Post
    How can i debug the emulator???
    Open it in visual studio and hit f5 =)

  7. #307
    Member iDamien is offline
    MemberRank
    Aug 2012 Join Date
    65Posts

    Re: Offical BCStorm Help Thread

    EDIT: Fixed
    Attached Thumbnails Attached Thumbnails how-to-fix-this.png  
    Last edited by iDamien; 22-01-13 at 04:18 AM.

  8. #308
    Member Fidel Castro is offline
    MemberRank
    Jan 2013 Join Date
    CubaLocation
    68Posts

    Re: Offical BCStorm Help Thread

    How to debug? I don't know what I need to open in Visual Studio.

  9. #309
    Just out there.. Flare is offline
    MemberRank
    Jun 2012 Join Date
    269Posts

    Re: Offical BCStorm Help Thread

    help. i get a session ticket error no user found?

  10. #310
    Developer PremiumEye is offline
    MemberRank
    Nov 2011 Join Date
    NetherlandsLocation
    550Posts
    Quote Originally Posted by rafa95123 View Post
    For the 1° error:
    You already run the SQL code of procedure that comes with the database?

    For the 2°
    I don't know what is this "yet".
    I do. It's a wrong table in your user_pets. I looked for it but still doesn't know which one.

    Quote Originally Posted by HabflareH View Post
    help. i get a session ticket error no user found?
    I helped you but you said you want to try it on your own :)?

    Quote Originally Posted by Fidel Castro View Post
    How to debug? I don't know what I need to open in Visual Studio.
    It's pretty easy. Do you jave Visual C# 2010? Than everything would go something like.. Automatic? The only thing you have to do is open the project.

    How do I open an existing project like the emulator?
    Go to the window file, click on existing project or something. Go to you emator. NOT the .exe file but only the folder! There is one file last. It's called: 'Butterstorm Emulator or Butterfly Emulator'. (Remember: this file is in the folder BEFORE the bin folder. So you can see the folders like Buttefly, WiredSolver etc...)

    When you clicked on it and opened it in Visual 2010 C# Basics it al goes automatic ;).

    And if you want to debugg: press on F5.

  11. #311
    Member jiawenb is offline
    MemberRank
    Jan 2013 Join Date
    The NetherlandsLocation
    88Posts

    Re: Offical BCStorm Help Thread

    I got it finnally online really happy :D But now the problem is how do I publish my retro because I've got it on localhost, how can I change localhost to a domain name?

  12. #312
    Banned Habp is offline
    BannedRank
    Mar 2012 Join Date
    TCPOELocation
    208Posts

    Re: Offical BCStorm Help Thread

    Quote Originally Posted by Qbus View Post
    Somebody knows a fix for Update for Crystals?
    its know only updated when i restart my Emulator And not Auto. when i relog my Client.

    - Qbus
    Here
    Spoiler:
    Search for:
    internal int ActivityPoints;

    Add after:
    internal int Crystals;

    Search for:
    internal Habbo(uint Id, string Username, string RealName, uint Rank, string Motto, string Look, string Gender, int Credits, int ActivityPoints, double LastActivityPointsUpdate, bool Muted, uint HomeRoom, int Respect, int DailyRespectPoints, int DailyPetRespectPoints, bool MutantPenalty, bool HasFriendRequestsDisabled, DataRow groupRow, int achievementPoints, string LastOnline, string quests, string queststates, bool canchangename, int favoriteGroup, bool PassedQuiz, int pointsOnline)
    {

    Edit to:
    internal Habbo(uint Id, string Username, string RealName, uint Rank, string Motto, string Look, string Gender, int Credits, int ActivityPoints, int Crystals, double LastActivityPointsUpdate, bool Muted, uint HomeRoom, int Respect, int DailyRespectPoints, int DailyPetRespectPoints, bool MutantPenalty, bool HasFriendRequestsDisabled, DataRow groupRow, int achievementPoints, string LastOnline, string quests, string queststates, bool canchangename, int favoriteGroup, bool PassedQuiz, int pointsOnline)
    {

    Search for:
    this.ActivityPoints = ActivityPoints;

    Add after:
    this.Crystals = Crystals;


    Search for:
    internal void UpdateActivityPointsBalance(int NotifAmount)
    {

    Edit Function to:
    internal void UpdateActivityPointsBalance(int NotifAmount)
    {
    if (((this.mClient != null) && (this.mClient.GetMessageHandler() != null)) && (this.mClient.GetMessageHandler().GetResponse() != null))
    {
    this.mClient.GetMessageHandler().GetResponse().Init(Outgoing.ActivityPoints);
    this.mClient.GetMessageHandler().GetResponse().AppendInt32(2);
    this.mClient.GetMessageHandler().GetResponse().AppendInt32(0);
    this.mClient.GetMessageHandler().GetResponse().AppendInt32(this.ActivityPoints);
    this.mClient.GetMessageHandler().GetResponse().AppendInt32(105);
    this.mClient.GetMessageHandler().GetResponse().AppendInt32(this.Crystals);
    this.mClient.GetMessageHandler().SendResponse();
    }
    }

    Search for:
    return new Habbo(id, username, realName, rank, motto, look, gender, credits, activityPoints, lastActivityPointsUpdate, muted, homeRoom, respect, dailyRespectPoints, dailyPetRespectPoints, mutantPenalty, hasFriendRequestsDisabled, group, achievementPoints, lastOnline, quests, queststates, canchangename, favoriteGroup, passedQuiz, (int) dRow["points_online"]);

    Edit to:
    return new Habbo(id, username, realName, rank, motto, look, gender, credits, activityPoints, (int)dRow["crystals"], lastActivityPointsUpdate, muted, homeRoom, respect, dailyRespectPoints, dailyPetRespectPoints, mutantPenalty, hasFriendRequestsDisabled, group, achievementPoints, lastOnline, quests, queststates, canchangename, favoriteGroup, passedQuiz, (int) dRow["points_online"]);

  13. #313
    Member marles is offline
    MemberRank
    May 2011 Join Date
    RagezoneLocation
    51Posts

    Re: Offical BCStorm Help Thread

    If this thread is still on, I would like to ask some few questions...

    1. My group badges are all messed up, the picture in group details are correct but the group badge on the group furni and the group homeroom thing is wrong, how could i fix that?

    2. My games tab is empty only text and the play now button, no images like you see on habbo

    3. The landing view is empty, only xmas ghost campaign text but no image

    4. The talent's track is "broken", i could not pass the Dive-In part...

    5. Do crystal's really work?

    That's all....

  14. #314
    Account Upgraded | Title Enabled! JaydenC is offline
    MemberRank
    Feb 2012 Join Date
    993Posts

    Re: Offical BCStorm Help Thread

    Everything is working great, Quick question though.

    Only certain badge images work, reason why & fix? I took a look at it and thought maybe what just cause missing images / images cannot "mix". Not sure. Someone look into this please :)

  15. #315
    Run, but I'll find you. Ddos Attack is offline
    MemberRank
    Jan 2011 Join Date
    AustraliaLocation
    908Posts

    Re: Offical BCStorm Help Thread

    Just realized that bots don't work! (not the actual new Bots but the old way :P )



Advertisement