-
Re: (Service) Habbo Commands (Service)
Quote:
Originally Posted by
MikeDavies
Guys, this guy cant do Uber, so if you want anything Uber. Ill do it for you :)
Thanks alot Mikey I have never worked with Uber in my life so I don't know its functions its nice to have someone helping me. :D
---------- Post added at 06:07 PM ---------- Previous post was at 06:02 PM ----------
Quote:
Originally Posted by
rajito
<Command> :invisible
<What is does> Like in old skool, make an admin invisible so nobody can see,
<Version> r53 uber
Thats not all that hard I don't do Uber but I think it is something like ---->
#region
case "invisible":
{
_Figure = ch_0.lg_0.sh_0.
refreshAppearance(true, true, true);
break;
}
#endregion
-
Re: (Service) Habbo Commands (Service)
Quote:
Originally Posted by
MikeDavies
Guys, this guy cant do Uber, so if you want anything Uber. Ill do it for you :)
Can you make the moonwalk for uber?
phoxyhabbo
-
Quote:
Originally Posted by
ReDoc
Originally Posted by rajito:
<Command> :invisible
<What is does> Like in old skool, make an admin invisible so nobody can see,
<Version> r53 uber
Thats not all that hard I don't do Uber but I think it is something like ---->
#region
case "invisible":
{
_Figure = ch_0.lg_0.sh_0.
refreshAppearance(true, true, true);
break;
}
#endregion
---------- Post added at 06:07 PM ---------- Previous post was at 06:02 PM ----------
Thats not all that hard I don't do Uber but I think it is something like ---->
#region
case "invisible":
{
_Figure = ch_0.lg_0.sh_0.
refreshAppearance(true, true, true);
break;
}
#endregion
Thanks i'll try it tomorrow. I've another command for uber.
Command. :teleport
What does it to: Send an admin to a point were they click (like in oldskool retro's)
Server: Uber Emu
Posted via Mobile Device
-
Re: (Service) Habbo Commands (Service)
Quote:
Originally Posted by
ReDoc
Okay, I am just basing this off what you said.
Code:
#region
case "smokeweed":
{
Room.sendSaying(roomUser, "*Whoa, dats sum gud shit*"
refreshAppearance(true, true, true);
break;
}
#endregion
first and formost,
please use the "code" bb code..
second you havent finished hte command
Here is a fixed one
Code:
#region weed.
case "smokeweed":
{
Room.sendSaying(roomUser, "*Whoa, dats sum gud shit*");
refreshAppearance(true, true, true);
break;
}
#endregion
you forgot to finish the sendSaying
-
Re: (Service) Habbo Commands (Service)
Command. :naked
What does it to: let the user get naked (all clothes off :p)
Server: Uber Emu
Command. :unnaked
What does it to: let the user get clothes on again
Server: Uber Emu
Command. :moonwalk
What does it to: you know what i mean:p
Server: Uber Emu
Posted via Mobile Device
-
Re: (Service) Habbo Commands (Service)
Quote:
Originally Posted by
Cobe
first and formost,
please use the "code" bb code..
second you havent finished hte command
Here is a fixed one
Code:
#region weed.
case "smokeweed":
{
Room.sendSaying(roomUser, "*Whoa, dats sum gud shit*");
refreshAppearance(true, true, true);
break;
}
#endregion
you forgot to finish the sendSaying
Aw my bad thanks Cobe :)
-
Re: (Service) Habbo Commands (Service)
Most Commands You Guys Asking Are In my Server Release ;p And The Invisible Was Released Long Ago Its Unstable And if i was you i would no use it when some one click you they dc it can make you dc and you cant talk
I Did Code One That People Can Click You And you Can Talk But it Has to Much Bits to it Like Virtualroom etc
Tip
When You Rekease A Command to make it look tidy Just Do [code] and then do
[/code
]
-
Re: (Service) Habbo Commands (Service)
Yeah when posting commands use: [code]cmd[/code]
:)
-
Re: (Service) Habbo Commands (Service)
Quote:
Originally Posted by
swimoTheBig
Yeah when posting commands use: [code]cmd[/code]
:)
Ok :D
-
Re: (Service) Habbo Commands (Service)
Quote:
Originally Posted by
cooldude159
:shoot x Make sure you dont need enter the Username
Shoot other person
Holo: RP v26
Code:
health_db = DB.runRead("SELECT health FROM users WHERE name = '" + Target._Username + "'");
str_db = DB.runRead("SELECT str FROM users WHERE name = '" + _Username + "'");
//turns str into an int
int str_mod = int.Parse(str_db);
//generates a random number
Random randNum = new Random();
int hit_dif_0 = randNum.Next(1, 1);
int hit_dif_1 = randNum.Next(1, 1);
//what a user hits
int strength = int.Parse(str_db);
int hit_max = (strength * 3) + 25;
int hit_min = (strength + 10);
int hit = randNum.Next(hit_min, hit_max);
DB.runQuery("UPDATE users SET health = health - '" + hit + "' WHERE name = '" + Target._Username + "'");
DB.runQuery("UPDATE users SET punches = punches+1 WHERE name = '" + _Username + "'");
health_db_ko = DB.runRead("SELECT health FROM users WHERE name = '" + Target._Username + "'");
int health_int = int.Parse(health_db_ko);
if (health_int < 1)
{
if (Target._isPet == true)
{
Target.roomUser.makeHuman();
}
Room.sendShout(roomUser, "*Shoots " + Target._Username + ", killing them.*", true);
Target.roomUser.walkLock = true; // Freeze the user
Target._Mission = "Under Rehabilitation";
Target.refreshAppearance(false, true, true);
DB.runQuery("UPDATE users SET dead = '1' WHERE name = '" + Target._Username + "'");
Target.sendData("D^" + "H" + Encoding.encodeVL64(3));
DB.runQuery("UPDATE users SET working = '0' WHERE name = '" + Target._Username + "'");
DB.runQuery("UPDATE users SET kills = kills+1 WHERE name = '" + _Username + "'");
}
else if (health_int > 1)
{
Room.sendShout(roomUser, "*Shoots " + args[1] + ", causing " + hit + " damage*", true);
}
CD = new Thread(new ThreadStart(this.subcooldown));
CD.Priority = ThreadPriority.BelowNormal;
CD.Start();
//if the user has 0 or less helth left
}
else if (_Cooldown == true)
{
Room.sendWhisper(roomUser, Sorry, "You cannot process this command at the moment");
}
}
}
}
else
{
Room.sendShout(roomUser, "*Shoots at " + args[1] + ", but misses*", false);
}
break;
}
#endregion
-
Re: (Service) Habbo Commands (Service)
Quote:
Originally Posted by
cooldude159
:shoot x Make sure you dont need enter the Username
Shoot other person
Holo: RP v26
The 'x' needs to be coded in via external_variables sir.
-
Re: (Service) Habbo Commands (Service)
Quote:
Originally Posted by
MikeDavies
Moonwalk is hard due to the fact that the local user int does not support Moon = true or false
Ill work on it tho :)
el-em-ay-oh (LMAO)
"Moon = true or false"? I hope you know "Moonwalking is WALKING BACKWARDS and not ON THE MOON" lul.
-
Re: (Service) Habbo Commands (Service)
-
Re: (Service) Habbo Commands (Service)
Quote:
Originally Posted by
1960s
el-em-ay-oh (LMAO)
"Moon = true or false"? I hope you know "Moonwalking is WALKING BACKWARDS and not ON THE MOON" lul.
His Not A Nub? If You Dont Know Uber Coding then Dont reply a stupid comment :?:
Redoc the Toll Command Is In the Old Command Thread Swimo Released it in there
-
Re: (Service) Habbo Commands (Service)
Lets see what the spammer/bumper has to offer. Service seems to be going great.
(Reason I said spammer is because you actually do)
-
Re: (Service) Habbo Commands (Service)
Quote:
Originally Posted by
1960s
el-em-ay-oh (LMAO)
"Moon = true or false"? I hope you know "Moonwalking is WALKING BACKWARDS and not ON THE MOON" lul.
Whats the point in posting if you dont understand
Why Uber doesnt support his YET is because it doesnt have in the RoomUser.cs
Moonwalk or Moon = true/false
And in Holograph it has got Moon = true/false
So learn to code and examine code. Asshole
-
Re: (Service) Habbo Commands (Service)
Hmm, ill try do any v26 TDBP as i got some free time
Xavi.
-
Re: (Service) Habbo Commands (Service)
Please can you post some command requests that are useful instead of the shit that makes your server really slow.
-
Re: (Service) Habbo Commands (Service)
:teleport
Teleports from a place to other
v26
-
Re: (Service) Habbo Commands (Service)
Quote:
Originally Posted by
MikeDavies
Whats the point in posting if you dont understand
Why Uber doesnt support his YET is because it doesnt have in the RoomUser.cs
Moonwalk or Moon = true/false
And in Holograph it has got Moon = true/false
So learn to code and examine code. Asshole
No you need to learn how to code,
Obviously the Moonwalk command doesnt have true/false in Holograph either
For all the movements you add a , 0 at the end.
and you edit the Rotation.cs so if Moon = activated they start walking backwards.
-
Re: (Service) Habbo Commands (Service)
< Command >: Freeze and Unfreeze
< What it Does? > Freeze a Habbo
< Version > Uber v55+
-
Re: (Service) Habbo Commands (Service)
I Dont think that was possible because there was some bug in uber
-
Re: (Service) Habbo Commands (Service)
<Command> :bot (botname) (bot desc) (bot saying)
<What is does> Adds a bot into the room infront of the user
<Version> v26 RP
<Command>:removebots
<What is does> Removes all bots from room
<Version> v26 RP
-
Re: (Service) Habbo Commands (Service)
Command : :drop
What it does: Drops 35 random furni in random empty spaces in the users room
and you can only use it 1 every 1 min,
Vers: V26
Command: :MassBuy (rank 3)
What it does: you type :mass buy 10 (max is 35) then when you go in to cata and buy a furni you get 10 of that item or what ever you wanted and it charges for that amount.
Also if you can Make a system where a user has a special page only for that user (im hoping to build a vip system like flex i.e cct upload ect. ) and when i release all my code i will Credit you.
-
Re: (Service) Habbo Commands (Service)
Command:Out of the way
Desc: Move other characters (hotel owners only)
Version: v26