vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vBulletin 3.6 Add-ons (https://vborg.vbsupport.ru/forumdisplay.php?f=194)
-   -   Portal Software - MMO Recruitment (EQ, EQ2, LotR, Vanguard, WoW, Matrix Online, SWG, FFO) (https://vborg.vbsupport.ru/showthread.php?t=150449)

Warion 10-26-2008 10:38 PM

Quote:

Originally Posted by nightbloom (Post 1638023)
I have a question for anyone familiar with this mod. Could it be modified to be used by several guilds on one forum or is it just for one guild on like a guild forum. My forum isnt a guild forum, just a game forum for one specific game. Im looking for something like this that would be used by a number of different guilds.... like a guild database for the game when people are looking for a guild to join.

The current version that Turnipofdoom has just released is for multiple guilds and games. The only thing is it has only 1 updater for all the games you have. I have it installed on my site. Legend. Thou I dont know if ya can do multiple of the same game.

I do know Turnipofdoom is working on it currently with the final touches.

Woodstock23 01-14-2009 09:12 AM

heya, awesome addon you made;)

all works fine atm but sometimes i get the warning msg:

Warnung: Invalid argument supplied for foreach() in /modules/cls_warcraft_recruit.php (Zeile 28)

can you help i cant find a wrong thing at this line.

and is it posible to update this mod because the new class Death Night is not in the actual list.


thank you so much !!

LordShan 01-19-2009 06:34 PM

hello (sorry for my poor english)

Thank you for this module, same request for lotro with two new class : rune keeper and warden.

Narotic 02-22-2009 12:01 PM

This is a greta addon and very useful tool for guilds who don't want to succumb to some kind of instant website in a box service! Thanks for the addon!

I'm by no means a coder, but dable in manipulating code for my own purposes. I've been trying to add a class for WoW, the Death Knight, but have been unsucessful in my attempts. Has anyone done this succesfully that wouldn't mind sharing?

aflax045 03-19-2009 03:17 AM

I'm not sure if there was an update floating around, I looked and could not find one. I edited this to add the Deathknight portion. (I take no credit for any of the actual coding, I merely just made some additions)

It should work, I tested it on my website; included an image for deathknight as well.

I'm not sure if it was just an odd execution, but the following templates did not update automatically and I had to alter them by hand:
adv_portal_warcraft_recruit
adv_portal_warcraft_recruit_updater

There are instructions in a text document in the zipped file in case you have to manually alter the templates.

A working version can be seen here.

Enjoy.

tcahuzak 04-15-2009 10:16 AM

Tested: vBulletin v3.8.2 + vBadvanced v3.1.0

Installing the product:
  • Download recruit.zip from the attachment provided below. Copy the contents of the upload folder to your forum root, taking care not to overwrite directories, but to copy files into them.
  • Import mmoRecruit.xml from the Product Manager Interface.
  • Open the Game Recruitment menu in your AdminCP, select your game, and submit the form.
  • Once the game is selected, choose the last option (Populate Initial Game Data) to create and populate the initial game database.
  • Set the usergroups allowed to view and update your Update vBA CMPS Module (you'll create this in a minute.)
Create the Display vBa CMPS Module:
  • Add a new module from your vBa CMPS menu, select PHP file as the module type.
  • Name your module (Recruitment, Recuitment Needs, etc.) This is the module title that your users will see, so be picky!
  • If you want to link your module name to another page (such as a recruitment post), input your hyperlink under Module Wrapper Template Options - Module Link.
  • Select init_recruit.php as the file to include.
  • Leave Initialize BB Code Parser, Initialize Forum Permissions, Initialize Moderator Cache, Initialize Ignored Users and Clean File Output to NO.
  • Choose Use Module Wrapper Template: Yes (this is important, you will break the page without it!)
  • Make sure all usergroups are selected and save the form.
  • Add your module to your destination vBa CMPS page.

You should now see the display box on your destination page, with each class set to the default value of 1. If you do not, go back and check the instructions to make sure you haven't missed any steps.

Create the Update vBa CMPS Module:
  • Add a new module from your vBa CMPS menu, select PHP file as the module type.
  • Name your module (Recruitment Update, Update Recruitment, etc.)
  • Select update_recruitment.php as the file to include.
  • Leave Initialize BB Code Parser, Initialize Forum Permissions, Initialize Moderator Cache, Initialize Ignored Users and Clean File Output to NO.
  • Choose Use Module Wrapper Template: Yes (this is important, you will break the page without it!)
  • Set Collapse by default to your preference.
  • Make sure you only select usergroups (Example: Guild Leader, Officers and Classleaders) who are allowed to see and update the module and save the form.
  • Add your module to your destination vBa CMPS page.

Add AJAX Support to the updater form (OPTIONAL):
  • Inside the header template (or headerinclude, depending on where your <head> </head> tags exist in your default style) put:
Code:

<script type="text/javascript" src="http://www.mydomain.com/forum/clientscript/mmoRecruit.js"></script>
The AJAX has been tested on Firefox and IE7, if the requestor code fails the form will just submit normally.

To Uninstall:
  • Remove both modules from the page they are displayed on inside vBa CMPS.
  • Delete all uploaded files. (To remove just the Game Recruitment link from your AdminCP, delete cpnav_recruit.xml from includes/xml.)
  • Run the following SQL query (may need to add a prefix to each table):
Code:

DROP TABLE recruitment;
DROP TABLE game_rec_settings;

Troubleshooting:

If the product import fails you can still do it by hand.
The templates are in forum_templates directory, the name of the file is the template name that needs to be used.

Creating the SQL Tables by hand.
Code:

CREATE TABLE game_rec_settings(
        game VARCHAR( 120 ) NOT NULL,
        enabled INT(2) NOT NULL,
        groups VARCHAR( 12 ) NOT NULL                       
)ENGINE = MYISAM;

You may need to add the table prefix.
Code:

INSERT INTO game_rec_settings(game,enabled,groups)VALUES('','1','6,7,5');
Again you may need to include the table prefix

Changelog
  • Configuration of permissions "block" (admincp --> Game Recruitment --> Settings) has been removed! It's now controlled by vBadvanced "Module Permissions".
  • Death Knight class is fully implemented! When you "Populate Inital Game Data (Import Data)" the correct table will be created for the class: Death Knight.
  • Templates fixed for Death Knight.

Faq
  • Why did you removed the permissions "block" (admincp --> Game Recruitment --> Settings) to specify wich usergroups can view and update the recruitment feature?
  • Well I received lot of complains of the Guild Master, Officers and Class Leaders they can't see the update module (feature) on the mainpage.
    Sometimes it appear and sometimes its totally disappeared.
    I think it's an issue of incompatibility of vBulletin v3.8.2 + vBadvanced v3.1.0 (I installed at the moment of writing)

acidpr 05-29-2009 07:08 PM

I got the app running but when i try to update a class it takes me to "http://index.php/?do=recruit_update" and does not update the DB..

Naberius 06-10-2009 03:10 AM

I'm using this on 3.8.2 with vba 3.2.0 and not having any problems, even used the nice little class color modification for WoW.

http://www.grievous.us/

switchstance 07-22-2009 01:30 PM

I am having a strange problem in which a specific user cannot view the "Update Recruitment" panel no matter what I have tried. I created a dummy user with the exact same usergroup membership as this user and the dummy user CAN view the "Update Recruitment" panel. I even went as far as to make the problematic user an ADMIN, and it STILL can't view the panel.

Can anyone offer any suggestions on where to look, or what the problem may be? Perhaps something related to cached permissions or user settings somewhere in the vBulletin database?

This is literally driving me mad!

Thanks in advance for any suggestions!

turnipofdoom 07-22-2009 02:49 PM

I haven't touched this mod in quite sometime.

I don't have access to a newer VB site to work on, but if people are still using this and interested in updates, I'd be happy to put sometime in, I just need a test site to work off of.

switchstance, I can give ya a hand if you toss me a PM


All times are GMT. The time now is 09:58 AM.

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.01299 seconds
  • Memory Usage 1,760KB
  • Queries Executed 10 (?)
More Information
Template Usage:
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (4)bbcode_code_printable
  • (1)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (1)pagenav_pagelinkrel
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (10)printthreadbit
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • showthread
Included Files:
  • ./printthread.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/class_bbcode_alt.php
  • ./includes/class_bbcode.php
  • ./includes/functions_bigthree.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
  • printthread_start
  • pagenav_page
  • pagenav_complete
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete