warezscence private message pop up

shaun166

New Member
anyone here vist warezscence? i would like to know the mod they used...
when someone private message you it will pop a box.
 
If you run this query in PHPMyAdmin, all your current users' options will be set to ON.
UPDATE user SET pmpopup=1;

If you want the option to be turned on by default, when users are registering, run this query in PHPMyAdmin
ALTER TABLE `user` CHANGE `pmpopup` `pmpopup` SMALLINT( 6 ) DEFAULT '1' NOT NULL;
 
Back
Top