We appreciate everyone who shares their resources and those who send them to us to be shared on our forum.
We try as much as possible to share untouched or original script without nulling them. But incase you need a null version contact us and our nulling team will advise.
Submit ten (10) resources and apply to become a Moderator of Scriptzhub. | We are currently we are currently experiencing technical difficulties with email service. To create an account send your username and password to daviruzsystems@gmail.com.
Advanced text formatting options for wrapped text.
Example:
This is [COLOR=red]red[/COLOR] and [COLOR=#0000cc]blue[/COLOR] text.
This is [BGCOLOR=#FAA]red[/BGCOLOR] and [BGCOLOR=#AAF]blue[/BGCOLOR] highlighted text.
This is [FONT=Courier New]Courier New[/FONT] text.
This is [SIZE=1]small[/SIZE] and [SIZE=7]big[/SIZE] text.
Output:
This is red and blue text.
This is red and blue highlighted text.
This is Courier New text.
This is small and big text.
[SUB],
[SUP]
-
Subscript,
Superscript
Position wrapped text.
Example:
This is [SUB]subscript[/SUB] text.
This is [SUP]superscript[/SUP] text.
Output:
This is subscript text.
This is superscript text.
[URL], [EMAIL] - Linking
Creates a link using the wrapped text as the target.
Embeds media from approved sites into your message. It is recommended that you use the media button in the editor tool bar.
Approved sites: Apple Music
[LEFT], [RIGHT], [CENTER], [JUSTIFY] - Text alignment
Changes the alignment of the wrapped text.
Example:
[LEFT]Left-aligned[/LEFT]
[CENTER]Center-aligned[/CENTER]
[RIGHT]Right-aligned[/RIGHT]
[JUSTIFY]This is a justified text block. This is a justified text block. This is a justified text block. This is a justified text block. This is a justified text block. This is a justified text block.[/JUSTIFY]
Output:
Left-aligned
Center-aligned
Right-aligned
This is a justified text block. This is a justified text block. This is a justified text block. This is a justified text block. This is a justified text block. This is a justified text block.
[QUOTE] - Quoted text
Displays text that has been quoted from another source. You may also attribute the name of the source.
Example:
[QUOTE]Quoted text[/QUOTE]
[QUOTE=A person]Something they said[/QUOTE]
Marks text as a structured heading to facilitate machine readability.
Example:
[HEADING=1]Major heading[/HEADING]
This text comes under a major heading, used to separate the primary sections of an article.
[HEADING=2]Minor heading[/HEADING]
When you need to subdivide the primary sections of an article, use a level 2 minor heading.
[HEADING=3]Subheading[/HEADING]
If you require additional subdivision, you may drop to level 3.
Output:
Major heading
This text comes under a major heading, used to separate the primary sections of an article.
Minor heading
When you need to subdivide the primary sections of an article, use a level 2 minor heading.
Subheading
If you require additional subdivision, you may drop to level 3.
[INDENT] - Text indent
Indents the wrapped text. This can be nested for larger indentings.
Example:
Regular text
[INDENT]Indented text[/INDENT]
[INDENT=2]More indented[/INDENT]
Output:
Regular text
Indented text
More indented
[PLAIN] - Plain text
Disables BB code translation on the wrapped text.
Example:
[PLAIN]This is not [B]bold[/B] text.[/PLAIN]
Output:
This is not [B]bold[/B] text.
[ATTACH] - Attachment insertion
Inserts an attachment at the specified point. If the attachment is an image, a thumbnail or full size version will be inserted. This will generally be inserted by clicking the appropriate button.
Example:
Thumbnail: [ATTACH]123[/ATTACH]
Full size: [ATTACH=full]123[/ATTACH]
Output:
The contents of the attachments would appear here.
- Only registered users who are registered not earlier than 5 days ago are displayed.
[GROUPS=option]
- For user groups
The tag hides content from people who are not members of X,Y,Z user groups.
Example:
[GROUPS=2]Hello World![/GROUPS] - Displayed only for group members with ID 2.
Output:
Content of this hidden block can only be seen by members of: Registered
- Displayed only for group members with ID 2.
[HIDE]
·
[HIDE=option]
- For registered users only
Tag [HIDE] is used for hidden content. If [HIDE=(condition)] is specified, the condition will be applied to the hidden content. Note: After the = sign, you must enclose the conditions in parentheses to indicate the start and end of condition processing. Inside, you can use any condition grouping.
Allowed expressions (tags):
posts: Number of user posts.
likes: User reaction count.
reactions: User reaction count (same as likes).
trophies: Number of user trophies.
days: Number of days since user registration.
isMemberOf(id): User group, for multiple groups you can use comma-separated values.
username: User's username.
user_id: User's identifier.
user_state: User's state.
is_staff: Flag indicating whether the user is a staff member.
is_admin: Flag indicating whether the user is an administrator.
is_moderator: Flag indicating whether the user is a moderator.
Allowed operators:
Arithmetic operators:
Arithmetic operators are used for performing mathematical calculations:
+
-
*
/
% (modulus)
** (exponentiation)
Comparison operators:
Comparison operators are used for comparing values and returning a boolean result:
== (equal to)
=== (strictly equal to)
!= (not equal to)
!== (strictly not equal to)
< (less than)
> (greater than)
<= (less than or equal to)
>= (greater than or equal to)
Logical operators:
Logical operators are used for performing logical operations and returning a boolean result:
and or && (logical AND)
or or || (logical OR)
not or ! (logical NOT)
Bitwise operators:
Bitwise operators are performed on binary representations of numbers:
& (bitwise AND)
| (bitwise OR)
^ (bitwise XOR)
String operators:
The ~ operator is used for string concatenation:
~ (string concatenation)
Array operators:
Array operators are used for checking element membership in an array:
in (element present in array)
not in (element not present in array)
Numeric operators:
The .. operator is used to create a range of numbers:
.. (number range)
Ternary operator:
The ?: operator is used to perform conditional operations in a single line:
?: (ternary operator)
Example:
[HIDE]Hello World![/HIDE] - only registered users see the hidden text
[HIDE=(posts > 1 or likes > 1)]Hello world![/HIDE] - The hidden text "Hello world!" will be displayed if the number of user posts is greater than 1 OR the number of likes is greater than 1.
[HIDE=(posts > 1 and likes > 1)]Hello world![/HIDE] - The hidden text "Hello world!" will be displayed if the number of user posts is greater than 1 AND the number of likes is greater than 1.
[HIDE=(days > 1 or user_state == "valid")]Hello World![/HIDE] - The hidden text "Hello World!" will be displayed if the number of days since user registration is greater than 1 OR the user state is "valid".
[HIDE=(isMemberOf(2) or trophies >= 0)]Hello World![/HIDE] - The hidden text "Hello World!" will be displayed if the user is a member of group 2 OR the number of user trophies is greater than or equal to 0.
[HIDE=(is_staff)]Hello World![/HIDE] - The hidden text "Hello World!" will be displayed if the user is a staff member.
Output:
You must reply before you can see the hidden data contained here.
- only registered users see the hidden text
[HIDE=(posts > 1 or likes > 1)]Hello world![/HIDE] - The hidden text "Hello world!" will be displayed if the number of user posts is greater than 1 OR the number of likes is greater than 1.
[HIDE=(posts > 1 and likes > 1)]Hello world![/HIDE] - The hidden text "Hello world!" will be displayed if the number of user posts is greater than 1 AND the number of likes is greater than 1.
[HIDE=(days > 1 or user_state == "valid")]Hello World![/HIDE] - The hidden text "Hello World!" will be displayed if the number of days since user registration is greater than 1 OR the user state is "valid".
[HIDE=(isMemberOf(2) or trophies >= 0)]Hello World![/HIDE] - The hidden text "Hello World!" will be displayed if the user is a member of group 2 OR the number of user trophies is greater than or equal to 0.
[HIDE=(is_staff)]Hello World![/HIDE] - The hidden text "Hello World!" will be displayed if the user is a staff member.
[LIKES=option]
- Number of likes
Number of likes on the forum, which the user needs to be able to view
Example:
[LIKES=5]Hello World![/LIKES] - Displayed only registered users whose number of reactions on the forum is greater than or equal to 5.
- This tag hides the text until the user clicks the <b>Like button</b> in the message.
[TROPHIES=option]
- Number of trophies
Number of trophies on the forum, which the user needs to be able to view
Example:
[TROPHIES=5]Hello World![/TROPHIES] - It is displayed only to registered users, the number of points for trophies on the forum which is greater than or equal to 5.
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.