Posted 10 years ago
·
Author
This basic script will prevent specified users from viewing your homepage. It's not bulletproof, there are ways around it, but for your average IMVU user, this should be just fine.
To use this script, replace "CID" in this line: with any customer id of any account you want to block. To find out someone's CID, you can use our avatar link generator which will tell you their cid under their "here for" section.
https://www.imvumafias.org/imvu/Tools.html
//IMVU Block Script by D.M v1.0
//
//Prevent specified users from viewing your homepage
//
<script type="text/javascript">
$(document).ready(function() {
{
if(window.IMVU.data.customerID == 0)
{
//Hide the avatar-homepage content
document.getElementById("avatar-homepage").style.visibility = 'hidden';
}
else
{
var array_bcids = ["CID","CID","CID"];
if(array_bcids.indexOf(window.IMVU.data.customerID.toString()) != -1)
{
//Hide the avatar-homepage content
document.getElementById("avatar-homepage").style.visibility = 'hidden';
}
}
}
});
</script>
To use this script, replace "CID" in this line: with any customer id of any account you want to block. To find out someone's CID, you can use our avatar link generator which will tell you their cid under their "here for" section.
https://www.imvumafias.org/imvu/Tools.html