[Request] Custom commands for Phoenix 3.7.1

Mar 20, 2014
166
10
Hello, I have made a habbo retro that is phoenix 3.7.1 and I would like to request a few custom commands. If anyone can code these or w.e needs to be done to make this, then thank you. I dont know if any of these are possible but here we go.
1)
:Sit
My hotel doesnt have sit and its phx 3.7.1 -.- can someone please hand the necessary stuff over for it? Thanks.
2) :buy
My hotel also doesnt have :buy. I really want this so can anyone help.
3) ;offer
I created this idea so user for example says ;offer 20, so when they press offer in a trade, they only have to click once and 20 of the chosen furni appears to be offered.
4) :kiss
:kiss makes hearts go around the users.
5) :spush
Instead of super pull (spull), super push! Pushes the user approximately 5 or so tiles away.

If anyone could make these for me for phoenix 3.7.1 r63 I would love you! (No homo), Thanks :)
 

Andrew100

New Member
Jan 9, 2014
1
0
Try this.. Not sure. Put this commands on ur database sql
SQL:
Code:
ALTER TABLE `permissions_users`
ADD COLUMN `cmd_roll`  enum('0','1') NOT NULL DEFAULT '0',
ADD COLUMN `cmd_rave`  enum('0','1') NOT NULL DEFAULT '0',
ADD COLUMN `cmd_control`  enum('0','1') NOT NULL DEFAULT '0',
ADD COLUMN `cmd_makesay`  enum('0','1') NOT NULL DEFAULT '0',
ADD COLUMN `cmd_dance`  enum('0','1') NOT NULL DEFAULT '0',
ADD COLUMN `cmd_sitdown`  enum('0','1') NOT NULL DEFAULT '0',
ADD COLUMN `cmd_exe`  enum('0','1') NOT NULL DEFAULT '0';

ALTER TABLE `permissions_ranks`
ADD COLUMN `cmd_roll`  enum('0','1') NOT NULL DEFAULT '0',
ADD COLUMN `cmd_rave`  enum('0','1') NOT NULL DEFAULT '0',
ADD COLUMN `cmd_control`  enum('0','1') NOT NULL DEFAULT '0',
ADD COLUMN `cmd_makesay`  enum('0','1') NOT NULL DEFAULT '0',
ADD COLUMN `cmd_dance`  enum('0','1') NOT NULL DEFAULT '0',
ADD COLUMN `cmd_sitdown`  enum('0','1') NOT NULL DEFAULT '0',
ADD COLUMN `cmd_exe`  enum('0','1') NOT NULL DEFAULT '0';

INSERT INTO `texts` VALUES ('cmd_dance_desc', ':dance <username> - Make the selected user dance');
INSERT INTO `texts` VALUES ('cmd_exe_desc', ':exe');
INSERT INTO `texts` VALUES ('cmd_makesay_desc', ':makesay <username> <message> - Make the selected user say a message');
INSERT INTO `texts` VALUES ('cmd_rave_desc', ':rave - Make everyone dance');
INSERT INTO `texts` VALUES ('cmd_roll_desc', ':roll <username> <number>  - Make a user roll the selected number');
INSERT INTO `texts` VALUES ('cmd_sitdown_desc', ':sitdown - Make everyone sitdown');
INSERT INTO `texts` VALUES ('cmd_control_desc', ':control <username> - Control the selected user');
INSERT INTO `texts` VALUES ('cmd_dance_name', 'dance');
INSERT INTO `texts` VALUES ('cmd_exe_name', 'exe');
INSERT INTO `texts` VALUES ('cmd_makesay_name', 'makesay');
INSERT INTO `texts` VALUES ('cmd_rave_name', 'rave');
INSERT INTO `texts` VALUES ('cmd_roll_name', 'roll');
INSERT INTO `texts` VALUES ('cmd_sitdown_name', 'sitdown');
INSERT INTO `texts` VALUES ('cmd_control_name', 'control');
 

ptimmaq2

We all make mistakes
Aug 7, 2013
283
33
Hello, I have made a habbo retro that is phoenix 3.7.1 and I would like to request a few custom commands. If anyone can code these or w.e needs to be done to make this, then thank you. I dont know if any of these are possible but here we go.
1)
:Sit
My hotel doesnt have sit and its phx 3.7.1 -.- can someone please hand the necessary stuff over for it? Thanks.
2) :buy
My hotel also doesnt have :buy. I really want this so can anyone help.
3) ;offer
I created this idea so user for example says ;offer 20, so when they press offer in a trade, they only have to click once and 20 of the chosen furni appears to be offered.
4) :kiss
:kiss makes hearts go around the users.
5) :spush
Instead of super pull (spull), super push! Pushes the user approximately 5 or so tiles away.

