Position, Age, Country in Staff Page

Is this helpfull?

  • Yes :)

    Votes: 2 28.6%
  • No :)

    Votes: 2 28.6%
  • Already Release but thanks :)

    Votes: 3 42.9%

  • Total voters
    7

IPMB1

Member
Jan 1, 2013
249
20
Hi, I'm IPMB1.
Today I'm going to show you how to add Position, Age, Country in Staff Page.
Well, I was bored and nothing to do with, So I think how do I add these things in Staff page.
Please don't hate me >.< This is my very first Tutorial :)
First:
Run this on SQL:

Code:
ALTER TABLE `users` ADD `position` varchar(30)

ALTER TABLE `users` ADD `age` varchar(10)

ALTER TABLE `users` ADD `country` varchar(150)

By the way, add it 1 by 1
2113rpw.jpg

Second:
Open Staff.php ( App > Tpl > Skins > Habbo)
Then search for this:
PHP:
<br>Motto: ' . $member['motto'] . '

Then under that line add this:

PHP:
<br>Position: ' .$member['position'] . ' </b> <br>Country: <b>' .$member['country'] . '</b> <br>Age: <b> ' . $member['age'] . ' </b> Years Old

Third:
Then edit the position, age, country in the user's table.

Then it's Done. Sorry for the 2nd and 3rd part that has no picture's Phpmyadmin messed up >.<

Here's mine :)

2lmx4x4.jpg

Please like and Comment if it helps :)
 
Last edited:

Colbat

Ninja
Apr 10, 2013
82
8
Hi, I'm IPMB1.
Today I'm going to show you how to add Position, Age, Country in Staff Page.
Well, I was bored and nothing to do with, So I think how do I add these things in Staff page.
Please don't hate me >.< This is my very first Tutorial :)
First:
Run this on SQL:

Code:
ALTER TABLE `users` ADD `position` varchar(30)

ALTER TABLE `users` ADD `age` varchar(10)

ALTER TABLE `users` ADD `country` varchar(150)

By the way, add it 1 by 1
2113rpw.jpg

Second:
Open Staff.php ( App > Tpl > Skins > Habbo)
Then search for this:
PHP:
<br>Motto: ' . $member['motto'] . '

Then under that line add this:

PHP:
<br>Position: ' .$member['position'] . ' </b> <br>Country: <b>' .$member['country'] . '</b> <br>Age: <b> ' . $member['age'] . ' </b> Years Old

Third:
Then edit the position, age, country in the user's table.

Then it's Done. Sorry for the 2nd and 3rd part that has no picture's Phpmyadmin messed up >.<

Here's mine :)

2lmx4x4.jpg

Please like and Comment if it helps :)
when I ran the sql it said
Error : You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'ALTER TABLE `users` ADD `age` varchar(10)
 

IPMB1

Member
Jan 1, 2013
249
20
when I ran the sql it said
Error : You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'ALTER TABLE `users` ADD `age` varchar(10)
Add them one by one.
 

Users who are viewing this thread

Top