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 - Biqus

Pages: [1] 2 3
1
Suggestions & Requests / Custom animation script by chrono
« on: January 12, 2023, 03:21:31 PM »
There is a script mentioned in this thread https://forum.blockland.us/index.php?topic=177348.0 that can allow the use of custom animations on the default playertype and im asking if anybody still has a copy of it because all the download links dont work anymore

2
Gallery / Unreleased addons and saves
« on: November 09, 2022, 01:48:11 AM »
I have made a few addons and saves but nobody ever saw them so im gonna post them here. If anybody else wants to post their unreleased or unfinished things they can go ahead and do that here if they want to

Addons

Weapon_AEBase_BreachEnterMarksman

contains M93 Black Arrow, M1A SOCOM 16 and the tactical version

Required add-ons:
Weapon_AEBase
Weapon_AEBase_BreachEnter

Download

Server_RBlood Edit

edited rblood effects to fit with my tf2 server

Download

Support_BulletHoles Edit

edited bullet hole model to fit with my tf2 server

Download

Player_Blockman


Download

sky_thunderstorm

textures from far cry 3

Download

Saves
All of the required addons combined


TF2Barn CTF


built for my 4th tf2 server, almost finished

Required add-ons:
Brick_Window

Download

Rob the bank 2

built for my 3rd rob the bank server, functional but not finished

Required add-ons:
Light_Ambient
Event_BrickZones
Brick_Window
Brick_1RandomPack
Brick_DecorativeBlocks
Brick_Plant
Brick_PlateHighRamps
Brick_Locks
Brick_Round_Corners
Brick_ExtraGrills
Brick_VerticalPlatePack
Gamemode_Slayer
Gamemode_Slayer_TreasureHunt

Download

Quell the Zapatista Uprising

team deathmatch with a theme, not finished

Required add-ons:
Light_Ambient
Brick_LLSylvanorTrees
Brick_Foliage
Gamemode_Slayer
System_PTG

Download

Small arena

a small arena

Download

KOTHMap

king of the hill/deathmatch with fallout 3 style

Required add-ons:
Brick_Window
Brick_WedgePlus
Brick_1RandomPack
Brick_HalfArches

Download

3
Modification Help / $Sky::WindVelocity no longer working
« on: November 29, 2021, 06:45:35 PM »
$Sky::WindVelocity from the .atmosphere file is no longer working for me, but it still works if you set it from the console with sky.setwindvelocity(); so i wanted to see if any one else is having this probelm or what i can do to fix it

4
Off Topic / Squid Game
« on: October 06, 2021, 02:26:24 PM »
Have you watched the show? What did you think about it?

5
Modification Help / Solved Animated fire not showing up in game
« on: July 13, 2021, 11:45:58 AM »
I made animated fire for my server and it shows up in the emitter list but when i try to put it on a brick nothing happens

Code: [Select]
datablock particleData(AnimFlameFrame1)
{
textureName = "./frames/flame1.png";
};

datablock particleData(AnimFlameFrame2)
{
textureName = "./frames/flame2.png";
};

datablock particleData(AnimFlameFrame3)
{
textureName = "./frames/flame3.png";
};

datablock particleData(AnimFlameFrame4)
{
textureName = "./frames/flame4.png";
};

datablock particleData(AnimFlameFrame5)
{
textureName = "./frames/flame5.png";
};

datablock particleData(AnimFlameFrame6)
{
textureName = "./frames/flame6.png";
};

datablock particleData(AnimFlameFrame7)
{
textureName = "./frames/flame7.png";
};

datablock particleData(AnimFlameFrame8)
{
textureName = "./frames/flame8.png";
};

datablock particleData(AnimFlameFrame9)
{
textureName = "./frames/flame9.png";
};

datablock particleData(AnimFlameFrame10)
{
textureName = "./frames/flame10.png";
};

datablock particleData(AnimFlameFrame11)
{
textureName = "./frames/flame11.png";
};

datablock particleData(AnimFlameFrame12)
{
textureName = "./frames/flame12.png";
};

datablock particleData(AnimFlameFrame13)
{
textureName = "./frames/flame13.png";
};

datablock particleData(AnimFlameFrame14)
{
textureName = "./frames/flame14.png";
};

datablock particleData(AnimFlameFrame15)
{
textureName = "./frames/flame15.png";
};

datablock particleData(AnimFlameFrame16)
{
textureName = "./frames/flame16.png";
};

datablock particleData(AnimFlameFrame17)
{
textureName = "./frames/flame17.png";
};

