Login


All times are UTC


It is currently Thu Sep 09, 2010 12:54 pm




Post new topic Reply to topic  [ 4 posts ] 
Author Message
 Post subject: How to use gwBB Codes at forum
PostPosted: Wed Apr 22, 2009 4:02 pm 
Site Admin
User avatar

Joined: Wed May 07, 2008 8:40 am
Posts: 188
Location: Finlandia, in my house & around.
We have installed the gwBB codes at the forum and here is a tutorial to use them. It might seem complicated at first, but feel free to test it in preview mode of posting topics. If you don't know what this gwBB stuff is, please visit this official site: http://gwshack.us/

The installed version is dated 23rd of July , and as you knew there has been updates after that. Notify in your posts about the updated skills when you notice an outdated one. :)



TUTORIAL - How to use gwBB codes.

Image

gwBBCode Tutorial


How to show a single skill

To display a skill you need to encase its name in square brackets "[" and "]".
For example the skill Shock would be represented by
[Shock] =>
If you want to show the skill name instead of its icon, put a second "[" before the name
[[Shock] => Shock
If you want to show a skill effect adjusted to an attribute value, include "@" after skill name and then a number
[Shock@8] =>  here we have the skill with 8 in Air Magic
Tip: case and punctuation don't matter in skill names, and you can use some abbreviations
["You're All Alone!"] = [youre all alone] = [You're all ALONE!!!] =>
[Word of Healing] = [WoH] = [woh] =>


How to write a build

The simpler way is to get its template code from the game, then use it in one of these ways:
[Shock Warr;OQYTgw4K5QrSFqM9cOtrCA] = [build=Shock Warr;OQYTgw4K5QrSFqM9cOtrCA] ~= [build=OQYTgw4K5QrSFqM9cOtrCA] =>
 
Shock Warr


But if you want to write a build from scratch, here is how! A build consists of an opening tag [build] in which you can specify details (see below), then a list of skills encased in brackets, and an ending tag [/build]. In this example we specified a name and attribute level. Don't panic it will be explained in details below :)
[build prof=W/E air=8][Shock][Frenzy][Eviscerate][/build] =>
 

Now let's have a closer look.. at what you can specify in the [build] tag..
  • Professions: To specify the build is for a Warrior/Elementalist, just add prof=W/E. You can use any profession abbreviation: W, Mo, E, R, N, Me, Rt, A, D, P. As well as full profession names, e.g prof=Warrior/Elementalist. You don't have to specify a secondary profession.
    [build prof=W/E][/build] = [build prof=Warrior/Elementalist][/build] =>
     
  • Build's name: To specify a name, try this: name="Shock war" (note: the name must be encased in double brackets "")
    [build prof=W/E name="Shock war"][/build] =>
     
    Shock war
  • Attributes: Just write the attribute name without spaces, followed by "=", and the attribute level. Like this: expertise=9. You can use plus signs to specify additional levels due to a rune or helmet: axemastery=12+1+3.
    Tip: Case doesn't matter here and all but 3 attribute names can be reduced to their first three letters, e.g axe=12 and pro=4. Specifying a few more letters doesn't hurt though: prot=9 and blood=8. The three exceptions to this rule are: dead for Deadly Arts since dea is for Death Magic; comma for Command since com is for Communing; earthp for Earth Prayers since ear is for Earth Magic.
    [build prof=W/E AxeMastery=12+1+3][/build] = [build prof=W/E axe=12+1+3][/build] =>
     
  • Description: Adding information on a build (weapons, armor, how to play it) can be done like this: desc="Vamp axe." (note: the description must be encased in double brackets "")
    [build prof=W/E desc="Vamp axe."][/build] =>
     
    Tip: you can write descriptions in multiple lines using {br} to separate lines. This tip works on build names as well.
  • Pickup: Now imagine you have a post with a full teambuild and you'd like to know which of these builds your forum users would prefer to play. Rather than go through the process of asking them, use the pickup feature and ask them to click on the builds (their profession icons) they want! And click again to remove themselves from a build.
    To make a build clickable add something like pickup="some unique text here". A unique text is needed because if you use the same id with two builds and a user clicks on one, he'll be added to both!
    [build prof=W/E pickup="shock war"][/build]
    [build prof=Mo/E pickup="prot monk v3"][/build] =>
     
     
    Tip: for readability, you can reuse the pickup feature inside the same post but outside a build, and see who can play what without having to move your mouse over each build:
    Can play shock war: [pickup="shock war"]; can play prot monk: [pickup="prot monk v3"] =>
    Can play shock war: ; can play prot monk:
  • PvE/PvP: You can specify whether a build is PvE or PvP by adding either "pve" or "pvp" to the code:
    [build prof=W/E pve]["Watch Yourself!"][Blinding Surge][/build] =>
     
    [build prof=W/E pvp]["Watch Yourself!"][Blinding Surge][/build] =>
     
  • Box: You can create a nice box border to encase the build skills like in the game by adding "box" to the code:
    [build prof=W/E box][Shock][Eviscerate][/build] =>
     
  • No skill: You may want to specify an empty skill slot. For that, use [No Skill] =>
  • No save: If you don't want a build to show the copy build icon just add "nosave" to the code.
    [build prof=W/E nosave][/build] =>
     
Here is a full example:
[build prof=W/E name="Shock Axe" box axe=12+1+2 str=11+1 air=6 desc="Weapon #1: Vampiric Axe{br}Weapon #2: Penetrating Axe"][Frenzy][Rush][Disrupting Chop][Bull's Strike][Shock][Eviscerate][Executioner's Strike][Resurrection Signet][/build] =>
 
Shock Axe


Additional skill syntaxes
For skills which differ in PvE and PvP gameplays, you can specify the gameplay after the name or let the default gameplay be applied (on these forums, PvP):
[[Aegis (PvP)] => Aegis (PvP)
[[Aegis (PvE)] => Aegis (PvE)
[[Aegis] => Aegis (PvP)
Same goes for Kurzick/Luxon skills (on these forums, default allegiance is Kurzick):
[[Aura of Holy Might (Kurzick)] => Aura of Holy Might (Kurzick)
[[Aura of Holy Might (Luxon)] => Aura of Holy Might (Luxon)
[[Aura of Holy Might] => Aura of Holy Might (Kurzick)


Miscellaneous
  • Locally prevent gwBBCode parsing: Encase what you don't want to be parsed with tags [pre] and [/pre], e.g [pre][EW][/pre] => [EW]
    You'll find it useful when you want to mention a guild tag which happens to be a skill abbreviation, or when you want to explain gwBBCode syntax ^^
  • The pickup feature: As seen above in a build, pickup can be used to let users show they can play it. Syntax is self explanetory: List of fools: [pickup="some unique text here"] => List of fools:
  • Advanced template syntax: you may use the "pve", "pvp", "box, and "nosave" build keywords in template names, e.g
    [Shock Warr pve box nosave;OQYTgw4K5QrSFqM9cOtrCA] =>
     
    Shock Warr
  • Export builds to GWFreaks: copy the code (click the Quote button to get it) to this page then click "convert" and import the downloaded file in GWFreaks
  • Random build: guess what.. [pre][random build][pre] =>
     
  • gwBBCode version: that one is more difficult to guess: [pre]1.8.3[pre] => 1.8.3
  • Installing gwBBCode: If you want it on your forums it's free and open source so come get it at http://gwshack.us

_________________
HEH - Happy Enchanted Heroes - http://www.hehguild.com
Image
Image

http://steamcommunity.com/id/hennu

IGN Katya Nightflame/Hennu The Enchanted

Convert Time Zones!
What time is it everywhere:
http://wwp.greenwichmeantime.com/
http://wwp.eastern-standard-time.com/
http://wwp.greenwichmeantime.com/time-z ... ific-time/


Top
 Offline Profile  
 
 Post subject: Re: How to use gwBB Codes at forum
PostPosted: Wed Apr 22, 2009 5:47 pm 
Beyond beginner
User avatar

Joined: Sun Mar 29, 2009 12:22 pm
Posts: 22
Location: Serbia
Awesome!

 :D

_________________
Image


Top
 Offline Profile  
 
 Post subject: Re: How to use gwBB Codes at forum
PostPosted: Thu Apr 23, 2009 8:41 am 
Beyond beginner
User avatar

Joined: Wed Apr 22, 2009 11:50 pm
Posts: 102
ThisisAWESOME

ohyea  SPAM GOGOGOGO

_________________
ooooooooooooooooooooooo pink :O


Top
 Online Profile  
 
 Post subject: Re: How to use gwBB Codes at forum
PostPosted: Tue Feb 02, 2010 5:38 pm 
Beyond beginner
User avatar

Joined: Thu Oct 22, 2009 10:09 pm
Posts: 23
 
Discord

Not too shabby for first attempt right?:D

_________________
Officer
PVE Master
Arya Shadowwhisper - Main Pwnzor. People Know Her
The Soulcorrupter -
Bruno Shadowwhisper - Farming Monk


Top
 Offline Profile  
 
Display posts from previous:  Sort by  
Post new topic Reply to topic  [ 4 posts ] 

All times are UTC


Who is online

Users browsing this forum: No registered users and 1 guest


You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum

Search for:
Jump to: