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

Reply
 
Thread Tools
Realm Conquest System Details »»
Realm Conquest System
Version: 1.3.0, by Jaxel Jaxel is offline
Developer Last Online: Sep 2013 Show Printable Version Email this Page

Category: Major Additions - Version: 3.8.x Rating:
Released: 04-21-2009 Last Update: 04-28-2009 Installs: 211
DB Changes Uses Plugins
Additional Files  
No support by the author.

This Conquest System is very similar to the vBarmy system, except it has a few specific fundamental changes. Instead of every player working alone to fight other players, players work together as a single nation to fight other players who are members of different nations. Everything else in the system is pretty much self-explanitory.

Product Demo:
http://www.8wayrun.com/conquest.php
Installation Procedure:
  1. Upload all files in the "upload" directory to your forum root.
  2. CHMOD /conquest/nations to 777.
  3. Import the product "product-conquest.xml" in your Product Manager.
Upgrade Procedure:
  1. Upload all files in the "upload" directory to your forum root.
  2. Import the product "product-conquest.xml" in your Product Manager.

Don't forget to click INSTALL!

If you want to donate, I'm all for it... as I'm an unemployed computer programmer...

Download Now

File Type: zip Conquest-1.3.0.zip (208.2 KB, 1187 views)

Screenshots

File Type: jpg conquest-index.jpg (259.9 KB, 0 views)
File Type: jpg conquest-home.jpg (222.8 KB, 0 views)
File Type: jpg conquest-armory.jpg (212.6 KB, 0 views)
File Type: jpg conquest-barracks.jpg (258.6 KB, 0 views)
File Type: jpg conquest-scout.jpg (218.4 KB, 0 views)
File Type: jpg conquest-admin-settings.jpg (238.0 KB, 0 views)
File Type: jpg conquest-admin-nations.jpg (217.8 KB, 0 views)
File Type: jpg conquest-admin-armor.jpg (190.7 KB, 0 views)
File Type: jpg conquest-admin-reset.jpg (217.4 KB, 0 views)

Show Your Support

  • This modification may not be copied, reproduced or published elsewhere without author's permission.
2 благодарности(ей) от:
Developerz, kevin.kool

Comments
  #502  
Old 11-18-2009, 05:44 AM
dai-kun dai-kun is offline
 
Join Date: Jul 2005
Posts: 238
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by New Joe View Post
Where in the conquest.php script do you edit?
I followed the link but I am still not sure where to do the edit.
Thanks
after <?php or you can add it to your config.php file for the entire vbulletin. This method is only if you have your own dedicated server. If your host finds out that you are using more memory than they provide, they could contact you.

You can ask your host to increase the memory limit in the php.ini.
Reply With Quote
  #503  
Old 11-19-2009, 09:35 PM
geocodes geocodes is offline
 
Join Date: Dec 2008
Posts: 18
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Can anyone help me with that? im trying to make an VIP nation (only a certain usergroup would use this), but, how to do this? (where to set permitions of a certain nation)
Reply With Quote
  #504  
Old 11-20-2009, 04:21 AM
dai-kun dai-kun is offline
 
Join Date: Jul 2005
Posts: 238
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by geocodes View Post
Can anyone help me with that? im trying to make an VIP nation (only a certain usergroup would use this), but, how to do this? (where to set permitions of a certain nation)
It's pretty late and I'm tried so this is the best I can come up with.

Edit your conquest_enlist_bit template,

find
Code:
				<form action="$filename?do=homebase" method="post">
				<input type="hidden" name="securitytoken" value="$bbuserinfo[securitytoken]" />
				<input type="hidden" name="joinrequest" value="$nation[nationID]" />
				<input type="submit" value="<phrase 1="$nation[nName]">$vbphrase[conquest_enlist_join]</phrase>" />
				</form>
and replace it with
Code:
			<if condition="is_member_of($vbulletin->userinfo, 6,7)">
				<form action="$filename?do=homebase" method="post">
				<input type="hidden" name="securitytoken" value="$bbuserinfo[securitytoken]" />
				<input type="hidden" name="joinrequest" value="$nation[nationID]" />
				<input type="submit" value="<phrase 1="$nation[nName]">$vbphrase[conquest_enlist_join]</phrase>" />
				</form>
			<else />
			        <if condition="$nation[nationID] != 3">
				        <form action="$filename?do=homebase" method="post">
				        <input type="hidden" name="securitytoken" value="$bbuserinfo[securitytoken]" />
				        <input type="hidden" name="joinrequest" value="$nation[nationID]" />
				        <input type="submit" value="<phrase 1="$nation[nName]">$vbphrase[conquest_enlist_join]</phrase>" />
				        </form>
                                </if>
			</if>
Change the red numbers to your special VIP groups and the green number to that special nation.

First half of code lets special users join any and all nations.
Second half prevents users not set in first part of code from joining specific nation.
Reply With Quote
  #505  
Old 11-20-2009, 05:15 AM
RokuDaMerlin RokuDaMerlin is offline
 
Join Date: Oct 2007
Location: Germany
Posts: 66
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

hello, i have the product complete edit .. my system have now the name Devils Vs Angels and is in german ;D

we can i add image fields for amor and weapons ?

you can see my project here

http://www.diespielhalle.de/conquest.php




greez from germany Roku
Reply With Quote
  #506  
Old 11-20-2009, 02:34 PM
geocodes geocodes is offline
 
Join Date: Dec 2008
Posts: 18
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by dai-kun View Post
It's pretty late and I'm tried so this is the best I can come up with.

Edit your conquest_enlist_bit template,