datablock ParticleData(flameAniParticle) {

   dragCoefficient      = 0.0;
   gravityCoefficient   = 0.0;
   inheritedVelFactor   = 0.0;
   windCoefficient      = 0.0;
   constantAcceleration = 0.0;
   lifetimeMS           = 566;
   lifetimeVarianceMS   = 0;
   useInvAlpha          = false;
   textureName          = "./frames/flame1.png";

animTexName[0] = "./frames/flame1.png";
animTexName[1] = "./frames/flame2.png";
animTexName[2] = "./frames/flame3.png";
animTexName[3] = "./frames/flame4.png";
animTexName[4] = "./frames/flame5.png";
animTexName[5] = "./frames/flame6.png";
animTexName[6] = "./frames/flame7.png";
animTexName[7] = "./frames/flame8.png";
animTexName[8] = "./frames/flame9.png";
animTexName[9] = "./frames/flame10.png";
animTexName[10] = "./frames/flame11.png";
animTexName[11] = "./frames/flame12.png";
animTexName[12] = "./frames/flame13.png";
animTexName[13] = "./frames/flame14.png";
animTexName[14] = "./frames/flame15.png";
animTexName[15] = "./frames/flame16.png";
animTexName[16] = "./frames/flame17.png";

   animateTexture = true;
   framesPerSec = 30;

   colors[0]     = "1 1 1 0.7";
   colors[1]     = "1 1 1 0.7";
   sizes[0] = 1.0;
   sizes[1] = 1.1;
   times[0] = 0.0;
   times[1] = 1.0;
};

datablock ParticleEmitterData(flameAniEmitter)
{
   ejectionPeriodMS = 566;
   periodVarianceMS = 0;
   ejectionVelocity = 0.0;
   ejectionOffset   = 0.0;
   velocityVariance = 0.0;
   thetaMin         = 0;
   thetaMax         = 0;
   phiReferenceVel  = 0;
   phiVariance      = 0;
   overrideAdvance = false;
   orientParticles = true;
   lifeTimeMS = 100; //Usless

   particles = "flameAniParticle";

   uiName = "Flame Animated";
};

Edit: If you use orientparticles = true then you need to put a velocity or the particles wont show up

6
Games / Favorite left 4 dead 2 guns
« on: June 09, 2021, 01:22:47 PM »
In the last thread i had to close it because the images did not work so, again what is your favorite guns from left 4 dead 2

7
Games / Images didnt work
« on: June 09, 2021, 02:44:51 AM »
Oops

8
Environment Files / Arid sky
« on: May 07, 2021, 10:05:20 PM »
This skybox is good for a desert or barn build
Credits: Me, Prentice Robers for the lighting RockyDoctor65 made that train in the screen shots
https://blocklandglass.com/addons/addon.php?id=1436

9
Suggestions & Requests / 64 x 1 x 64 brick
« on: April 12, 2021, 07:39:41 PM »
Basically it would be a brick that is 64 size but 1 stud like a big piece of paper

10
Games / Left 4 dead 2 new update
« on: September 16, 2020, 06:17:56 PM »
https://www.youtube.com/watch?v=bjnhx8Ip2Y8 Trailer

If you dont like to watchj videos then this is the new update

With this update, you can look forward to all of the following:
‣ The Last Stand campaign
  -  The survivors decide to take an alternate path in hopes of salvation, but is this path truly safe?
‣ 30 brand new achievements
 -  New and unique milestones to strive for!
‣ 26 new survival maps
  -  How long can you survive against the endless hordes?
‣ 4 new scavenge maps  -  Wait, people still play scavenge?
‣ 2 brand new melee weapons
  -  Hunt down a Jockey with the pitchfork or whack it with the shovel. Satisfaction guaranteed!
‣ L4D1 infected
  -  The L4D1 infected are back, and they're bloodier than ever!
‣ New and previously unused voicelines for survivors  -  Rochelle has a personality now!
‣ New character animations  -  New, improved and overhauled animations by our skilled modding team!
‣ Reworked gun models and animations  -  The guns now behave more like real guns!
‣ PvP enhancements and balance changes
   -  New attack spots, new tank spawns, and hundreds of new infected ladders for the competitive modes!
‣ Official implementation of CSS weapons
  -  The CSS weapons are now available to everyone!
‣ Brand new mutations Rocketdude and Tank run  -  Ever wanted to launch yourself around with a grenade launcher, or run away from hordes of tanks? We've got you covered.
‣ Improved UI options
  -  Singleplayer option for more gamemodes, Versus Survival is officially brought to the main menu, easier gamemode switching, and new outro stats!
