Panda command [By xMiraclesz]
Hey Ragezoners!
Sorry for my bad English i'm Dutch :P
Because I just spent 2 weeks approximately've begun using visual studio 2012 (C #) (and because I'm still a beginner am) I only started coding a panda command (this command exists but he was not yet in the list of : commands) You can now simply: panda types and you get a panda head for BcStorm not for phoenix or whatever! If you like my panda command in your emulator follow the step plan:
how to add the command to the emulator:
1) Go to commands.ini
place this at the bottom:
PHP Code:
[panda]
panda.minrank=100
panda.description=This command ensures that you get a panda head!
panda.prefix=
panda.input=panda
panda.clubs=
2) Go to commands_register.ini
place this at the bottom:
3) Go to ChatCommandHandler.cs
search:
PHP Code:
internal void mordi()
{
this.Session.GetHabbo().GetAvatarEffectsInventoryComponent().ApplyCustomEffect(60);
}
Put this code below:
PHP Code:
internal void panda()
{
this.Session.GetHabbo().GetAvatarEffectsInventoryComponent().ApplyCustomEffect(70);
}
3) Go to ChatCommandRegister.cs
and search
PHP Code:
case 199:
commandHandler.ejectall();
break;
Put this code below:
PHP Code:
case 86:
commandHandler.panda();
break;
Save everything restart your emu (empty your cache to be sure)
and done! Questions put it in the reactions
- Miraclesz!
Re: Panda command [By xMiraclesz]
You could easily just type :enable 70.
Re: Panda command [By xMiraclesz]
Omg, i'm a beginner let me do this? I work not long in C# -,-
Re: Panda command [By xMiraclesz]
Quote:
Originally Posted by
xMiraclesz
Omg, i'm a beginner let me do this? I work not long in C# -,-
Nice to see you coding commands but this is something really easy to do. I know you want to learn and share what you made so great job but like Jonteh said it is a bit unneccessary because we already have :enable for it. Thanks anyway :)
Re: Panda command [By xMiraclesz]
Quote:
Originally Posted by
xMiraclesz
Omg, i'm a beginner let me do this? I work not long in C# -,-
It's nice that you're working in C#, but we need actual contributions, not changing an int and releasing
Re: Panda command [By xMiraclesz]
Thanks for the nice little contribution, nice to see more people trying to release things.
Re: Panda command [By xMiraclesz]
Re: Panda command [By xMiraclesz]
When i get better, there are also better things :cool:
Panda command [By xMiraclesz]
Quote:
Originally Posted by
xMiraclesz
When i get better, there are also better things :cool:
Slowly learning C# too. Thanks. This'll help me understand how to add commands!
Re: Panda command [By xMiraclesz]
Quote:
Originally Posted by
FullmetalPride
Slowly learning C# too. Thanks. This'll help me understand how to add commands!
No problem ! :)
Re: Panda command [By xMiraclesz]
Quote:
Originally Posted by
Jonteh
It's nice that you're working in C#, but we need actual contributions, not changing an int and releasing
Always better then exploits isn't?