[RC] Multi-Race Rank Themes mod AKA Ranking Sets (1.3.6)

A place for MOD Authors to post and receive feedback on MODs still in development. No MODs within this forum should be used within a live environment!
Suggested Hosts
mluffy
Registered User
Posts: 13
Joined: Fri Nov 16, 2012 10:23 pm

Re: [RC] Multi-Race Rank Themes mod AKA Ranking Sets (1.3.6)

Post by mluffy »

Thanks!
From Dominican Republic, My Lenguaje Is Spanish n_n
User avatar
Jessica
Former Team Member
Posts: 4342
Joined: Sun Jul 18, 2010 2:53 pm
Location: Pennsylvania, USA
Name: Jessica

Re: [RC] Multi-Race Rank Themes mod AKA Ranking Sets (1.3.6)

Post by Jessica »

EDIT: did you do the SQL queries?

Code: Select all

ALTER TABLE phpbb_users ADD user_rank_theme INT DEFAULT 1 NOT NULL ;
ALTER TABLE phpbb_ranks ADD rank_theme INT DEFAULT 1 NOT NULL ;

UPDATE phpbb_ranks SET rank_theme = -1 WHERE rank_special = 1;

CREATE TABLE phpbb_rank_themes (
  rtheme_id smallint(5) NOT NULL auto_increment,
  rtheme_title varchar(50) default NULL,
  rtheme_public tinyint(1) default '0',
  PRIMARY KEY  (rtheme_id)
) CHARSET=utf8 COLLATE=utf8_bin;

INSERT INTO phpbb_rank_themes VALUES (-1, 'Special', 0);
INSERT INTO phpbb_rank_themes VALUES (1, 'Default', 1);
Pro-choice, Atheist, Pro-LGBT rights
Everybody is a genius. But if you judge a fish by its ability to climb a tree, it will live its whole life believing that it is stupid. - Albert Einstein

Return to “[3.0.x] MODs in Development”