‣ Hundreds of bug and exploit fixes
  -  The days of falling through elevators are gone!

And to top all of this off, we're going to host a free weekend when the update drops!

11
General Discussion / Wierd file in frag grenade?
« on: August 05, 2020, 02:36:44 PM »
Hello so i donwloaded the frag grenade from bl.kenko.dev and i see this file. What is it and if  it is safe?

12
General Discussion / Choose class or items
« on: May 26, 2020, 02:39:39 PM »
Im making a war server and i am thinking if i should put class for players to choose or let them choose each item to have like in teznuis slopes ctf server. Wich one do you think is better

13
Off Topic / Predict thread from 2010
« on: May 18, 2020, 12:38:54 PM »
Blockland Predicts...


2010 (hurry up and make your predictions guys)

  • First US representative elected who claims to be a registered member of the Tea Party. (Wedge in Sep. 2010)
  • Democrats do not lose the Senate in the midterm elections. (Snackbar in Sep. 2010)
  • Obama's approval polls fall below 25% on or before December 31, 2010. (Dodger in Sep. 2010)
  • Halo Reach will become the highest selling game of 2010. (Dnitro in Sep. 2010)
  • After Igor hits Bermuda, 2 more hurricanes impact the island. (Dnitro in Sep. 2010)
  • Fallout New Vegas will be massively well received by the critics. (Sirrus in Sep. 2010)
  • 2010 will come before 2011. (Kalphiter in Sept. 2010) Failed because 2011 BC came before 2010 BC.
  • Protests start after Obama gave 6 billion dollars in military technology to Saudi Arabia for protection from the Taliban. (Crysist in Sep. 2010)

