el3m3nt.. lol.. you didnt even bother to change at least the install.txt look from my hack? you should do something. put a credit note in your files. you released this hack, because you got "inspired" from my work... them you got creative and copied some code bits from vbPortal? also you forgot to put a credit note for all the hacks you implemented in that index.php, hacks that are available here. did you wrote the "today online users" hack?
how colud you create your own hack and dont even change the variables or the install.txt? example:
Your file:
PHP Code:
// vBindex - start
// -------------------------
// news
// -------------------------
$newsquery=$DB_site->query("SELECT * FROM thread WHERE forumid='$newsforum' ORDER BY dateline DESC LIMIT $newsposts");
while ($news=$DB_site->fetch_array($newsquery)) {
$newsthreadid=$news[threadid];
$newstitle=$news[title];
$newstime=vbdate($timeformat,$news[dateline]);
$newsdate=vbdate($dateformat,$news[dateline]);
$newsusername=$news[postusername];
$newsuserid=$news[postuserid];
$comments=$news[replycount];
$getnews=$DB_site->query_first("SELECT * FROM post WHERE threadid='$newsthreadid' ORDER BY postid ASC LIMIT 1");
$newstext=bbcodeparse($getnews[pagetext]);
if ($news[iconid]!=0) { $icon="<img src=\"{imagesfolder}/icons/icon$news[iconid].gif\" border=0>"; } else { $icon=""; }
eval("\$newsbits .= \"".gettemplate('home_newsbit')."\";");
}
eval("\$news = \"".gettemplate('home_news')."\";");
My file:
PHP Code:
// news ***************************
$newssql=$DB_site->query("SELECT * FROM thread
WHERE forumid='$newsforum'
ORDER BY dateline DESC LIMIT $newsposts");
while ($news=$DB_site->fetch_array($newssql)) {
$newsthreadid=$news[threadid];
$newstitle=$news[title];
$newstime=vbdate($timeformat,$news[dateline]);
$newsdate=vbdate($dateformat,$news[dateline]);
$newsusername=$news[postusername];
$newsuserid=$news[postuserid];
$getnewssql=$DB_site->query_first("SELECT * FROM post
WHERE threadid='$newsthreadid'
ORDER BY postid ASC LIMIT 1");
$newstext=bbcodeparse($getnewssql[pagetext]);
$newsavatarurl=getavatarurl($newsuserid);
if ($newsavatarurl=="") {
$newsavatarurl="{imagesfolder}/clear.gif";
}
eval("\$newsavatar = \"".gettemplate('home_avatar')."\";");
eval("\$newsbits .= \"".gettemplate('home_newsbits')."\";");
}
// end news ***********************
Your Install text file:
Code:
+-----------------------------------------------------------------------+
| vBindex 1.2 - by el3m3nt (el3m3nt@gmx.ch) |
+-----------------------------------------------------------------------+
| vB.org Thread: https://vborg.vbsupport.ru/showthrea...threadid=37021
| |
| Demo: http://partylife.ch |
| Screenshots: http://partylife.ch/misc/vbindex1-5.jpg |
+-----------------------------------------------------------------------+
+-----------------------------------------------------------------------+
| Installation |
+-----------------------------------------------------------------------+
My Install text file:
Code:
+-----------------------------------------------+
| vbHome (lite) |
| Version 1.0 |
+-----------------------------------------------+
| By Nakkid (vBulletin.org hacker)
| Email(Messenger): nakkidone@hotmail.com
|
+--------------------------------------------------------------------------+
| This hack will create a vBulletin(powered) homepage for your website. |
| |
| The advantage of this hack is that you can interact better your |
| website with vBulletin. |
| vbHome (lite) is fully customizable through vBulletin templates, so |
| it's very easy to achieve any look or webdesign you want. |
| |
| NOTE: You are allowed to use this hack only if you agree not to remove |
| the vbHome (lite) link in the custom footer. |
+--------------------------------------------------------------------------+
|
+-----------------------------------------------+
| TEMPLATES TO CREATE |
+-----------------------------------------------+
i really dont care if other people who you copied the hacks into your file dont mind about this, but for me, i want you to put a credit note into your index.php (or install text) file, stating that portions of your hack were inspired from vbHome (lite) by nakkid.
let me ask you this. if i would not release this hack, whould you release it by yourself?