If anyone could make these for me for phoenix 3.7.1 r63 I would love you! (No homo), Thanks :)
You are a shame to retro community and retarder noob because you use still phx 3.7.1 like dude, wtf?
 

chrisissick

Member
May 23, 2014
62
2
Try this.. Not sure. Put this commands on ur database sql
SQL:
Code:
ALTER TABLE `permissions_users`
ADD COLUMN `cmd_roll`  enum('0','1') NOT NULL DEFAULT '0',
ADD COLUMN `cmd_rave`  enum('0','1') NOT NULL DEFAULT '0',
ADD COLUMN `cmd_control`  enum('0','1') NOT NULL DEFAULT '0',
ADD COLUMN `cmd_makesay`  enum('0','1') NOT NULL DEFAULT '0',
ADD COLUMN `cmd_dance`  enum('0','1') NOT NULL DEFAULT '0',
ADD COLUMN `cmd_sitdown`  enum('0','1') NOT NULL DEFAULT '0',
ADD COLUMN `cmd_exe`  enum('0','1') NOT NULL DEFAULT '0';

ALTER TABLE `permissions_ranks`
ADD COLUMN `cmd_roll`  enum('0','1') NOT NULL DEFAULT '0',
ADD COLUMN `cmd_rave`  enum('0','1') NOT NULL DEFAULT '0',
ADD COLUMN `cmd_control`  enum('0','1') NOT NULL DEFAULT '0',
ADD COLUMN `cmd_makesay`  enum('0','1') NOT NULL DEFAULT '0',
ADD COLUMN `cmd_dance`  enum('0','1') NOT NULL DEFAULT '0',
ADD COLUMN `cmd_sitdown`  enum('0','1') NOT NULL DEFAULT '0',
ADD COLUMN `cmd_exe`  enum('0','1') NOT NULL DEFAULT '0';

INSERT INTO `texts` VALUES ('cmd_dance_desc', ':dance <username> - Make the selected user dance');
INSERT INTO `texts` VALUES ('cmd_exe_desc', ':exe');
INSERT INTO `texts` VALUES ('cmd_makesay_desc', ':makesay <username> <message> - Make the selected user say a message');
INSERT INTO `texts` VALUES ('cmd_rave_desc', ':rave - Make everyone dance');
INSERT INTO `texts` VALUES ('cmd_roll_desc', ':roll <username> <number>  - Make a user roll the selected number');
INSERT INTO `texts` VALUES ('cmd_sitdown_desc', ':sitdown - Make everyone sitdown');
INSERT INTO `texts` VALUES ('cmd_control_desc', ':control <username> - Control the selected user');
INSERT INTO `texts` VALUES ('cmd_dance_name', 'dance');
INSERT INTO `texts` VALUES ('cmd_exe_name', 'exe');
INSERT INTO `texts` VALUES ('cmd_makesay_name', 'makesay');
INSERT INTO `texts` VALUES ('cmd_rave_name', 'rave');
INSERT INTO `texts` VALUES ('cmd_roll_name', 'roll');
INSERT INTO `texts` VALUES ('cmd_sitdown_name', 'sitdown');
INSERT INTO `texts` VALUES ('cmd_control_name', 'control');


even when i add these sqls the commands still dont work... and i have pnx 3.11 any ideas
 

HatemeLoveme

Member
Feb 15, 2012
36
1
Try this.. Not sure. Put this commands on ur database sql
SQL:
Code:
ALTER TABLE `permissions_users`
ADD COLUMN `cmd_roll`  enum('0','1') NOT NULL DEFAULT '0',
ADD COLUMN `cmd_rave`  enum('0','1') NOT NULL DEFAULT '0',
ADD COLUMN `cmd_control`  enum('0','1') NOT NULL DEFAULT '0',
ADD COLUMN `cmd_makesay`  enum('0','1') NOT NULL DEFAULT '0',
ADD COLUMN `cmd_dance`  enum('0','1') NOT NULL DEFAULT '0',
ADD COLUMN `cmd_sitdown`  enum('0','1') NOT NULL DEFAULT '0',
ADD COLUMN `cmd_exe`  enum('0','1') NOT NULL DEFAULT '0';

