^^ do you have hearts in column quests?
Printable View
^^ do you have hearts in column quests?
very nice release, cracked swf's mirrors:
Filesonic: Download RELEASE63-31317-31303-201101312307_eee244c35f16d4e8262130dda89eb171.zip for free on Filesonic.com
Rapidshare: RapidShare AG, Cham, Switzerland
DepositFiles: Deposit Files
Hotfile :Hotfile.com: One click file hosting: RELEASE63-31317-31303-201101312307_eee244c35f16d4e8262130dda89eb171.zip
Uploading: Download RELEASE63-31317-31303-201101312307_eee244c35f16d4e8262130dda89eb171.zip for free on uploading.com
Zshare: zSHARE - RELEASE63-31317-31303-201101312307_eee244c35f16d4e8262130dda89eb171.zip
In r64 so much is new, and im not so sure if the guys will code it. Uber Programmer does need more then weeks to code something, because of this cum, im using privileges Dynamic Emulator (Godlike).
I prefer Dynamic for ever. Fast programming, stable programming and all is cool!
Anyways if uber complete something habbo has new things for you. Privilege has always all before sulake :love:
Ah yes, as i heard is in r64 a simple script to protect the cracking of anthony.
So i hope the best for ya gays. (XD)
xD //
But thanks for the Code, it works
yea i know what's coming in R64 and it's true that pivialge (or something)
know the information because i know him:P and he will do that he got hes nice tricks :)
-----
Quest image files:
Valentine Quest Achievement:Code:http://images.habbo.com/c_images/Quests/icon_val11_reward_5.png
http://images.habbo.com/c_images/Quests/icon_val11_reward_1.png
http://images.habbo.com/c_images/Quests/header_val11.png
http://images.habbo.com/c_images/Quests/icon_val11_active.png
http://images.habbo.com/c_images/Quests/icon_val11_pixeltype.png
Find:Add after:Code:Session.SendMessage(DoneQuest);
Add Column "quests_passed" to users (int) default (0)Code:int passedquests;
using (DatabaseClient dbClient = UberEnvironment.GetDatabase().GetClient())
{
dbClient.ExecuteQuery("UPDATE users SET quests_passed = quests_passed + 1 WHERE id = '" + Session.GetHabbo().Id + "'");
passedquests = dbClient.ReadInt32("SELECT quests_passed FROM users WHERE id = '" + Session.GetHabbo().Id + "'");
}
if (passedquests == 1)
{
UberEnvironment.GetGame().GetAchievementManager().UnlockAchievement(Session, 24, 1);
}
if (passedquests == 2)
{
UberEnvironment.GetGame().GetAchievementManager().UnlockAchievement(Session, 24, 2);
}
if (passedquests == 3)
{
UberEnvironment.GetGame().GetAchievementManager().UnlockAchievement(Session, 24, 3);
}
if (passedquests == 4)
{
UberEnvironment.GetGame().GetAchievementManager().UnlockAchievement(Session, 24, 4);
}
if (passedquests == 5)
{
UberEnvironment.GetGame().GetAchievementManager().UnlockAchievement(Session, 24, 5);
}
if (passedquests == 6)
{
UberEnvironment.GetGame().GetAchievementManager().UnlockAchievement(Session, 24, 6);
}
if (passedquests == 7)
{
UberEnvironment.GetGame().GetAchievementManager().UnlockAchievement(Session, 24, 7);
}
if (passedquests == 8)
{
UberEnvironment.GetGame().GetAchievementManager().UnlockAchievement(Session, 24, 8);
}
if (passedquests == 9)
{
UberEnvironment.GetGame().GetAchievementManager().UnlockAchievement(Session, 24, 9);
}
if (passedquests == 10)
{
UberEnvironment.GetGame().GetAchievementManager().UnlockAchievement(Session, 24, 10);
}
Run Sql-query:
Give Badge (50%)Code:INSERT INTO `achievements` VALUES ('24', '10', '1', 'ACH_ValentinesQuestCompleted', '10', '1.25');
Find:
Add after:Code:Messenger.OnStatusChanged(false);
http://images.habbo.com/c_images/alb...geReceived.gifCode:ServerMessage GiveBadge = new ServerMessage(822);
GiveBadge.AppendStringWithBreak("IZrbValentinesBadgeReceived");
GetClient().SendMessage(GiveBadge);
Who makes the Hearts Shop?
Yup make a Heart Shop please :D
i am busy, but The hearts must be encrypted in the server I think.
SQL:
:)Code:ALTER TABLE `users` ADD `quests_passed` INT( 11 ) NOT NULL