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.


Topics - SWAT One

Pages: 1 2 [3] 4 5 6 7 8 ... 22
31
Off Topic / -ignore-
« on: February 05, 2017, 06:28:28 PM »
-ignore-

32
Basically this.  ||  In practice with some code listed in replies.

Can this even be done in this version of SMF even in a plugin?  Youtube embedding has almost no problems so I kinda thought that this might work, too.



Also, regarding this, is there any way to draw data from a range of cells into text in a post?

Like if you have information that you update on a database.  For instance: Score of User A is 3, and the information is stored on
"[spreadsheet_key]","Scores!A2"

Then you have something like
[gs key=spreadsheet_key sheet=Scores range=A2]


And it just inputs the text into the post.

A fun use as an example could be to change the output of a cell to various image links each day by having IF functions on a spreadsheet and time-oriented conditionals, and just put that embedded cell range info within image tags.

33
Forum Games / MicroKingdoms — MIGRATED
« on: January 14, 2017, 06:39:47 AM »


A simple medieval political RP.

Topic has been migrated HERE.

34
Off Topic / POLL for Americans — What do you fear?
« on: January 05, 2017, 03:39:46 AM »
Discussion is welcome below, but the poll includes all the details you need.

Thanks for contributing, guys.  Poll closes in 60 days at midnight.

35
General Discussion / Blockland Forum BBCode Guide
« on: August 30, 2016, 07:55:53 PM »
Blockland Forum BBCode Guide

Welcome to the Blockland Forum BBCode Guide topic.  I've been here for a while and have learned and used quite a lot of BBCode on this forums in my tenure here, so I thought it would be a good idea to compile what I know to help those who want to make their posts fancy.  If you are new to forums or new to this forum in particular, forums often use BBCode.

What is BBCode?
BBCode is a markup language that makes use of tags to modify text appearance or read text and interpret it in a variety of ways.  Each forum uses its own version of BBCode, sometimes removing common tags, and sometimes adding rare or custom tags.

What are tags?
Tags are snippets of code that are surrounded in brackets [] that tell the webpage how the page should be formatted.  Tags, when functioning normally, do not physically appear.  For example, [b]This text is bold.[/b] becomes This text is bold.  Tags usually have an opening tag and a closing tag, which decides when formatting of text starts and ends accordingly.  Tags may also not need a closing tag, such as in the case of [hr], which simply places a horizontal rule on the page.

Can you combine tags?
Absolutely!  For instance, if you want to make something bold and italic, you do [b][i]text[/i][/b] or [i][b]text[/b][/i], which then becomes text.  When you create multiple tags, remember to close the tag you open first last, and the last first.  For example, [tag1][tag2][/tag2][/tag1] is correct, and [tag1][tag2][/tag1][/tag2] is wrong and will not work.



Blockland Forums Tags

Bold  
Makes the text bold.
[b]Blockland[/b]
Blockland

Italics  
Makes the text italicized.
[i]Blockland[/i]
Blockland

Underline  
Makes the text underlined.
[u]Blockland[/u]
Blockland

Strikethrough  
Strikes a line through text horizontally.
[s]Blockland[/s]
Blockland

Pre-formatted Text  
Preserves whitespace by imposing a monospaced font.  Also organizes all text in a single block, meaning that the text will not automatically go to the next line unless you press Enter/Return, thus telling the text to move to the next line.

[pre][i]Name:[/i]  Blockland
[i]Description:[/i]  That game where you build stuff.[/pre]

Name:  Blockland
Description:  That game where you build stuff.


Left-Justified Elements  
Justifies text, images, and tables to the left (default).

[left][i]Name:[/i] Blockland
[i]Description:[/i] That game where you build stuff.[/left]

Name: Blockland
Description: That game where you build stuff.

Centered Elements  
Justifies text, images, and tables to the center.

[center][i]Name:[/i] Blockland
[i]Description:[/i] That game where you build stuff.[/center]

Name: Blockland
Description: That game where you build stuff.

Right-Justified Elements  
Justifies text, images, and tables to the right.

[right][i]Name:[/i] Blockland
[i]Description:[/i] That game where you build stuff.[/right]

Name: Blockland
Description: That game where you build stuff.

Horizontal Rule  
Places a horizontal rule across the page.

[hr]



Sized Text  
Modifies the size of text. Note: Use integers from 1 to 100 only.

[size=30pt]Blockland[/size]

Blockland

