Go Back   vb.org Archive > vBulletin Modifications > Archive > vB.org Archives > vBulletin 3.6 > vBulletin 3.6 Add-ons
FAQ Community Calendar Today's Posts Search

Reply
 
Thread Tools
World of Warcraft Recruitment Form Details »»
World of Warcraft Recruitment Form
Version: 1.0.3, by elricstorm elricstorm is offline
Developer Last Online: Nov 2010 Show Printable Version Email this Page

Category: Add-On Releases - Version: 3.6.x Rating:
Released: 06-22-2007 Last Update: 07-23-2007 Installs: 127
Uses Plugins Template Edits
 
No support by the author.

What does this Mod do?
[hr].[/hr]

This is a customizable recruitment form for use with World of Warcraft. It has full customizations and style features built in via vboptions. There are no form edits, template edits, etc. of any kind necessary.

Current Version
[hr].[/hr]

Current Version = 1.0.3

What is required?
[hr].[/hr]

You will essentially need to perform:
  • One product XML import
Features of this Mod
[hr].[/hr]
  • All customization options are right in vboptions!
  • 3 vboption sections to set options for your form.
  • Ability to turn on/off every section and every question (other than generic character)
  • Ability to toggle on custom questions per section
  • Ability to set font and highlight colors for the form and answer sections
  • Fully integrated Character Information Section
  • All character information built systematically so you gain as much information as needed.
  • Class, level, race, attunements, keys, heroics, gear, talents, resists, professions, days played
  • 2 extra custom questions for CI section
  • Fully integrated Personal Information Section
  • Gender, Age, timezone, referrals, active play times, special questions, personality and disposition, previous guild information, summary sections
  • 2 extra custom questions for PI section
  • Ability to debug any form questions and answers.
  • Fully integrated via your own website style and active inherits that style.
  • More than 40 questions to choose and select from.
  • Able to set redirects to forums, threadids, PMs, email.
  • Able to integrate polls and decide on public/private views.
  • Able to set group permissions for using the form.
Instructions
[hr].[/hr]
  • Import the product file through your admincp.
  • Go into your vboptions section and you will find 3 sections. I will briefly outline them below:
Elricstorm's World of Warcraft Configuration Settings
  • Houses all of the generic settings for your form, including name, summary options, redirect options, and many more features.
Elricstorm's World of Warcraft Form Settings
  • Houses all of the settings for your form, including faction, level access, and toggle on/off settings for sections and all questions.
Elricstorm's World of Warcraft Form Style Settings
  • Houses one font, and 4 color header sets that you can color code.
Once finished, remember to write down whatever name you set in the configuration setting for your "What is the default URL for your form?". The default is "wow_form". In order to access your form you need to set a URL link to:

http://yourdomain.com/yourforums/new...hp?do=wow_form

.. with the ending only changing if you decide to change this configuration setting in vboptions.

All of the vboptions have full title/descriptions so understanding what they do and how to work them should be a piece of cake, even for the most novice of users. If, however, you still have questions or concerns, please direct them here. Please remember that I only provide support for those that click "INSTALL".

By clicking INSTALL you not only receive support but anytime I make a newer version or provide feature updates, you receive them via mail.

Changes
[hr].[/hr]

Version 1.0.1 Fixes
  • Fixed the question 3 and question 4 answers as they were pointing to incorrect variables.
Version 1.0.1 Changes
  • Completely vbphrased all English and gaming terms in the addon. You can now adjust phrases and change the wording for yourself. This was especially important for European communities that might want to change the languages.
  • Go into admincp->languages and phrases-> and perform a search against the product using the "w" character as the search term. You will find all of the phrases that are editable here. The terms are "wow_form_(etc)".
Version 1.0.2 Changes & Fixes
  • Fixed vboptions for groups being checked even when toggled off. Now if you toggle groups ON, it only works if you actually add group numbers, and if you toggle it off, it does not check for groups.
  • Fixed answer template for newattunement keys.
  • Fixed linking for what you enjoy most to being linked with the timezone enable.
  • Fixed/Added vbphrasing for HEROIC, RAID, etc. keyphrases on answer template.
  • Addon is now completely phrased or optioned.
Version 1.0.3 Fixes
  • Fixed the list problem with the answer template for BC Instances
  • Fixed the answer template variables for answers 27 and 28.
SPECIAL THANKS TO:
[hr].[/hr]
[name]Abe1[/name]:
For his initial form 4.0 MOD and showcasing the strength of forms. His mod can be found at the following location: https://vborg.vbsupport.ru/showthread.php?t=126676

Show Your Support

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

Comments
  #22  
Old 06-26-2007, 01:31 AM
elricstorm's Avatar
elricstorm elricstorm is offline
 
Join Date: Aug 2006
Location: Stamford, CT
Posts: 216
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by ssslippy View Post
Ok I figured out the bug I was having, Turning on and off usergroup permission does nothing it always checks the usergroup.
I'll look into that. I don't recall seeing any issue like that on my own site, but it could be something small I missed.
Reply With Quote
  #23  
