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

Pages: [1] 2
1

What is duck game?
Duck game is a video game made by Landon Podbielski where ducks are scattered around a 2d map and have to shoot each other. You can buy the game on steam for 13 bucks.  The game has online multiplayer as well as local. You can play with a controller or a keyboard. Most people play controller, but I prefer keyboard.  There are a variety of items such as swords, snipers, shotguns, pistols, and more. But wait, theres more! This game supports steam workshop! Which means you can download hats, maps, and weapons other people have made. Don't have any friends or there is no one online? Don't fear! There is a single player mode called the "Arcade" where you can complete challenges and obtain hats for your duck! Oh yea,  I forgot to mention the private beta that occurs every now and then.  Once in a while, you can apply for the private beta. You can test brand new maps, items, and perhaps new features! Sadly, private beta is closed for now.
Trailers
https://www.youtube.com/watch?v=DGm7LrocVuA
https://www.youtube.com/watch?v=3hMLA5o9dPM
Weapons
Bazooka


Dueling Pistol


Mag Blaster


Magnum


Musket


Old Pistol


Pistol


Sniper


Snubby Pistol


Self Delete Pistol


Flame Thrower


Flare Gun


Match Box


Roman Candle


Death Ray


Laser Rifle


Pewpew Laser


Phaser


Plasma Blaster

Quad Laser


AK-47


Minigun


SMG


Chainsaw


Sword


Sledgegammer


Shotgun
(Regular)

(Combat)

(Virtual)

(Blunderbuss)


Banana


Grenade


Grenade Launcher


Mine


Net Gun


Mind Control


Magnet Gun

Screenshots









2
General Discussion / Its coming.
« on: February 21, 2016, 02:02:22 PM »
Prepare your selves.

3
I really want to make a game instead of making mods. What is the best way to use Torque knowledge to make a game on a separate language?

4
Drama / Uladi - Multiclienting
« on: December 14, 2015, 05:49:58 PM »

5
Modification Help / Hunger Script not working correctly
« on: December 10, 2015, 03:18:59 PM »
So, viso made a hunger script for my hopefully upcoming hunger games server. When the code was executed, the jet bar showed up like it was supposed to, however, it didn't go down. Also, when I killed my self, the bar wasn't there anymore. I tried to fix/find the problem my self, but I couldn't find it. Please help.
Code: [Select]
function Player::HungerLoop(%this, %hunger)
{
    if(!isObject(%this)) //Return the function if nothing exists, usually happens when you call your client's player to use this function that doesn't exist or something like that
        return;
    
    //This runs on a schedule, this helps prevent multiple schedules running on an object, this is always recommended to do.
    cancel(%this.hungerLoopSch);
    
    if(%this.getState() $= "dead") //If it is dead do not continue the code (return it)
        return;
    
    if(%hunger <= 0)
        %this.addHealth(-1);
    else
        %hunger--; //Subtract the health by 1
    
    %this.hungerLoopSch = %this.schedule(1 * 5000, "HungerLoop", %hunger);
}
//Done.
//Because we don't have it called yet, it won't work, so we need to make a way for it to work.

package blah
{
    //This happens when a player spawns
    function Armor::onAdd(%armor, %playerObject)
    {
        Parent::onAdd(%armor, %playerObject);
        if(isObject(%client = %playerObject.client) && isObject(%minigame = %client.minigame)) //Do they have a client and a minigame?
            %playerObject.HungerLoop(100); //Call it, set their hunger to 100
     }
};
activatePackage("blah");

6
Suggestions & Requests / Hunger Games in blockland
« on: December 06, 2015, 03:46:23 PM »
I really want this to happen. I'm really getting tired of the same servers and I can tell this will be a lot of fun.
Features:
  • Rotating maps
  • Hunger (thirst possibly?) With food and possibly drinks
  • Randomized items in the cornucopia
  • Not needed but will be fun: Randomized terrain
Thanks!

7
Forum Games / Halloween Avatar Contest [OVER] SBG WINS!
« on: October 14, 2015, 04:24:50 PM »
/title
say "Let me in" if you want to participate. VOTING STARTED
Voting will start 10/16/15 10/18/15
You cannot submit you avatars by the time voting starts.  
So get your avatars in.
HAS TO BE HALLOWEEN BASED.

8
Help / Server cannot verify ID
« on: October 11, 2015, 08:27:24 AM »
Hello, I'm currently trying to play blockland on a mobile hotspot
But it says  "Server cannot verify ID"
help will be good
tired both retail and stean

9
Add-Ons / Getpos
« on: September 27, 2015, 01:26:01 PM »
Get your position!
http://www.mediafire.com/download/wvvm2o82mw7628a/Server_getpos.zip
reopening thread since crown told me not to because /getransform is the position your looking at instead of where you're standing

10
Modification Help / Maps not appearing in custom speedkart gamemode.
« on: September 08, 2015, 03:17:40 PM »
Hello! I've been trying to make a speedkart randomizer but the script and the maps are not showing, some assistance please.
I have no clue on what made this happen.


11
Modification Help / How to make events?
« on: September 03, 2015, 02:20:48 PM »
Hi! I've been wanting to make a speedkart gamemode with item boxes, but I need to learn on how to make events! Please link helpful addons or resources! Thank you!

12
Modification Help / Song not appearing ingame
« on: August 26, 2015, 05:09:57 PM »
So I'm trying to import a song into blockland, but for some strange reason, its not appearing ingame,
the file is an ogg file for sure. Help please?

13
I want to make a mod for blockland that requires this.
and also, do any of you know a helpful coding website?

14
Help / Blockland dectected as a threat?
« on: August 11, 2015, 06:43:24 AM »
Ok, so my avast anti virus just deleted my blockland thinking its a threat, how did this happen? .-.

15
Help / Cannot connect to servers.
« on: July 29, 2015, 07:11:44 PM »
For some strange reason, I can't join a server
It says: connection error. Please try another server
error code (CHR_PROTOCOL_LESS)
Help please.

Pages: [1] 2