Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - Nick

Pages: [1] 2
1
General Discussion / Re: make a deal
« on: August 11, 2010, 04:33:20 pm »
I know, but you brought that up and I was just clearing things up. :D


I'd pm Fate about that though.

2
General Discussion / Re: make a deal
« on: August 11, 2010, 11:36:34 am »
CFCoding does not in any way have an affiliation with RuckaScape. RucaScape suggests people to go tere and find codes and stylesheets they like so that we can use them. It is in the "Affiliates" category, but that is because I could not think of another name for it. :|

3
General Discussion / Re: How'd You Find CF Coding?
« on: August 10, 2010, 09:24:53 pm »
K. It's just that I know another person who plays RSPS's and his name is Berserker.

4
General Discussion / Re: How'd You Find CF Coding?
« on: August 10, 2010, 08:22:49 pm »
I mean your real life name. Is your real life name Yader?

5
General Discussion / Re: How'd You Find CF Coding?
« on: August 10, 2010, 08:16:08 pm »
I'm the head forum admin on RuckaScape. Is your name by chance Yader?

6
This guide is for changing a single member's color, not everyone's!!


1) Admin-> Membergroups-> Create

2) Name it (reccomended that it's named the color of their forum color)

3) Choose a color from here or any other color code site.

4) Make sure it is a non-post based group.

5) Set permissions to match regular members

6) Profile-> Account settings-> Set primary membergroup to the name of the group.


That should work... If you have any questions please ask me.

7
Create A Forum Codes / [CODE] Membergroup Image-- Agent Moose
« on: August 05, 2010, 11:06:44 pm »
100% of the credit for making this code goes to Agent Moose

Code: [Select]
<script type="text/javascript" src="http://smcodes.smfforfree3.com/jquery.js"></script>
<script type="text/javascript">
function GroupImage(Group, Image){
//Created by Agent Moose
var PostGroup = document.getElementsByTagName("li");
for(x=0;x<PostGroup.length;x++){
if(PostGroup[x].className === "membergroup" && PostGroup[x].innerHTML.toLowerCase() === Group.toLowerCase()){
$(PostGroup[x]).parent().prev().find("a:last").prepend("<img src='" + Image + "' />");
};
if(PostGroup[x].className !== "membergroup" && PostGroup[x].className === "postgroup" && PostGroup[x].innerHTML.toLowerCase() === Group.toLowerCase()){
$(PostGroup[x]).parent().prev().find("a:last").prepend("<img src='" + Image + "' />");
};
};
};
GroupImage("GROUP", "IMAGE");
</script>

GROUP = The Group for which the selected image will show next to their names in posts.
IMAGE = the Image for the group you have selected.

To Add more images for certain membergroups, add more of these lines:

Code: [Select]
GroupImage("GROUP", "IMAGE");

NOTE:
The only way this code will work is if you remove "Post Group" title for Admins/Mods:
    Admin-> Layout Settings-> Theme Settings-> Turn "Hide post group titles for grouped members" to on. (section two-subsection four-option six)

100% of the credit to making this code goes to Agent Moose

8
General Discussion / Re: How'd You Find CF Coding?
« on: August 04, 2010, 11:19:50 pm »
And the name of it is...?

9
Guides and Tutorials / [GUIDE] How to Add Board Moderators
« on: August 04, 2010, 12:17:12 pm »
Board moderators are Players that have moderation powers in just one or two boards.

Admin-> Boards-> Select the Board

Scroll down to the second section and the first option named "Moderators" add the name of the player(s) you want to be moderate that particular board.

10
Guides and Tutorials / NOTE:
« on: August 04, 2010, 11:46:18 am »
When a guide maker wants a guide to be deleted we will be completely compliant. We will however make our own guide from scratch. You will be given no credit because you didn't want your version on here in the first place.


Banned Guides
       

Simply Sibyl







Any "banned" guides are guides that the owner of has asked not to be on here.

11
General Discussion / How'd You Find CF Coding?
« on: August 03, 2010, 11:10:08 pm »
So how'd you find us?


I found CF Coding at CAF Support in a post by Fate.

12
Help / Re: "Themes" Board
« on: August 03, 2010, 06:36:53 pm »
Thanks! Also, send me the URL for your logo.

13
Help / "Themes" Board
« on: August 03, 2010, 05:43:45 pm »
Yeah... Your "themes" board is tweaking out on me... Not sure if it's just my iTouch or my amazing amount of luck or if it's a problem for everyone..

14
Create A Forum Codes / [CODE] Money Code (Simple)-- Agent Moose
« on: August 03, 2010, 01:27:13 pm »
100% of the credit to making this code goes to Agent Moose.

Put this in your footers

Code: [Select]
<!---http://cfcoding.createaforum.com--->
<script type="text/javascript">
var Name = "NAME";
var Sign = "SIGN";
var Amount = AMOUNT PER POST;

var Aug_02_2010 = document.getElementsByTagName("li");
//Created by Agent Moose
for(x=0;x<Aug_02_2010.length;x++){
if(Aug_02_2010[x].className === "postcount" && Aug_02_2010[x].innerHTML.match(/posts: (.*)/i)){
var li = document.createElement("li");
li.className = "money";
li.innerHTML = Name + ": " + Sign + (RegExp.$1 * Amount);
Aug_02_2010[x].parentNode.insertBefore(li, Aug_02_2010[x].nextSibling);
};
};
</script>
<!---http://cfcoding.createaforum.com--->

NAME = The Name of the currency (EX: Money)
SIGN = The Sign of the currency (EX: $)
AMOUNT PER POST = How much the user will get for each post they make (EX: 2. Whatever number you set, will be multiplied by their post number)


NOTE: This code is subject to be edited in the future by it's original creator!!

100% of the credit to making this code goes to Agent Moose.

15
100% of the credit to this code goes to Agent Moose

Add this into your CSS. Doesn't matter were, but I prefer the very top or boron so I can locate it easily.

Code: [Select]
<!---http://cfcoding.createaforum.com--->
/* Remove "Post Group" for Admins/Mods //Created by Agent Moose */
li.membergroup + li.postgroup { display: none; }
<!---http://cfcoding.createaforum.com--->

This code removes the "Post Group" name (EX: Newbie, Member) in topics/PM's for Admins and Moderators.

100% of the credit to this code goes to Agent Moose.

Pages: [1] 2