2011 (here's a good solid place to put a prediction)

  • US economy recovers - this is a tricky one so we'll call it at the end of 2011. (Wedge in Sep. 2010)
  • Duke Nukem Forever delayed again. (Wedge in Sep. 2010)
  • Android phones beat both the iPhone and Blackberries. (Wedge in Sep. 2010)
  • US lifts trade embargo with Cuba. (Snackbar in Sep. 2010)
  • 83rd Academy Awards - Best Visual Effects goes to Inception. (Snackbar in Sep. 2010)
  • The next-gen gaming consoles are announced (Sony, Microsoft, Nintendo). (Illidan in Sep. 2010)
  • Iran develops nuclear weapons and suggests testing them (mid Summer). (Illidan in Sep. 2010)
  • This thread is locked/dies off. (Joekirk in Sep. 2010)
  • Terrorist attack rocks the nation. Thousands die, and the country remembers the day as we remember 9/11. (Oasis in Sep. 2010)
  • By Dec 31, 2011: Windows will come out with two new operating systems. (Dnitro in Sep. 2010)
  • There will be a new Play Station (PS4). (Dnitro in Sep. 2010)
  • Nike releases self-lacing shoe, footwear revolutionized for years to come.
  • Yeti corpse discovered in Himalayas. (Man 2 in Sep. 2010)
  • Steve Carell returns to The Office. (Moybus in Sep. 2010)
  • World Pop is around 7.5 billion. (Dnitro in Sep. 2010)
  • Portal 2 will spawn at least 5 memes in 2011. (Marcem in Sept. 2010)
  • World population 8 billion. (Lordy Lord in Sep. 2010)
  • Ozzy Osbourne dies. (Sirrus in Sep. 2010)
  • Chuck Berry dies. (Sirrus in Sep. 2010)
  • Deus Ex Human Revolution is delayed. (Sirrus in Sep. 2010)
  • Jimmy Carter dies. (Sirrus in Sep. 2010)
  • Apple releases a phone with a physical keyboard. (Sirrus in Sep. 2010)
  • Saudi Arabia attacks Israel. (Crysist in Sep. 2010)

2012

  • Linux based tablet (Chrome/Android included) beats the iPad. (Wedge in Sep. 2010)
  • Lou Dobbs does not run for President. (Wedge in Sep. 2010)
  • In the 2012 Summer Olympics, Germany will win gold in men's dressage. (Snackbar in Sep. 2010)
  • In November 2012 Barrack Obama is re-elected. (Snackbar in Sep. 2010)
  • Vladimir Putin will be elected President of Russia (again). (Snackbar in Sep. 2010)
  • Micheal Steel becomes the Republican representative for the presidential elections. (Dodger in Sep. 2010)
  • Obama will run for president again and lose. (Cyanian in Sep. 2010)
  • A flash of white and the world will dissappear. (shafin25 in Sep. 2010) - Addendum: Unfortunately if this occurs there will be no update and we will not know who won.
  • The first 3d POP-Station is released. It's a smash hit with billions sold worldwide. (Marcem in Sep. 2010)
  • Iran tests nuke successfully. (Illidan in Sep. 2010)
  • Clint Eastwood dies. (Illidan in Sep. 2010)
  • Apple announces second gaming console to be released in 2014. (Illidan in Sep. 2010)
  • Iran threatens US in the fall season. (Illidan in Sep. 2010)
  • Prez. Obama gets denied a second term. (Illidan in Sep. 2010)
  • By Dec 31, 2012: All phones will be 4G. (Dnitro in Sep. 2010)
  • Blockland will have over 40,000 players. (Dnitro in Sep. 2010)
  • The nextgen Nintendo Wii will come out. (Dnitro in Sep. 2010)
  • All traces of stray oil extracted from Gulf of Mexico. (Man 2 in Sep. 2010)
  • Barack Obama re-elected as President of United States. (Man 2, in Sep. 2010)
  • Conservatives/libertarians take control of the government. (Archon in Sep. 2010)
  • The world will not end.  (MrMulch in Sep. 2010)
  • Google purchases Facebook in July. (Cheemo in Sep. 2010)
  • I become skinny. (Hugums in Sept. 2010) Addendum: You must post a picture of yourself in 2012.
  • Hugums remains fat. (Moybus in Sept. 2010) See above.
  • 2012 didn't happen." (TheBlackParrot in Sept. 2010) Author's note: if the year 2012 comes this automatically fails.
  • Pop-tarts are now also sweetened with Splenda sometime in 2012. (TheBlackParrot in Sept. 2010)
  • Japanese air-powered car released to public around the world. (Man 2 in Sept. 2010)
  • Dreamworks Pictures forced out of business. (Man 2 in Sept. 2010)
  • Mass Self Deletes due to ridiculous claims of world ending. A town in Georgia completely depopulated due to the claims. (Lordy Lord in Sep. 2010)
  • Obama barely wins second term. (Lordy Lord in Sep. 2010)
  • Sarah Palin is seriously considered but is denied the Republican nomination for president. (Sirrus in Sep. 2010)
  • Glenn Beck attempts and fails to get the Republican nomination for president. (Sirrus in Sep. 2010)
  • Twitter, Facebook, and Google will have either bought each other out or merged into one distinct company. (Sirrus in Sep. 2010)

2013

  • There will be a federal election in Germany in October and at this election the CDU/CSU and FDP coalition will fail and there will be a red-red-green coalition formed. (Snackbar in Sep. 2010)
  • US invades Iran in late Winter/early Spring (or vice versa). (Illidan in Sep. 2010)
  • Morgan Freeman dies. (Illidan in Sep. 2010)
  • Next-gen gaming consoles are released (Holiday season). (Illidan in Sep. 2010)
  • A new Xbox comes out. (Dnitro in Sep. 2010)
  • Price of oil dramatically rises as reserves begin to be depleted, large push for alternative energy is mounted. (Sirrus in Sep. 2010)

2014

  • Half-Life Episode 3 cancelled. (Wedge in Sep. 2010)
  • DJI average rises to above its current record high. (General Nick in Sep. 2010) - Record closing average is 14,164.53, set on Tuesday, October 9, 2007.
  • President Barack Obama assassinated during press conference in Seattle. (Man 2 in Sep. 2010)
  • Planets are discovered beyond Pluto sometime in 2014. (TheBlackParrot in Sept. 2010)
  • Apple announces a real gaming computer. It fails miserably. (Lordy Lord in Sep. 2010)
  • Steve Jobs steps down as CEO of Apple. (Sirrus in Sep. 2010)
  • Capitalism will have found a way to change the internet from a free exchange of ideas to a commodity, dramatically changing how we use the internet. (Sirrus in Sep. 2010)
  • NASA completes new space shuttle. (Sirrus in Sep. 2010)
  • Woody Allen dies. (Sirrus in Sep. 2010)

2015

  • The blockland forums and blockland itself will die out. (Cyanian in Sep. 2010) - Measuring this will be hard, if the forums are dead there will be no one to post the update.
  • The Pope of the Catholic Church dies. (Oasis in Sep. 2010)
  • 1/4 of Americans will be driving electric cars. (Dnitro in Sep. 2010)
  • Average Price of a 20 OZ Coca Cola in a vending machine ($1.25) climbs to ($2.25). (Dodger in Sep. 2010)
  • Myspace dies sometime this year. (TheBlackParrot in Sept. 2010)
  • By 2015 I will lose my virginity. (Hiiro3293 in Sept. 2010) Addendum: We will require a notarized signature from your partner as evidence.
  • Africa, India, and much of Asia is hit by massive famines and droughts. Much of the population of these regions are forced to move elsewhere, or die. (Lordy Lord in Sep. 2010)
  • Moon colonization is planned. (Sirrus in Sep. 2010)
  • Fiber optic edges out cable. (Sirrus in Sep. 2010)

2016

  • Global catastrophe results from man's arrogance of his own atmosphere. The Green Revolution is taken to the next step. (Oasis in Sep. 2010)
  • Gregory Harold "Box" Johnson becomes first man to set foot on Mars. (Man 2 in Sep. 2010)
  • The United States, in response to all-time high crime rates, becomes a totalitarian state, controlling all media and mass monitoring under the unsuspecting eye of the citizens. Rebellion groups will form, but they will be dismissed as insane. :o (*Magick* Mage in Sep. 2010)
  • Linux may become fierce competition for Apple and Microsoft OSes sometime in the winter. (TheBlackParrot in Sept. 2010)
  • Civilian colonies established in Antarctica in temperature-controlled domes. (Man 2 in Sept. 2010)
  • Roughly 25% of all cars in North America are air-powered. (Man 2 in Sept. 2010)
  • Dictator rises to power in Portugal. (Man 2 in Sept. 2010)
  • EU reported that Europe's official population is 2 billion. This does not include the many immigrants from all over the world. (Lordy Lord in Sep. 2010)
  • Obama's second term ends and Hillary Clinton wins election by a landslide. (Lordy Lord in Sep. 2010)
  • The U.S. is no longer the obvious world superpower. (Sirrus in Sep. 2010)
  • Food and water become major commodities in the world market. (Sirrus in Sep. 2010)

2017

  • Valve Corporation has finally succumbed to the wrath of a publishing company, either EA or Activision, and has been bought out and liquidated. (General Nick in Sep. 2010)
  • Liquid water discovered on Mars, blueprints for permanent colony presented to NASA. (Man 2 in Sep. 2010)
  • Due to large amounts of bridge collapses, the first crCIA the new president (assuming Obama is re-elected) faces is allotting money to upgrade the nation's crumbling infrastructure. (Sirrus in Sep. 2010)

2018

  • World War III will start. (Cyanian in Sep. 2010)
  • Holograms exist. (shafin25 in Sep. 2010)
  • Facebook dies sometime this year. (TheBlackParrot in Sept. 2010)
  • Smoking dies out in United States, President takes opportunity to place ban on smoking. (Man 2 in Sept. 2010)
  • China's population reaches 3 billion. (Lordy Lord in Sep. 2010)
  • Most major nations create laws to restrict the number of children a couple may have. (Sirrus in Sep. 2010)

2019

  • Major global conflict forces the UN to take major action. (Oasis in Sep. 2010)
  • Stem Cell Research reaches a break through cure to Parkinson's and many types of Cancer. (Lordy Lord in Sep. 2010)

2020 (good luck)

  • Prince Charles will not have become king of England at any point during the decade. (Snackbar in Sep. 2010)
  • By Dec 31. 2020, Cuba will still be a communist country. (Snackbar in Sep. 2010)
  • The Cubs will win the world series. (Dnitro in Sep. 2010)
  • Mars colonized by humans, interplanetary trade route formed.  (Man 2 in Sep. 2010)
  • David Cameron reappointed Prime Minister of United Kingdom, forms Global Peace Coalition (GPC) with all of Earth's leaders. Global peace ensues for years to come. (Man 2 in Sep. 2010)
  • Families from all walks of life immigrate to aforementioned colony on Mars, overpopulation at an end for now. (Man 2 in Sep. 2010)
  • The UN will decide to build a mineral mining/research base on the moon. (Dodger in Sep, 2010)
  • Air-powered car percentage reaches 80% North America and Europe. (Man 2 in Sept. 2010)
  • World population reaches 13 billion. Minor wars for resources ensue. (Lordy Lord in Sep. 2010)
  • Widespread use of nanotechnology merging with the human body. (Sirrus in Sep. 2010)
  • NASA makes a permanent base on the moon. (Snackbar in Sep. 2010)

Wich prediction was true? or not?

14
Suggestions & Requests / All vulpine vitality midway sentinel weapons
« on: February 20, 2020, 02:52:16 PM »
Any link or place where they all are is good

15
Off Topic / Valantines day
« on: February 14, 2020, 09:55:31 AM »
Today is Valantines day

Pages: [1] 2 3