I knew this was coming!
@MrPudding Kudos to you my friend. :)
Try to add:
afterCode:if (Session.GetHabbo().Talents.ContainsKey(Talent.Id)) { return; }
In CompleteUserTalent function on the page TalentManager.csCode:if (Session == null || Session.GetHabbo() == null || Session.GetHabbo().CurrentTalentLevel < Talent.Level) { return; }
Credits @Bjork for the fix
- - - Updated - - -
Lol works fine when u do that. I've tried it myself Close the source move the debug there and then reopen the source and try not that hard.
Only takes 2 seconds to fix lol but here http://uploadir.com/uploads/dvfnq145/downloads/new
Best release ever.. Jonteh sat up all night converting Tardis over and the users are loving it.. few small issues that we will iron out but OMG it;'s great..cheers for releasing this xo
nice thanks
Last edited by xJayJay; 16-09-14 at 05:07 AM.
Decided to steal the habbopages. Download link;
https://www.mediafire.com/?nn72cm2g20smfyp
.htaccess code;
Simply place in game/ on your server/localhost and add the rules above (unless you use web.config then make your own) and kaboom. Done. If I missed some, find them yourselvesCode:RewriteRule ^game/habbopages/chat/commands(|/)$ game/habbopages/chat/commands.php RewriteRule ^game/habbopages/builders-club/info(|/)$ game/habbopages/builders-club/info.php RewriteRule ^game/habbopages/forums(|/)$ game/habbopages/forums.php RewriteRule ^game/habbopages/forums/formatting(|/)$ game/habbopages/forums/formatting.php RewriteRule ^game/habbopages/help/pets/training(|/)$ game/habbopages/training.phpNot that hard ;)
Code:<rule name="rule 1e"> <match url="^game/habbopages/chat/commands(|/)$" /> <action type="Rewrite" url="/game/habbopages/chat/commands.php" /> </rule> <rule name="rule 2e"> <match url="^game/habbopages/builders-club/info(|/)$" /> <action type="Rewrite" url="/game/habbopages/builders-club/info.php" /> </rule> <rule name="rule 3e"> <match url="^game/habbopages/forums(|/)$" /> <action type="Rewrite" url="/game/habbopages/forums.php" /> </rule> <rule name="rule 4e"> <match url="^game/habbopages/forums/formatting(|/)$" /> <action type="Rewrite" url="/game/habbopages/forums/formatting.php" /> </rule> <rule name="rule 5e"> <match url="^game/habbopages/help/pets/training(|/)$" /> <action type="Rewrite" url="/game/habbopages/training.php" /> </rule>
Should be good for web.config :)
Oh yeah Thanks @FatalLulz x)
Last edited by Grandhotel; 16-09-14 at 10:44 AM. Reason: Forgotting to quote...
Correct me if I'm wrong, anyone, but I believe this would be better practice:
Only because the statement is if xx OR xxCode:if (Session == null || Session.GetHabbo() == null || Session.GetHabbo().CurrentTalentLevel < Talent.Level || Session.GetHabbo().Talents.ContainsKey(Talent.Id)) { return; }