Go Back   vb.org Archive > vBulletin Modifications > Archive > vB.org Archives > vBulletin 2.x > vBulletin 2.x Full Releases
FAQ Community Calendar Today's Posts Search

Reply
 
Thread Tools
Details »»

Version: 1.00, by zajako zajako is offline
Developer Last Online: Aug 2013 Show Printable Version Email this Page

Version: 2.2.x Rating:
Released: 02-21-2002 Last Update: Never Installs: 80
 
No support by the author.

This hack lets your members choose an element (as in rpg elements)
You give them a choice on a list and they can become a Fire (or whatever) elemented person.
Its mainly for RPG boards but im sure you can find many other uses for it :}
It also displays it on there post bit aka sidebar :}
again for an active demonstration goto my forums at
http://www2.fate-fx.com/tf/forums/index.php
and you can check it out. i will be using images to rep the elements I can upgrad it to do that if you would like.

here it is...

this is the link to the 1.0 version, i will attach the 2.0 version on the end of this forum so that people may choose to use the old aswell

Show Your Support

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

Comments
  #12  
Old 04-12-2002, 07:24 AM
Iezugod Iezugod is offline
 
Join Date: Mar 2002
Posts: 17
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

The element images were Incredibly Small and blury. I created new ones using Paint Shop Pro.

For a preview, check out www.ultimatemetroid.com/forums

my elements are:


Fire


Water


Light


Earth


Lightning


Wind


Dark


The HIDDEN Ice element

and


Omega

I also have the problem, where everytime someone edits their profile, if they don't specify an element, it automatically sets it back to none.
Reply With Quote
  #13  
Old 04-21-2002, 07:50 PM
zajako's Avatar
zajako zajako is offline
 
Join Date: Jan 2002
Location: a place not to far away
Posts: 633
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

yes this problem is a thing that I will fix in a future update.
Reply With Quote
  #14  
Old 05-08-2002, 09:42 AM
AtmosPhere's Avatar
AtmosPhere AtmosPhere is offline
 
Join Date: May 2002
Location: Scotland, UK
Posts: 9
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Great hack, i didnt like the idea of images cluttering the postbit though, so i simply changed it to Text instead of images. Hope his was ok
Reply With Quote
  #15  
Old 05-08-2002, 10:46 AM
AtmosPhere's Avatar
AtmosPhere AtmosPhere is offline
 
Join Date: May 2002
Location: Scotland, UK
Posts: 9
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I unmodified it again, and re-installed the hack, now i am having problems as it always displays "none" on a new line
HELP!
Reply With Quote
  #16  
Old 05-09-2002, 05:19 PM
AtmosPhere's Avatar
AtmosPhere AtmosPhere is offline
 
Join Date: May 2002
Location: Scotland, UK
Posts: 9
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I really need help
this hack has been installed but its defunct
this should be in the beta release forum man!
Reply With Quote
  #17  
Old 05-17-2002, 02:17 PM
zajako's Avatar
zajako zajako is offline
 
Join Date: Jan 2002
Location: a place not to far away
Posts: 633
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

contact me by aim the aim name is zajako2

I can take a look and fix it.
Reply With Quote
  #18  
Old 05-26-2002, 06:36 AM
zajako's Avatar
zajako zajako is offline
 
Join Date: Jan 2002
Location: a place not to far away
Posts: 633
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

ok, i have completed an update finaly...

this time it is using the db. This is a much better version of the hack anyways, all previous problems were fixed and hopefully this will be an easy install

Also please notify me by aim of any and all errors

v2.0.....

err, whoops....
I forgot there already was a 2.0 I should learn to count or at least realize i updated my hack already

owel this is the 3.0 version and the file says 2.0 so make me feel good by pertending the file says 3.0 :P
Reply With Quote
  #19  
Old 06-08-2002, 02:53 PM
Christoff's Avatar
Christoff Christoff is offline
 
Join Date: May 2002
Location: Poland
Posts: 40
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

So now after reloading the profile page there is the right element selected (the one, that user selected before) or is it still 'none'?
Reply With Quote
  #20  
Old 06-08-2002, 06:33 PM
zajako's Avatar
zajako zajako is offline
 
Join Date: Jan 2002
Location: a place not to far away
Posts: 633
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

still none however i have fixed that

Open the admin panel and open User option templates>modifyprofile

then find
PHP Code:

<select name="element">
                              
        <
option value="0" selected>None</option>
        <
option value="1" >Light</option>
        <
option value="2" >Water</option>
        <
option value="3" >Wind</option>
        <
option value="4" >Lightning</option>
        <
option value="5" >Earth</option>
        <
option value="6" >Fire</option>
        <
option value="7" >Dark</option>
    
          

        </
select
and replace with

PHP Code:
<select name="element">
                                <
option value="$bbuserinfo[element]selected>Current Element</option>
        <
option value="0" >None</option>
        <
option value="1" >Light</option>
        <
option value="2" >Water</option>
        <
option value="3" >Wind</option>
        <
option value="4" >Lightning</option>
        <
option value="5" >Earth</option>
        <
option value="6" >Fire</option>
        <
option value="7" >Dark</option>
    
          

        </
select
that will fix the problem with the element returning to none.

(note that fix only works for the newest version of the element hack)
Reply With Quote
  #21  
Old 06-08-2002, 09:04 PM
Christoff's Avatar
Christoff Christoff is offline
 
Join Date: May 2002
Location: Poland
Posts: 40
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I have downloaded your attachment... you've said that you named the archive wrong... but I think taht it is really ver 2.0 because inside the files are same as in 2.0!
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 07:40 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.04886 seconds
  • Memory Usage 2,322KB
  • 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
  • (2)bbcode_php
  • (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
  • (2)pagenav_pagelink
  • (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