The forum of the forums
Would you like to react to this message? Create an account in a few clicks or log in to continue.

Use points to upgrade Rank ??

3 posters

Go down

Solved Use points to upgrade Rank ??

Post by surajbkk January 14th 2015, 1:32 am

i want my member to spend their points for upgrading their rank profile ....is that possible???
avatar
surajbkk
New Member

Posts : 16
Reputation : 1
Language : english

http://www.applevirus.mrforum.net

Back to top Go down

Solved Re: Use points to upgrade Rank ??

Post by Guest January 14th 2015, 1:49 am

Hello surajbkk,
Sadly there is no way for their rank to go up by spending points. The only way to alter their points is if an Administrator goes into th eACP and changes the points and you would have to manually go and change their rank. There is no way to spend the points to upgrade the rank automatically. You can only change ranks automatically through post count, not points.

Sorry for the inconvenience!

-James
avatar
Guest
Guest


Back to top Go down

Solved Thanks you

Post by surajbkk January 14th 2015, 1:59 am

Thanks you......
avatar
surajbkk
New Member

Posts : 16
Reputation : 1
Language : english

http://www.applevirus.mrforum.net

Back to top Go down

Solved Re: Use points to upgrade Rank ??

Post by Guest January 14th 2015, 2:05 am

Glad I was able to help!

Hope you have a wonderful rest of your day!

-James
avatar
Guest
Guest


Back to top Go down

Solved Re: Use points to upgrade Rank ??

Post by _Twisted_Mods_ January 14th 2015, 6:29 am

you can do it with script based on the amount of points they have

but there is few things you will have todo

make points viewable on post profile

change "Reputation" in the script below to the field title below the points field in the post profile
eample if you was to put it on this forum you would change it to "Join date"

lastly change all the images and amount of points you want to change image at

Code:
$(function(){
var img1 = 'http://i884.photobucket.com/albums/ac50/TwistedKilla/Forumotion/founder_zpsc2163f69.png';
var img2 = 'http://i884.photobucket.com/albums/ac50/TwistedKilla/Forumotion/manager_zpsf15c6160.png';
var img3 = 'http://i884.photobucket.com/albums/ac50/TwistedKilla/Forumotion/smod_zpsff04ea09.png';
var img4 = 'http://i884.photobucket.com/albums/ac50/TwistedKilla/Forumotion/mod_zps91e6af35.png';
var img5 = 'http://i884.photobucket.com/albums/ac50/TwistedKilla/Forumotion/gfx_zps05a4e96b.png';
var img6 = 'http://i884.photobucket.com/albums/ac50/TwistedKilla/Forumotion/reviewer_zpscb2d87cc.png';
var img7 = 'http://i884.photobucket.com/albums/ac50/TwistedKilla/Forumotion/support_zps3daf5b56.png';
var img8 = 'http://i884.photobucket.com/albums/ac50/TwistedKilla/Forumotion/vip_zps9331afc1.png';
var img9 = 'http://i884.photobucket.com/albums/ac50/TwistedKilla/Forumotion/teacher_zps53955db9.png';
var img10 = 'http://i884.photobucket.com/albums/ac50/TwistedKilla/Forumotion/helper_zpscbbb79bc.png';
var img11 = 'http://i884.photobucket.com/albums/ac50/TwistedKilla/Forumotion/member_zpsdb91587d.png';
var img12 = 'http://i884.photobucket.com/albums/ac50/TwistedKilla/Forumotion/blank_zps8d7a3a8d.png';
var img13 = 'http://i884.photobucket.com/albums/ac50/TwistedKilla/Forumotion/guest_zpsb40a03cc.png';
$('.postprofile').each(function(){
   var bb = $(this).text();
   var gg =    bb.replace(/(.*)Points:  (.+?)Reputation(.*)/,'$2');
if(gg>10000){
   $(this).find('dd').eq(0).before('<dd><center><img src="'+img1+'"></center><br></dd>');
}
   else if(gg>9000){
   $(this).find('dd').eq(0).before('<dd><center><img src="'+img2+'"></center><br></dd>');
}
   else if(gg>8000){
   $(this).find('dd').eq(0).before('<dd><center><img src="'+img3+'"></center><br></dd>');
}
      else if(gg>7000){
   $(this).find('dd').eq(0).before('<dd><center><img src="'+img4+'"></center><br></dd>');
}
      else if(gg>6000){
   $(this).find('dd').eq(0).before('<dd><center><img src="'+img5+'"></center><br></dd>');
}
      else if(gg>5000){
   $(this).find('dd').eq(0).before('<dd><center><img src="'+img6+'"></center><br></dd>');
}
      else if(gg>4000){
   $(this).find('dd').eq(0).before('<dd><center><img src="'+img7+'"></center><br></dd>');
}
      else if(gg>3000){
   $(this).find('dd').eq(0).before('<dd><center><img src="'+img8+'"></center><br></dd>');
}
      else if(gg>2000){
   $(this).find('dd').eq(0).before('<dd><center><img src="'+img9+'"></center><br></dd>');
}
      else if(gg>1000){
   $(this).find('dd').eq(0).before('<dd><center><img src="'+img10+'"></center><br></dd>');
}
      else if(gg>500){
   $(this).find('dd').eq(0).before('<dd><center><img src="'+img11+'"></center><br></dd>');
}
      else if(gg>100){
   $(this).find('dd').eq(0).before('<dd><center><img src="'+img12+'"></center><br></dd>');
}
         else if(gg<100){
   $(this).find('dd').eq(0).before('<dd><center><img src="'+img13+'"></center><br></dd>');
}
});
});
_Twisted_Mods_
_Twisted_Mods_
Helper
Helper

Male Posts : 2108
Reputation : 336
Language : English
Location : Ms

http://liquidcode.forumotion.com

Back to top Go down

Solved Re: Use points to upgrade Rank ??

Post by Ape January 19th 2015, 1:08 am

Marked as solved 
Topic solved and archived
If not solved please pm me with link to this thread


Use points to upgrade Rank  ?? Left1212Use points to upgrade Rank  ?? Center11Use points to upgrade Rank  ?? Right112
Use points to upgrade Rank  ?? Ape_b110
Use points to upgrade Rank  ?? Ape1010
Ape
Ape
Administrator
Administrator

Male Posts : 19109
Reputation : 1991
Language : fluent in dork / mumbojumbo & English haha

http://chatworld.forumotion.co.uk/

Back to top Go down

Back to top

- Similar topics

 
Permissions in this forum:
You cannot reply to topics in this forum