View Single Post
spiider
AlliedModders Donor
Join Date: Jan 2010
Old 03-19-2010 , 10:59   Re: Change Name (with SQL)
Reply With Quote #8

Code:
-- ----------------------------
-- Table structure for `users`
-- ----------------------------
DROP TABLE IF EXISTS `users`;
CREATE TABLE `users` (
  `steamid` varchar(32) default 'STEAM_0:0:0000',
  `name` varchar(32) default NULL,
  PRIMARY KEY  (`steamid`),
  UNIQUE KEY `unique` (`name`)
) ENGINE=MyISAM AUTO_INCREMENT=328 DEFAULT CHARSET=latin1;
The script change name automatic, but your previous name ingame will be the same in console only. Only in the server will be the db name. Later i post some screen.
spiider is offline