Change Font  
Changes the font of the text.  Note: If you are trying to use a font that other users do not have, then it will not display correctly for them.

[font=Georgia]Blockland[/font]

Blockland

Embed Image  
Embeds an image into your post.  Note: Links in image tags need to be hotlinks of images.  If you see the file extension, (.JPG, .JPEG, .PNG, .GIF) at the end, then it is likely the hotlink.  To check, open a new tab and paste the link.  If the image is the only thing you see, (no webpage around it), then the image is a hotlink.

[img]https://forum.blockland.us/Themes/Blockland/images/smflogo.png[/img]



You can also modify the dimensions of the image with the attributes height=X and [width=X], or both, where X is the dimension in pixels.

[img height=40]https://forum.blockland.us/Themes/Blockland/images/smflogo.png[/img] or [img width=100]https://forum.blockland.us/Themes/Blockland/images/smflogo.png[/img] or [img height=100 width=100]https://forum.blockland.us/Themes/Blockland/images/smflogo.png[/img]

or or

Create Hyperlink  
Creates a clickable URL link in your post.

[url]https://forum.blockland.us/index.php[/url] or [url=https://forum.blockland.us/index.php]Blockland Forums[/url]

https://forum.blockland.us/index.php or Blockland Forums

Create Email Link  
Creates a clickable email "mailto:" link in your post.

[email]Support@blockland.us[/email] or [email=Support@blockland.us]Blockland Support Email[/email]

Support@blockland.us or Blockland Support Email

(Please do not spam these emails.  Doing so may result in a ban.)

Create FTP Link  
Creates a clickable ftp link in your post.  Note that the examples below do not include any working links.  Credentials such as username and password may be required.

[ftp](non-functioning ftp link)[/ftp] or [ftp=(non-functioning ftp link)]Some FTP Server[/ftp]

(non-functioning ftp link) or Some FTP Server

Tables
Creates a table which auto-aligns text in blocks.

Table  
Makes a table block.
Table Row  
Makes a row within the table block.
Table Cell  
Makes a cell within a table row.

I use tables all the time, and while they are tricky, they can really help to make things aesthetically-pleasing.  Additionally, it can help repair some odd formatting problems that tend to appear.

[table][tr][td][b]Name:[/b][/td][td]Blockland[/td][/tr][tr][td][b]Description:[/b][/td][td]That game where you build stuff.[/td][/tr][/table]

Name:Blockland
Description:That game where you build stuff.

Note that if it helps you, you can use Enter/Return keys to make your tables easier for you and others to read in case you plan on editing your post.  Our example above can become the following if you choose, however, be mindful that there is a limit of 20,000 characters per post, and tables already hog a lot of characters on their own.

[table]
[tr][td][b]Name:[/b][/td][td]Blockland[/td][/tr]
[tr][td][b]Description:[/b][/td][td]That game where you build stuff.[/td][/tr]
[/table]

And it will still come out the same!

Superscript  
Changes the font to superscript.

x[sup]2[/sup]

x2

You can also stack  them

Subscript  
Changes the font to subscript.

x[sub]a[/sub]

xa

And yes, you can stack these, too

Teletype Font  
Converts the text to a monospaced typewriter-type text format.

[tt]Blockland[/tt]

Blockland

Code  
Puts the text in a code block.  BBCode will not work within a code block, and nothing is parsed.

[code][b]Blockland[/b][/code] or [code=Example Text][b]Blockland[/b][/code]

Code: [Select]
[b]Blockland[/b] or
Code: (Example Text) [Select]
[b]Blockland[/b]
Quotes  
Puts the text in a quote block.

[quote]Blockland[/quote]

Quote
Blockland

Note: Quotes also have the ability for you to provide further information with fields inside of the tag such as author, link and date.

In any case, it's best to just click the button when you're on the topic or scroll down from the posting menu and click on the Insert Quote link to the top right side of the corresponding post you want to quote.

Lists  
Creates a list with bullet points.

[list]
[li]Blockland[/li]
[li]That game where you build stuff.[/li]
[/list]

  • Blockland
  • That game where you build stuff.

Note that you can also substitute li for #, as long as each [#] line is separated by a line break (Return/Enter).