ALTER TABLE `permissions_ranks`
ADD COLUMN `cmd_roll`  enum('0','1') NOT NULL DEFAULT '0',
ADD COLUMN `cmd_rave`  enum('0','1') NOT NULL DEFAULT '0',
ADD COLUMN `cmd_control`  enum('0','1') NOT NULL DEFAULT '0',
ADD COLUMN `cmd_makesay`  enum('0','1') NOT NULL DEFAULT '0',
ADD COLUMN `cmd_dance`  enum('0','1') NOT NULL DEFAULT '0',
ADD COLUMN `cmd_sitdown`  enum('0','1') NOT NULL DEFAULT '0',
ADD COLUMN `cmd_exe`  enum('0','1') NOT NULL DEFAULT '0';

INSERT INTO `texts` VALUES ('cmd_dance_desc', ':dance <username> - Make the selected user dance');
INSERT INTO `texts` VALUES ('cmd_exe_desc', ':exe');
INSERT INTO `texts` VALUES ('cmd_makesay_desc', ':makesay <username> <message> - Make the selected user say a message');
INSERT INTO `texts` VALUES ('cmd_rave_desc', ':rave - Make everyone dance');
INSERT INTO `texts` VALUES ('cmd_roll_desc', ':roll <username> <number>  - Make a user roll the selected number');
INSERT INTO `texts` VALUES ('cmd_sitdown_desc', ':sitdown - Make everyone sitdown');
INSERT INTO `texts` VALUES ('cmd_control_desc', ':control <username> - Control the selected user');
INSERT INTO `texts` VALUES ('cmd_dance_name', 'dance');
INSERT INTO `texts` VALUES ('cmd_exe_name', 'exe');
INSERT INTO `texts` VALUES ('cmd_makesay_name', 'makesay');
INSERT INTO `texts` VALUES ('cmd_rave_name', 'rave');
INSERT INTO `texts` VALUES ('cmd_roll_name', 'roll');
INSERT INTO `texts` VALUES ('cmd_sitdown_name', 'sitdown');
INSERT INTO `texts` VALUES ('cmd_control_name', 'control');
*facepalm This is kind of stupid of you to even try this or post this. Why? because the commands are located in the Rolemanager.cs and, if he wants commands you just copy the syntax yes this adds the commands to the db but they're not apparent on the EMU but even then after copying the syntax you would you still have to go in other files to make what the command actually does versus it just being there for no reason.
 

HatemeLoveme

Member
Feb 15, 2012
36
1
Are you officially retarded? Most emus are built off phx, and I use GTE now, close thread


Sent from my iPod touch using Tapatalk
Just because every Emulator is based off pheonix it doesn't mean you can't update and are you officially retarded making this thread on 3.7.1 was spull even a command then rofl
 
Mar 20, 2014
166
10
LOL!!!! Stop, you're killing me..
"it doesn't mean you can't update" , I said I use GTE now, Ffs learn to read you 10yr old.


Sent from my iPod touch using Tapatalk
 

HatemeLoveme

Member
Feb 15, 2012
36
1
LOL!!!! Stop, you're killing me..
"it doesn't mean you can't update" , I said I use GTE now, Ffs learn to read you 10yr old.


Sent from my iPod touch using Tapatalk
Beyond 10 years old and, since we are talking about 10 year old's let's talk about your grammar and, how you're not supposed to put a "," after anything but, "but, and, so, also,etc." Go to fucking Highschool English class and learn something but I'm willing to bet you still don't know how to do shit in it lol xD get out of here skiddie it's not where you belong
 

Jerry

not rly active lol
Jul 8, 2013
1,956
522
facepalm.jpg Who stills uses Phoenix 3.7.1? That was way when Otaku was still opened.. Why not use Gold Tree Emulator which has buy, spush, etcc? -.-
 
Mar 20, 2014
166
10
"facepalm.jpg Who stills uses Phoenix 3.7.1? That was way when Otaku was still opened.. Why not use Gold Tree Emulator which has buy, spush, etcc? -.-"

LOL, read my comments you dumb piece of shit!
I clearly said, I have now switched to GTE and to close thread. Don't even bother being on here if you're not going to read anything right.


"Beyond 10 years old and, since we are talking about 10 year old's let's talk about your grammar and, how you're not supposed to put a "," after anything but, "but, and, so, also,etc." Go to fucking Highschool English class and learn something but I'm willing to bet you still don't know how to do shit in it lol xD get out of here skiddie it's not where you belong"
What the fuck are you on about? You use comments to make a "complex" sentence, and it's a conjunction but it's just a symbol. I have better grammar than you, so gtfo.



Sent from my iPod touch using Tapatalk
 
Mar 20, 2014
166
10
Nah, I use GTE now I said that like 4times lmao, phx 3.7.1 is good but it's a little mainstream and old school now haha. Ty anyway


Sent from my iPod touch using Tapatalk
 

Users who are viewing this thread

Top