find
Code:
				<form action="$filename?do=homebase" method="post">
				<input type="hidden" name="securitytoken" value="$bbuserinfo[securitytoken]" />
				<input type="hidden" name="joinrequest" value="$nation[nationID]" />
				<input type="submit" value="<phrase 1="$nation[nName]">$vbphrase[conquest_enlist_join]</phrase>" />
				</form>
and replace it with
Code:
			<if condition="is_member_of($vbulletin->userinfo, 6,7)">
				<form action="$filename?do=homebase" method="post">
				<input type="hidden" name="securitytoken" value="$bbuserinfo[securitytoken]" />
				<input type="hidden" name="joinrequest" value="$nation[nationID]" />
				<input type="submit" value="<phrase 1="$nation[nName]">$vbphrase[conquest_enlist_join]</phrase>" />
				</form>
			<else />
			        <if condition="$nation[nationID] != 3">
				        <form action="$filename?do=homebase" method="post">
				        <input type="hidden" name="securitytoken" value="$bbuserinfo[securitytoken]" />
				        <input type="hidden" name="joinrequest" value="$nation[nationID]" />
				        <input type="submit" value="<phrase 1="$nation[nName]">$vbphrase[conquest_enlist_join]</phrase>" />
				        </form>
                                </if>
			</if>
Change the red numbers to your special VIP groups and the green number to that special nation.

First half of code lets special users join any and all nations.
Second half prevents users not set in first part of code from joining specific nation.
Im gonna test know... If works i will edit here.
EDIT: Worked great! thx.
Reply With Quote
  #507  
Old 12-08-2009, 11:20 AM
RokuDaMerlin RokuDaMerlin is offline
 
Join Date: Oct 2007
Location: Germany
Posts: 66
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

hmm can me a coder help ..

- i will add pictures for my weapons and amors ..

- i will add a upload system to the "homebase" (any user can upload a own picture "soldier or warrior") .. hmm

i am a code noob ..

when a coder here.. say "roku i help you or roku i coding this" i will pay the hard work !

(send me a email: info@mightycolors.com)

thx

--- edit:

i have now edit the barracks ..
+ remove all training levels (we have 20+ list give to long)
+ add pictures (and center the buttons)

preview:

(i hope you like it)



=) more Pictures more fun )
Reply With Quote
  #508  
Old 12-09-2009, 01:38 PM
RokuDaMerlin RokuDaMerlin is offline
 
Join Date: Oct 2007
Location: Germany
Posts: 66
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

sry for double post ..

my ideas for a new update:

- a user can only 1 attack become from the same user pro day
- auto refresh time
- weapons + amor + pictures
(pic <br> weapon titel <br> | power / money |)
- bite link ^^ for one click = 1 Gold or so
- the attacker can louse gold when the other have more power

i hope the owner can 1-2 or all from my wish-lish add

greez
Reply With Quote
  #509  
Old 12-11-2009, 07:59 AM
Differentiation Differentiation is offline
 
Join Date: Dec 2009
Location: Toronto, Canada
Posts: 13
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I am getting some errors.

Deprecated: Assigning the return value of new by reference is deprecated in URLHERE\vb\includes\init.php on line 55, 107, 111, 119, 130, 134, 142, 211, 289

and as well \includes\class_core.pph on line 2552.

What does this mean?
Reply With Quote
  #510  
Old 12-11-2009, 03:44 PM
v12kid's Avatar
v12kid v12kid is offline
 
Join Date: Feb 2006
Location: Washington D.C.
Posts: 189
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

shame this is unsupported

anyone want to take it over and fix/update? Maybe we can get a few people to donate to a developer to do that? I would certainly make a "donation" to get this working as I would LOVE to have this
Reply With Quote
  #511  
Old 12-11-2009, 06:02 PM
ragtek ragtek is offline
 
Join Date: Mar 2006
Location: austria, croatia
Posts: 1,630
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by v12kid View Post
shame this is unsupported

anyone want to take it over and fix/update? Maybe we can get a few people to donate to a developer to do that? I would certainly make a "donation" to get this working as I would LOVE to have this
i asked the developer if i'm allowed to take the project over and to create a own on this base, but he didn't answer.

and if i would make it without his permission, it wouldn't be ok(stealing^^)
also it would be very hard to support it, because my english is not the best
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 10:56 PM.


Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2024, vBulletin Solutions Inc.
X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.15166 seconds
  • Memory Usage 2,368KB
  • Queries Executed 26 (?)
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_code
  • (4)bbcode_quote
  • (1)footer
  • (1)forumjump
  • (1)forumrules
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (1)modsystem_post
  • (1)navbar
  • (4)navbar_link
  • (120)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (1)pagenav_pagelinkrel
  • (11)post_thanks_box
  • (2)post_thanks_box_bit
  • (11)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (1)post_thanks_postbit
  • (11)post_thanks_postbit_info
  • (10)postbit
  • (10)postbit_attachment
  • (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
  • fetch_musername
  • post_thanks_function_fetch_thanks_end
  • post_thanks_function_thanked_already_start
  • post_thanks_function_thanked_already_end
  • post_thanks_function_fetch_thanks_bit_start
  • post_thanks_function_show_thanks_date_start
  • post_thanks_function_show_thanks_date_end
  • post_thanks_function_fetch_thanks_bit_end
  • post_thanks_function_fetch_post_thanks_template_start
  • post_thanks_function_fetch_post_thanks_template_end
  • postbit_imicons
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • postbit_attachment
  • postbit_display_complete
  • post_thanks_function_can_thank_this_post_start
  • pagenav_page
  • pagenav_complete
  • tag_fetchbit_complete
  • forumrules
  • navbits
  • navbits_complete
  • showthread_complete