Old 06-26-2007, 01:39 AM
elricstorm's Avatar
elricstorm elricstorm is offline
 
Join Date: Aug 2006
Location: Stamford, CT
Posts: 216
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by ssslippy View Post
Ok I figured out the bug I was having, Turning on and off usergroup permission does nothing it always checks the usergroup.
Yeah I found out what I missed. Thanks for the catch mate.

This code here:

PHP Code:
$usergroups_enable $vbulletin->options['wow_usergroups_enable'];
$groupnos str_replace(" """$vbulletin->options['wow_usergroup_numbers']);

if (
$groupnos AND !in_array($vbulletin->userinfo['usergroupid'],explode(",",$groupnos ))) {
    
print_no_permission();

Should be...

PHP Code:
$usergroups_enable $vbulletin->options['wow_usergroups_enable'];
$groupnos str_replace(" """$vbulletin->options['wow_usergroup_numbers']);

if (
$usergroups_enable) {
    if (
$groupnos AND !in_array($vbulletin->userinfo['usergroupid'],explode(",",$groupnos ))) {
        
print_no_permission();
    }

I'll fix that in the next version. I also want to add a few adjustments. If it bothers you, you can edit that piece in the plugin for now.
Reply With Quote
  #24  
Old 06-26-2007, 12:38 PM
elricstorm's Avatar
elricstorm elricstorm is offline
 
Join Date: Aug 2006
Location: Stamford, CT
Posts: 216
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

If anyone is interested, I'm going to begin work on a third project for raid progression. Here's the URL for the discussion:

https://vborg.vbsupport.ru/showthread.php?p=1276906
Reply With Quote
  #25  
Old 06-27-2007, 09:29 AM
Damien73 Damien73 is offline
 
Join Date: Mar 2006
Posts: 5
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Hi Elricstorm.
this pluggin is only for the version 3.6.7?
Reply With Quote
  #26  
Old 06-27-2007, 12:26 PM
elricstorm's Avatar
elricstorm elricstorm is offline
 
Join Date: Aug 2006
Location: Stamford, CT
Posts: 216
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Damien73 View Post
Hi Elricstorm.
this pluggin is only for the version 3.6.7?
No, it's only been tested in 3.6.7 and I did not put any dependencies on it except I believe for 3.6.0. I'd have to check again. It could be used for other versions, I'm almost certain of it. However, I've only tested with the latest version. I changed it to 3.6.x so people won't get confused.
Reply With Quote
  #27  
Old 06-27-2007, 05:38 PM
Yukino_AE Yukino_AE is offline
 
Join Date: Jul 2005
Posts: 105
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

would this work with versions of vb 3.5 x ??

the reason i ask is the php version that my host is running does not meet the requirements of vb 3.6.x yet and they are unwilling to update it at this time. so i'm stuck using vb 3.5.7 and i really would like to use both this mod and your calendar mod but it gives me errors when trying to import the xml files.

is there a way to get those 2 mods to work with vb 3.5.7?? plz?
Reply With Quote
  #28  
Old 06-27-2007, 06:21 PM
elricstorm's Avatar
elricstorm elricstorm is offline
 
Join Date: Aug 2006
Location: Stamford, CT
Posts: 216
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Edit the xml and change the dependancy to 3.5.0 and try again. If it works, I'll remove the dependancy altogether.
Reply With Quote
  #29  
Old 06-27-2007, 09:25 PM
Yukino_AE Yukino_AE is offline
 
Join Date: Jul 2005
Posts: 105
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by elricstorm View Post
Edit the xml and change the dependancy to 3.5.0 and try again. If it works, I'll remove the dependancy altogether.
i tried that and it didn't work. blaaaah. v_v
Reply With Quote
  #30  
Old 06-27-2007, 10:05 PM
ssslippy ssslippy is offline
 
Join Date: Jan 2006
Posts: 877
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Ok another bug found When setting Turn on display questions for OLD content attunements/keys. to 0 it disables all output of keys on the post.
Reply With Quote
  #31  
Old 06-27-2007, 10:29 PM
ssslippy ssslippy is offline
 
Join Date: Jan 2006
Posts: 877
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

PHP Code:
<if condition="$oldattunements_enable==1"
is listed 2x in the output section this must be changed to
PHP Code:
<if condition="$newattunements_enable==1"
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 11:08 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.04500 seconds
  • Memory Usage 2,332KB
  • Queries Executed 25 (?)
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
  • (4)bbcode_php
  • (4)bbcode_quote
  • (1)footer
  • (1)forumjump
  • (1)forumrules
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (1)modsystem_post
  • (1)navbar
  • (6)navbar_link
  • (120)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (1)pagenav_pagelinkrel
  • (11)post_thanks_box
  • (11)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (11)post_thanks_postbit_info
  • (10)postbit
  • (11)postbit_onlinestatus
  • (11)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
  • pagenav_page
  • pagenav_complete
  • tag_fetchbit_complete
  • forumrules
  • navbits
  • navbits_complete
  • showthread_complete