PDA

View Full Version : Random Smilies in reply boxes for vb3


SiXXGuNNZ
01-07-2004, 03:58 AM
<a href="https://vborg.vbsupport.ru/showthread.php?t=34161" target="_blank">for vb2</a>

I assume it is line 244 or 437 or both on misc.php in the root folder, I just do not know what to change :ermm:

SiXXGuNNZ
01-07-2004, 04:29 AM
Line 244

$smilies = $DB_site->query("
SELECT smilietext,smiliepath,smilie.title,imagecategory.t itle AS category
FROM " . TABLE_PREFIX . "smilie AS smilie
LEFT JOIN " . TABLE_PREFIX . "imagecategory AS imagecategory USING(imagecategoryid)
ORDER BY imagecategory.displayorder, smilie.displayorder
");

Line 437

$smilies = $DB_site->query("
SELECT smilietext AS text, smiliepath AS path, smilie.title, smilieid,
imagecategory.title AS category
FROM " . TABLE_PREFIX . "smilie AS smilie
LEFT JOIN " . TABLE_PREFIX . "imagecategory AS imagecategory USING(imagecategoryid)
ORDER BY imagecategory.displayorder, smilie.displayorder
");

I would think the right way to do this hack would be:

Line 244

$smilies = $DB_site->query("
SELECT smilietext,smiliepath,smilie.title,imagecategory.t itle AS category
FROM " . TABLE_PREFIX . "smilie AS smilie
LEFT JOIN " . TABLE_PREFIX . "imagecategory AS imagecategory USING(imagecategoryid)
ORDER BY imagecategory.RAND, smilie.RAND ");

and:

Line 437

$smilies = $DB_site->query("
SELECT smilietext AS text, smiliepath AS path, smilie.title, smilieid,
imagecategory.title AS category
FROM " . TABLE_PREFIX . "smilie AS smilie
LEFT JOIN " . TABLE_PREFIX . "imagecategory AS imagecategory USING(imagecategoryid)
ORDER BY imagecategory.RAND, smilie.RAND
");

SiXXGuNNZ
01-07-2004, 09:21 PM
yeah, this don't work, does anybody know the fix?

SiXXGuNNZ
01-15-2004, 01:52 AM
am I really the only one who likes to have random smilies appear? :(

Zachery
01-15-2004, 02:11 AM
am I really the only one who likes to have random smilies appear? :(
set their id to 1 all of them they will appear randomly

Gio Takahashi
01-15-2004, 05:13 PM
How would I do that?

NTLDR
01-15-2004, 05:58 PM
I posted the code to change in another thread yesterday.

Gio Takahashi
01-15-2004, 08:33 PM
I had to search through your post to find it, and it worked.

For those who are wondering what thread it is, its This one (https://vborg.vbsupport.ru/showthread.php?t=60201)

*arie
01-15-2004, 09:57 PM
thanks, i got it working now. :D

SiXXGuNNZ
01-16-2004, 01:46 AM
yer my hero :)

gmarik
01-17-2004, 07:18 AM
where is the final version?

SiXXGuNNZ
01-17-2004, 07:30 AM
where is the final version?
https://vborg.vbsupport.ru/showpost.php?p=462320&postcount=2