[list]
[#]Blockland
[#]That game where you build stuff.
[/list]

  • Blockland
  • That game where you build stuff.

If you want to justify your list, you can, but note the following instructions.

If you try to simply, justify a list like [center][list][li]Blockland[/li][li]That game where you build stuff.[/li][/list][/center], you get the following:

  • Blockland
  • That game where you build stuff.

This does not look good because your bullet points are still located to the left, and your text is far away to the center.  So instead, use a table.  Tables break formatting outside.  The inside of a table cell is treated as a different environment.  So when you do [center][td][list][li]Blockland[/li][li]That game where you build stuff.[/li][/list][/td][/center], you get the following:

  • Blockland
  • That game where you build stuff.

Now everything is fixed!  Note, however, that although I only used the td tag, it is better to surround them with the appropriate row and table body tags.  Doing so is good practice and prevents your code from being broken.

But that's not all!  Lists can also be nested.

[list]
[li]Blockland[/li]
[li]That game where you[list]
[li]build[/li]
[li]stuff[/li]
[/list][/li]
[/list]

  • Blockland
  • That game where you
    • build
    • stuff

Nesting can occur as many times as you want to, or as much as the page will allow.

Change Text Color  (Dropdown with "Change Color" on it)
Changes the color of text.  Note, in the first example, you can choose from the list of colors in the dropdown menu to get a pre-defined color.  In the second example, you can enter a Hexadecimal Color Code, or simply hex code, to get a specific color.  In the third example, you can use a three-digit color code to get a specific color, which works like hex codes, except it assumes each value is followed by a zero, so #E52 would be also read as #E05020.

[color=red]Blockland[/color] or [color=#538996]Blockland[/color] or [color=#C74]Blockland[/color]

Blockland or Blockland or Blockland

Additionally, you can make text transparent, which works on some platforms to create spoilers.  Do "[color=transparent]Wow, cool spoilers![/color]"

"Wow, cool spoilers!"

Quotation marks used only to display that text is there.  It is not in any way necessary to the formatting of transparent color tags.

Create Internal Hyperlink
Creates a clickable URL link that does not open another tab or window, but opens the url within the same window.

[iurl]https://forum.blockland.us/index.php[/iurl] or [iurl=https://forum.blockland.us/index.php]Blockland Forum[/iurl]

https://forum.blockland.us/index.php or Blockland Forum

Anchors
Creates an anchor within the page that can be referred to by a url or an iurl link.  Note: Anchors cannot contain spaces, use underscores instead.

[anchor=testanchor]Test Anchor Here

Wanna test it?  Click [iurl=#testanchor]here[/iurl].

Test Anchor Here

Wanna test it?  Click here.

Note that if you place an iurl tag like iurl=# followed by the tag name, it can only work if you are on the same page as the anchor.  If you want to refer to the anchor from a different page, click whatever link will lead you to the anchor and copy the address in your url bar.

Hover Text/Abbreviations
Makes text appear over an area when you hover your mouse over it.  Note that formatting, line breaks, and tabbed spacing will not work within hidden text.

[abbr=That game where you make stuff.]Blockland[/abbr]

Blockland

User Actions
Performs an action as you (can be modified to something else).

/me performs an action.

* SWAT One performs an action.

This transforms into [me=SWAT One]performs an action.[/me], which you then can manipulate to [me=Badspot]performs an action.[/me].

* Badspot performs an action.

No BBCode
Ever wondered how I was making tags not parse in this post?  This is how.

[nobbc][b]Blockland[/b][/nobbc]

[b]Blockland[/b]



If you have any questions or contributions, please let me know so I can add it to the OP or address it in a reply below.

36




Map     ·     Calendars     ·     About     ·     Rules & General Information     ·     Staff     ·     How to Join     ·     Links     ·     Statistics & History




(Click for full size)





Gregorian Calendar
Current Year:  
1,425 BC
Timescale:  
1 Day = 15 Simulated Years




Welcome to the third installment of the Anagaea series.  This Roleplay is a sequel of sorts to this game, and before it, this one. The goal of this is for a Nation RP with the laid-backness and freedom of older nation RPs but with the fairness of an overall moderator. As of now, there are two moderators. This may change over time once we settle into the groove of things.

Thanks to all in the past who have played Anagaea and made it into a great game and helped to create great memories.  Thank you to Mikoyan and Nasoa for hosting it in the past, and thank you for all who contributed and contribute media even today.




  • Technology may be researched at your discretion. Do not abuse that, however. Moderators will be monitoring all of this.
  • If you decide to study and research anything, be as detailed as possible about what it is and how it will affect your nation.
  • Moderators will decide the outcomes of major events and decisions when it is needed.  We dislike the idea of anything similar to auto-hitting.
  • Please try to take your current situation seriously before making a decision.
  • Everyone starting at the beginning of the game must start with no more than a 250,000 person population. This may grow GRADUALLY over time. Random events will be generated by moderators at random times, or by a decided time as dictated by popular opinion. So don't complain in the thread if something bad happens to you at a moderator's disposal. Bad things are likely to happen to moderator nations as well.
  • Do not request random events to be rescheduled or to happen.  They will happen completely at a moderator's discretion.
  • Your military must remain at a maximum of 13% of your population for the time being.
  • Do not think that just because there is a moderator you are restricted from doing whatever you want. If you feel like doing something, just go ahead and do it. If anything is voided, you may address the moderator's decision IN A PRIVATE MESSAGE.  Do not disturb the game to complain about your woes.
  • When fighting, you must wait for your opponent to respond before commencing your next attack or move in battle.
  • Please PM me any major actions you make with NPCs. Also any major military decisions. Do NOT decide your outcome in battle or have NPCs agree/disagree to anything you request. You can send the quote(s) to me and I'll respond in the thread.
  • Just because something is on the map doesn't mean that you know about it.  In order to have intention to react with a region, you must discover it in-rp.
  • You may only control one nation-state at a time.




SWAT One    
Chief Moderator
Plethora    
Moderator
Jairo    
Vexillologist




Fill out the following template and post it. Then await confirmation of entrance from a moderator.

Please point out where your first city is with a small pixel circle (See the map for examples).

Code: (Suggested Application) [Select]
[center][flag]

[b][size=20pt]Nation Name[/size][/b][/center]
[hr]

[b][size=15pt]Government:[/size][/b]
[Government Type]
[Legislature]
[b]Head(s) of state:[/b]
[b]Prominent government members:[/b]
[b]Capitol city:[/b]
[b]Major cities:[/b]  (Other than capitol.  Add this section, and likewise a major city once its population breaks 100,000)
[b]Intentions of your government:[/b] Just your information. Not available to the RPing public.
[any other government information you wish to add]

[b][size=15pt]Foreign relations:[/size][/b]
[b]Military Alliances:[/b]
[b]Trade partners:[/b]
[b]Organizations:[/b]
[b]Collaborating with:[/b]

[b][size=15pt]Demographics:[/size][/b]
[b]Model culture:[/b] (Choose real life culture(s) that you're modeled off of. This is optional)
[b]Population:[/b]
[b]Official language:[/b]
[b]Other languages:[/b]
[b]Demonym:[/b] e.g. American, Russian, Chinese
[b]Religion:[/b]
[b]Currency:[/b]
[b]Calendar:[/b] (Ask a moderator what this means)
[any other demographic information you wish to add]

[b][size=15pt]Military:[/size][/b]
Nothing needs to go here at the moment. Just state your number of soldiers and their equipment.
Code: (Short Application) [Select]
[center][flag]

[b][size=20pt]Nation Name[/size][/b][/center]
[hr]

[b][size=15pt]Government Type:[/size][/b]
[b]Head(s) of state:[/b]
[b]Capitol city:[/b]
[b]Major cities:[/b]  (Other than capitol.  Add this section, and likewise a major city once its population breaks 100,000)

[b][size=15pt]Foreign relations:[/size][/b]
[b]Military Alliances:[/b]
[b]Trade partners:[/b]
[b]Organizations:[/b]
[b]Collaborating with:[/b]

[b][size=15pt]Demographics:[/size][/b]
[b]Population:[/b]
[b]Official language:[/b]
[b]Demonym:[/b] e.g. American, Russian, Chinese

[b][size=15pt]Military:[/size][/b]
Nothing needs to go here at the moment. Just state your number of soldiers and their equipment.




FlagMaker:
FlagMaker 1.7
FlagMaker 2.0
FlagMaker Lite Etc...
SVG to PNG
Etc...

Anti-Pagestretch
Script
Requires:
Tampermonkey

or
Greasemonkey

Emblem Creator
Emblem Creator Etc...
SVG to PNG Etc...

37
Help / [FORUM] Receiving no email notifications
« on: August 16, 2016, 06:23:48 PM »
Idk what the problem is.  I'm just not getting anything.

38
Forum Games / Dear Diary
« on: August 15, 2016, 11:17:08 PM »
Try to create a story.

"Dear diary, today, ..."

39
Suggestions & Requests / [PRINT BRICKS] Office and Building Signs
« on: August 15, 2016, 07:02:57 PM »
Just a list of things that would make very nice props for offices, buildings, and such.



Name placards would mean these:


Overhead room signs would be these:


Directory Boards would be these:


Brass plaques would be these:


40
Forum Games / ►►► RP Central
« on: August 05, 2016, 01:09:39 AM »




About      ·      Staff      ·      Join      ·      Promotions




Now you may be wondering, Why a Discord for a specific board of the forums? or Why bother with such a small pocket of the forums?  The Forum Games section has always been about collaboration, cooperation and community.  Forum games sometimes require a lot of development, media, and usually a good amount of players following it so that it stays alive and well.  Such attempts have been made before, but then why limit it to a certain kind of development?  This Discord is made to address this, in hopes of making all things involved with communication in development, promotion, and recent happenings that would normally happen by BLF PMs or a flurry of Steam messages and group chats on a simpler, more consolidated platform.




Name                BL_ID                Discord Name                Discord ID                Position
SWAT One14257Tuevon#7580Administrator
TristanLuigi26659TristanBomb#8312Assistant Administrator

How do we select staff members?  If current staff members think that we have too much to handle, we will allow users to submit applications to run for a moderator position.  As many as 10 of those who are accepted by the current staff are then put in a poll for you, the users, to vote for who you believe would be the best moderator.




  • Don't be a richard or start massive arguments.  We're a pretty chill place and we'd prefer to keep it that way.
  • Please keep memes in #main-meme-dump.
  • Concerning @mentions
    • You may use @everyone or @here to call attention to a new thread or promote a current thread.  Do not overuse it.
    • If you are providing information on a thread update, use subscriber type-mentions only in the room for which the subscription applies and any applicable topic type channel.  For instance, @Tank Busters Subscriber can only be mentioned in #blf-tank-busters.
    • A staff member may use @here or @everyone to call attention to new features or for announcements on whether the forum is down.
    • Additional roles are made for forum game categories so that you can keep up to date on games of some of your favorite genres.
      • Nation RP Subscriber is for mentioning new releases or promotions of your Naion RPs/NRPs. If you wan updates on new NRPs, then ask to be subscribed to it in #main-sub-reqs.
      • Character RP Subscriber is for mentioning new releases or promotions of your Character RPs, those that revolve around the exploits of one or more characters. If you wan updates on new CRPs, then ask to be subscribed to it in #main-sub-reqs.
  • If you want, feel free to ask if you want to host an RP on the Discord. Staff will make channels for you to use. Ideal for text-only or text-centered adventures.



Become a Recognized Content Creator (RCC)
Create a new Channel or Role



None yet. Want to have your topic featured here? Contact me.

41
Forum Games / [S&SNS] — Sneeki breeki
« on: July 24, 2016, 03:49:41 AM »



Navigation

Background     •     Maps     •     How to Play     •     Characters     •     Party



Background

The world is full of magic and mystery, many strange creatures, and hidden treasures.  Magic has existed for as long as humankind has walked the Earth.  Some say that it came about by looking to the stars.  Some say it came about by worshipping gods, demons and other spirits, and others through sacrifices.  It has been involved in peace and war alike.

Great empires to the East have grown in power and wealth, and are embroiled in conflicts to the northeast, and in acquiring new, exotic treasures, have begun to share their treasures with the outside world, creating a spike of interest in trade with faraway lands.  In recent years, The Kingdom of Ajaida has also grown to be a regionally powerful country, supplanting the region's former powers, the Kejradi Emirate and the Kingdom of Ubliydal as the region's most influential.  Seven years ago, Kejrad peacefully granted the Aquri people independence.  A year later, the fledgeling Principality of Aqur was invaded and occupied by Ajaida, which had closely, but silently and patiently watched the nation, placing a puppet government in place.  Kejrad, angered by this act which defiled informal peaceful talks between itself and Ajaida, has been threatening war, and roped in its ally, The Kingdom of Teshruq, and Ubliydal, now a friend as Ubliydal had been affronted by Ajaida's increasingly aggressive trade policies.  Ajaida, with Aqur and its sole regional ally, the Sewadi Emirate, are pitted against their northern neighbors who make trade with the Orient nigh impossible.

Now, the two camps are on the brink of war that could engulf the entire region in bitter conflict.  Slave trading has spiked for unknown reasons in recent years, along with the kidnappings that are often caused by such a vile practice.




Maps
(For player reference; click for full size)

Political
Physical



How to Play

This game is a group effort.  You, as the user, suggest actions for playable characters to take.  Others are NPCs.  It works kinda like Everyone is John, except the more extreme suggestions would typically be ignored if it didn't fit the character's personality.  These are at the discretion of GMs.

Other Information
(You do not need to suggest in this format.  This is just the format that GMs use to help understand the context.)

Names are mentioned in bold.
"When someone is speaking, it will be written like this."
"If someone is mentioned in speech, their name will be bolded."
If someone is indicated as talking, they will be indicated as follows:  Name:  "Spoken dialogue."
Actions are otherwise normal text.



Characters
Hakim  (SWAT One)
Bandit
Male, 13
A young Ajaidan boy orphaned at an early age when his mother died of sickness and his father left him, Hakim has since been left on his own.  Although he has had little for much of his life, he is generally kind and generous.  Recently, he has found himself within a group of bandits local to the town of Tabūk, generally peaceful to civilians, and expressly ambivalent to the growing government-run slave trade.  Nevertheless, they are considered pests to the local town's leadership.

He is short in stature, standing at only 1.4m (≈4.59'), thin, has very dark brown, loosely curly hair, and a complexion of dark olive.
Weapons/Tools                Food/Drink                Other Items
nonenonenone

Ryouma Marx Yoshihiro  (Space1255)
Mercenary
Male, 17
An illegitimate son of a traveling Derinian nun and Nazainese warlord Yoshihiro.  When the people of Yoshihiro's domain found out that Yoshihiro had an illegitimate child, after training young Ryouma in the art of self-defense, he sent his son and his mother back to Noriec, but on the voyage there, they ran into a huge storm, ultimately ending in the shipwreck of the vessel and the death of his mother. Ryouma, not knowing how his father would react, decided to simply have a letter sent amounting to "She died," and secretly return to Nazai to live on his own as a traveling mercenary at the age of 14. After getting into a conflict with a small warlord and losing, he decided to cast aside his remaining honor and join the warlord's army as simple cannon fodder to appease him. However, in one fateful battle, he encountered his father fighting in the opposing army. Not wanting to be present when he unleashes his wrath, Ryouma defected from the fight and stole a nearby fisherman's boat. After escaping the battle, he stowed away on a cargo ship headed to Qazut. From there, he started traveling and helping people with what little knowledge of Bushido he knew.

Average height, has light green, straight hair, and a pale complexion.
Weapons/Tools                Food/Drink                Other Items
Naginata
Tantō
Three full waterskins
Four loaves of bread
A potion for sealing wounds (1 use)
863 Dviddah (currency of Ajaida and Sewad)
411 Sammah (currency of Aqur)
1,201 Khazma (currency of Ubliydal)

Submit your own character.



Party (Obsolete section to be modified)
Hakim is currently with the bandit gang north of Tabūk, Ajaida, receiving final briefing on a mission.

Other Members
Fazl (Leader)                
Battered scimitar
Bashir                
Iron quarter-staff
Imad                
Knife
Iqbal                
Old crossbow
Hamid                
Chains and knife


42
Suggestions & Requests / [REQUEST] Slayer-Compatible Sentries
« on: July 07, 2016, 03:41:14 PM »
Bushido's sentry mod, but compatible with Slayer.  I heard that someone fixed it up, but I couldn't find the link.

43
Help / Frequent Sqlite Errors — Blockland not writable?
« on: June 27, 2016, 05:48:03 PM »

This happens maybe 10 times out of the week.  It's annoying and idk why this started happening.  It always happens during loading.

44
Help / Self Delete not working
« on: June 20, 2016, 02:36:53 PM »
I don't think I enabled any Add-Ons other than my usual.  Are there any Add-Ons o Add-On combinations that are known to disallow Self Delete, and also perhaps mess with damage.

45
Suggestions & Requests / [EVENT] Minigame » Team Text — COMPLETED
« on: June 18, 2016, 06:02:43 AM »
Suggestion completed!
Done.
http://www.mediafire.com/download/bssl971v1bsvm84/Event_SlayerTeamChatEvents.zip

Either put the team name in the first box, or leave it blank and select the team color.
I couldn't put a checkbox at the end of the bottomPrintTeam event because there's an argument limit of 4. So instead in the put box you can put TIME BOOLEAN.



Basically the CenterPrint, BottomPrint and ChatMsgAll events for slayer teams, with output parameter of team color.

Pages: 1 2 [3] 4 5 6 7 8 ... 22