Go Back   vb.org Archive > vBulletin Modifications > Archive > vB.org Archives > General > Member Archives
FAQ Community Calendar Today's Posts Search

Reply
 
Thread Tools
HELP NEEDED.. should be simple fix Details »»
HELP NEEDED.. should be simple fix
Version: , by E E is offline
Developer Last Online: Mar 2008 Show Printable Version Email this Page

Version: Unknown Rating:
Released: 03-25-2002 Last Update: Never Installs: 0
 
No support by the author.

ok.. in addition too the points hack im trying too make it so u get an automatic number of points for posting new threads in certain forums.... the number of points u get changes thru the different forums... anyway this is what i have too add in my newthread.php but when i do so all new threeads end up in the forum of the last If statement related too $dapadd
PHP Code:
// ############################## start add DAP #################################\
if ($HTTP_POST_VARS['action']!=="newthread" and $HTTP_POST_VARS['action']!=="postthread") {
// start ap\
$dapfield="field6";
if (
$forumid="19"){
$dapadd=4;
}
if (
$forumid="2"){
$dapadd=2;
}
if (
$forumid="16"){
$dapadd=2;
}
if (
$forumid="8"){
$dapadd=1;
}
if (
$forumid="20"){
$dapadd=1;
}
if (
$forumid="21"){
$dapadd=5;
}
if (
$forumid="19"){
$dapadd=4;
}
if (
$forumid="40"){
$dapadd=2;
}
if (
$forumid="41"){
$dapadd=2;
}
$dapstr=$DB_site->query_first("SELECT $dapfield FROM userfield WHERE userid='$bbuserinfo[userid]'");
$dap=$dapstr[$dapfield];
$dapamt=$dapstr[$dapfield];
if (
$dap='') {
$dap=0;
}
else {
$postdap = ($dapamt $dapadd);
$DB_site->query("UPDATE userfield SET field6='$postdap' WHERE userid='$bbuserinfo[userid]'");
}

All new threads goto the forum of the last if statement:
PHP Code:
if ($forumid="41"){
$dapadd=2;

^^that one...
You still get the right points for making threads in these forums but they dont stay there... help needed as soon as possible.....
Thanks in advance
---
E

Show Your Support

  • This modification may not be copied, reproduced or published elsewhere without author's permission.

Comments
  #2  
Old 03-25-2002, 10:00 AM
Lesane's Avatar
Lesane Lesane is offline
 
Join Date: Oct 2001
Location: The Netherlands
Posts: 1,149
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

PHP Code:
$DB_site->query("UPDATE userfield SET field6=field6+$postdap WHERE userid='$bbuserinfo[userid]'"); 
Reply With Quote
  #3  
Old 03-26-2002, 03:23 AM
E's Avatar
E E is offline
 
Join Date: Mar 2002
Location: Fieldale Virginia
Posts: 421
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

ok... i dont see how that helps.. ...wouldnt that just make it the current Point value x2 + dapadd... .that doesnt help with the problem of threads ending up in wrong forums.... any other help?
Reply With Quote
  #4  
Old 03-26-2002, 05:46 AM
E's Avatar
E E is offline
 
Join Date: Mar 2002
Location: Fieldale Virginia
Posts: 421
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Anyone wanna actually help it would be gretaly appreciated
Reply With Quote
  #5  
Old 03-26-2002, 07:45 AM
Issvar Issvar is offline
 
Join Date: Mar 2002
Posts: 68
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

You write if (forumid=1) { ... }, change that to if (forumid==1) { ... }, same for other forum numbers. Currently the forumid is changed all the time instead of checked.
Reply With Quote
  #6  
Old 03-26-2002, 07:56 AM
Admin's Avatar
Admin Admin is offline
Coder
 
Join Date: Oct 2023
Location: Server
Posts: 1
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Code:
// ############################## start add DAP #################################
if ($HTTP_POST_VARS['action']!='newthread' and $HTTP_POST_VARS['action']!='postthread') {
	// start ap
	$dapfield = 'field6';

	switch ($forumid) {
		case 19:
			$dapadd = 4;
			break;
		case 2:
		case 16:
		case 40:
		case 41:
			$dapadd = 2;
			break;
		case 8:
		case 20:
			$dapadd = 1;
			break;
		case 21:
			$dapadd = 5;
			break;
	}

	$DB_site->query("UPDATE userfield SET $dapfield=$dapfield+$dapadd WHERE userid=$bbuserinfo[userid]");
}
Reply With Quote
  #7  
Old 03-26-2002, 08:01 AM
E's Avatar
E E is offline
 
Join Date: Mar 2002
Location: Fieldale Virginia
Posts: 421
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

thanks guys ill go test this now...
Reply With Quote
  #8  
Old 03-26-2002, 09:15 AM
E's Avatar
E E is offline
 
Join Date: Mar 2002
Location: Fieldale Virginia
Posts: 421
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

works great thanks FireFLy
Reply With Quote
Reply


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT. The time now is 02:28 PM.


Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.
X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.04130 seconds
  • Memory Usage 2,279KB
  • Queries Executed 23 (?)
More Information
Template Usage:
  • (1)SHOWTHREAD
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (1)ad_showthread_beforeqr
  • (1)bbcode_code
  • (3)bbcode_php
  • (1)footer
  • (1)forumjump
  • (1)forumrules
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (1)modsystem_post
  • (1)navbar
  • (6)navbar_link
  • (120)option
  • (8)post_thanks_box
  • (8)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (8)post_thanks_postbit_info
  • (7)postbit
  • (8)postbit_onlinestatus
  • (8)postbit_wrapper
  • (1)spacer_close
  • (1)spacer_open
  • (1)tagbit_wrapper 

Phrase Groups Available:
  • global
  • inlinemod
  • postbit
  • posting
  • reputationlevel
  • showthread
Included Files:
  • ./showthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/functions_bigthree.php
  • ./includes/class_postbit.php
  • ./includes/class_bbcode.php
  • ./includes/functions_reputation.php
  • ./includes/functions_post_thanks.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • showthread_start
  • showthread_getinfo
  • forumjump
  • showthread_post_start
  • showthread_query_postids
  • showthread_query
  • bbcode_fetch_tags
  • bbcode_create
  • showthread_postbit_create
  • postbit_factory
  • postbit_display_start
  • post_thanks_function_post_thanks_off_start
  • post_thanks_function_post_thanks_off_end
  • post_thanks_function_fetch_thanks_start
  • post_thanks_function_fetch_thanks_end
  • post_thanks_function_thanked_already_start
  • post_thanks_function_thanked_already_end
  • fetch_musername
  • postbit_imicons
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • postbit_display_complete
  • post_thanks_function_can_thank_this_post_start
  • tag_fetchbit_complete
  • forumrules
  • navbits
  • navbits_complete
  • showthread_complete