Current time: 04-19-2024, 05:18 PM Hello There, Guest! (LoginRegister)


Announcement
We have the biggest collection of MyBB Plugins here on the Net. We have currently 175+ MyBB Exclusive Plugins, 80+ MyBB Compatible MyCodes and 16+ MyBB 1.4.x Themes (Some are still under construction...) Thus, we provide you the largest MyBB Stuff on the net including tutorials. Stay with us, you will find out some more to come.
Now you can easily create your own buttons set for MyBB! Click here to have a look...
*** You cannot do your registration behind any Proxies anymore! ***
Welcome Guest[3.134.104.173], connected from
Post Reply 
 
Thread Rating:
  • 1 Votes - 5 Average
  • 1
  • 2
  • 3
  • 4
  • 5
[Release 1.4.x] Rank System
05-06-2010, 08:47 PM
Post: #11
RE: [Release 1.4.x] Rank System
loooks very cool!

codingd's signature
Visit this user's website Find all posts by this user
Quote this message in a reply
07-05-2010, 04:36 AM
Post: #12
RE: [Release 1.4.x] Rank System
ok I have a question myself, im using this with classic postbit .. the rank bar is not exactly centered correctly ... any solution?

Thanks!

Technoman's signature
Visit this user's website Find all posts by this user
Quote this message in a reply
07-05-2010, 10:55 AM
Post: #13
RE: [Release 1.4.x] Rank System
(07-05-2010 04:36 AM)Technoman Wrote:  ok I have a question myself, im using this with classic postbit .. the rank bar is not exactly centered correctly ... any solution?

Thanks!

You can use the $post['rank_text'] and $post['rank_bar'] variables in your classic postbit template if you want and align them the way you need... Wink

exdiogene's signature MyBBCodes.com administrator
Cool " It is not what you know that matters, it is what you do or do not do!"
Visit this user's website Find all posts by this user
Quote this message in a reply
07-05-2010, 12:29 PM
Post: #14
RE: [Release 1.4.x] Rank System
(07-05-2010 10:55 AM)exdiogene Wrote:  
(07-05-2010 04:36 AM)Technoman Wrote:  ok I have a question myself, im using this with classic postbit .. the rank bar is not exactly centered correctly ... any solution?

Thanks!

You can use the $post['rank_text'] and $post['rank_bar'] variables in your classic postbit template if you want and align them the way you need... Wink


I also had to add open and closed brackets between and thanks.

{$post['rank_bar']}
{$post['rank_text']}

Technoman's signature
Visit this user's website Find all posts by this user
Quote this message in a reply
07-10-2010, 09:10 PM
Post: #15
RE: [Release 1.4.x] Rank System
what value this plugin based?
post number? thread number? or else?
Find all posts by this user
Quote this message in a reply
07-10-2010, 09:27 PM
Post: #16
RE: [Release 1.4.x] Rank System
You, as admin, assign manually the rank to each member as you see fit.

exdiogene's signature MyBBCodes.com administrator
Cool " It is not what you know that matters, it is what you do or do not do!"
Visit this user's website Find all posts by this user
Quote this message in a reply
07-10-2010, 10:24 PM
Post: #17
RE: [Release 1.4.x] Rank System
I see Wink
thanks
Find all posts by this user
Quote this message in a reply
07-27-2010, 10:08 PM (This post was last modified: 07-27-2010 10:12 PM by Chainzs.)
Post: #18
RE: [Release 1.4.x] Rank System
One question for you Mr. Exdio
How can i add a few more ranks ? Where do i have to make the changes ?

I was thinking maybe add a few more of these below straight in the Regentronique_Rank_System.php and just replace the file in on my server with the new one
good idea or not ?

$db->insert_query('settinggroups', $insertarray);
$gid = $db->insert_id();

$insertarray = array(
"sid" => NULL,
"name" => "Regentronique_Rank_System_default_rank",
"title" => "Default Rank",
"description" => "What would be the default rank value.(1-5)",
"optionscode" => "text",
"value" => "1",
"disporder" => "1",
"gid" => intval($gid),
);
Visit this user's website Find all posts by this user
Quote this message in a reply
07-27-2010, 10:37 PM (This post was last modified: 07-27-2010 10:51 PM by exdiogene.)
Post: #19
RE: [Release 1.4.x] Rank System
The plugin would need to be modified to allow more than 5 ranks, to allow their settings, selection and display. The rank bar would also need to be modified for the actual amount of ranks.

No easy solution...

Wink

EDIT :

If you do what you wrote and add 5 new values like :

PHP Code:[Highlight]
$insertarray = array(
        
"sid"           => NULL,
        
"name"          => "Regentronique_Rank_System_rank6",
        
"title"         => "Rank name #6",
        
"description"       => "What would be the name to be dispayed for rank #6",
        
"optionscode"       => "text",
        
"value"         => "<b style=\"color:#f0d020;\">New Rank6</b>",
        
"disporder"     => "7",
        
"gid"           => intval($gid),
    );
    
$db->insert_query("settings"$insertarray);
...
... 

then you will also have to modify the count for selection :

PHP Code:[Highlight]
for($s=1;$s 6;$s++){ 

should become this if you want 10 settings
PHP Code:[Highlight]
for($s=1;$s 11;$s++){ 

Also
PHP Code:[Highlight]
$post['rank_bar'] = get_rank_bar(($rank2 -1) * 25);
$Rej_Bar get_rank_bar(($rank2 -1) * 25); 

should become this if you want 10 settings
PHP Code:[Highlight]
$post['rank_bar'] = get_rank_bar(($rank2 -1) * 11);
$Rej_Bar get_rank_bar(($rank2 -1) * 11); 

exdiogene's signature MyBBCodes.com administrator
Cool " It is not what you know that matters, it is what you do or do not do!"
Visit this user's website Find all posts by this user
Quote this message in a reply
07-27-2010, 11:53 PM
Post: #20
RE: [Release 1.4.x] Rank System
Ouch ! I think i will forget about it.. too complicated, you know me i will probably crash my board trying to do this.
Visit this user's website Find all posts by this user
Quote this message in a reply
0 member(s) viewed this thread in the last 365 days :
Post Reply 


Was This Thread Useful ?
Please Link To Us
URL
BBCode
HTML

Possibly Related Threads...
Thread: Author Replies: Views: Last Post
Heart [Release 1.4.x] My Juke Box 1.0 ghazal 12 8,520 06-23-2017 07:34 AM
Last Post: exdiogene
Heart [Release 1.4.x] Post It Note 1.0 ghazal 29 144,328 06-27-2016 01:54 PM
Last Post: maria chersia
  [Release 1.4.x] View Thread Readers 1.0 exdiogene 32 22,463 11-05-2014 12:12 AM
Last Post: Technoman
  [Release 1.4.x] Thread Self Close 1.0 exdiogene 4 7,359 10-11-2012 09:34 PM
Last Post: kLx
Heart [Release 1.4.x] Activity System 1.0 ghazal 50 29,381 10-11-2012 09:30 PM
Last Post: kLx

Forum Jump:

 
New To Site ?
Some Useful Links
  • Help

  • You Might Need To Register

  • Forum Statistics

  • Mark All Forums Read

  • Forum Staff

  • Log Out
  • Contact Us

  • Mybbcodes

  • Return to Top

  • Return to Content

  • Lite (Archive) Mode

  • RSS Syndication
  • Powered By MyBB, © 2002-2024 MyBB Group.
    Golden Crown - Designed and Published by ghazal & exdiogene of MyBBCodes.
    Hosting provided by WWWHostingServer.com