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.


Messages - Swollow

Pages: 1 ... 172 173 174 175 176 [177] 178 179 180 181 182 ... 617
2641
Drama / Re: Any players you just simply hate?
« on: January 15, 2016, 03:10:08 AM »
swollow is a bitch (am I funny yet)
y'all hate too much everyone on this forum is pretty rockin

2642
Modification Help / Re: Function to get current FOV?
« on: January 15, 2016, 03:03:41 AM »
the real question is if this was known why are there still gun packs that don't automatically restore player set fov

but thanks, this is good for future ref.
keywords: client fov field of view get server
getControlCameraFov used to be broken and those weapon packs were created before it was fixed

2643
General Discussion / Re: What type of code does blockland use?
« on: January 15, 2016, 03:02:51 AM »
blockland actually uses the secret code.  only badspot and kompressor know it, thats why its a secret.

2644
Modification Help / Re: Muzzle Velocity
« on: January 15, 2016, 12:56:12 AM »
Thanks! To be honest, I don't even know where to put those codes, but just knowing that I was wasting my time trying to modify game files is more than enough for me. But...I'm guessing those lines of code can be used to force the add-ons in the minigame and modify the velocity each time it begins right?
yes but this inside of your gamemode server.cs or script, then it will execute upon starting your game, load all the required files first and then modify the muzzle velocities to your liking

2645
Off Topic / Re: so people want me to dye my hair green for some reason
« on: January 14, 2016, 09:03:25 PM »
my hair has silvery green streaks in it right now

2646
Off Topic / Re: What song is this/what is this from
« on: January 14, 2016, 08:55:39 PM »
Keith Mansfield - Funky Fanfare
thank you so much

2647
Off Topic / Re: Someone smashed four songs together. What is happening
« on: January 14, 2016, 08:49:28 PM »
It's Muffet's theme and caravan palace, i didn't spot any other songs.
as an avid caravan palace fan I am almost certain there are at least 2 caravan songs

Muffet's Theme
Caravan Palace - Lone Digger
Caravan Palace - Clash
???

2648
Off Topic / What song is this/what is this from [Found]
« on: January 14, 2016, 08:46:05 PM »
does anyone recognize this/know what its from?
http://files.swololol.com/what_song_is_this.mp3


Keith Mansfield - Funky Fanfare
YES

2649
Off Topic / Re: Someone smashed four songs together. What is happening
« on: January 14, 2016, 08:42:53 PM »
this is delicious to my ears

2650
Add-Ons / [Server] Lock Edit-level
« on: January 14, 2016, 05:34:22 PM »
Lock Edit-level
Version 1

Look at a brick and type /lockLevel this will lock any modifying to that z level
once your level is locked you can no longer hammer/wand/admin wand/wrench/paint any brick that is not on your locked level
type /unLockLevel or look away from any bricks and type /lockLevel to unlock your edit level

Download
Swololol.com
1.23kb

2651
Modification Help / Re: Function to get current FOV?
« on: January 14, 2016, 04:47:43 PM »
Server
Code: [Select]
%client.getControlCameraFov();
Client
Code: [Select]
$cameraFov

2652
Modification Help / Re: Muzzle Velocity
« on: January 14, 2016, 04:43:31 PM »
you can't modify the game files

try doing something like
Code: [Select]
forceRequireAddon("Weapon_Rocket_Launcher");
forceRequireAddon("Weapon_Gun");
forceRequireAddon("Weapon_Spear");

rocketLauncherProjectile.muzzleVelocity = 20;
gunProjectile.muzzleVelocity = 30;
spearProjectile.muzzleVelocity = 15;
this will execute the weapons first and then change their muzzle velocity

2653
Code: [Select]
package cardDeck
{
function cardDeck::getCardName(%this,%card)
{
%num = getWord(%card,0);
%suite = getWord(%card,1);
return (%this.cardSpecial[%num] $= "" ? %num : %this.cardSpecial[%num]) @ " of " @ %this.cardType[%suite];
}
function cardDeck::iniDeck(%this)
{
%this.cardType[0] = "Spades";
%this.cardType[1] = "Diamonds";
%this.cardType[2] = "Clubs";
%this.cardType[3] = "Hearts";
%this.cardSpecial[1] = "A";
%this.cardSpecial[11] = "Jack";
%this.cardSpecial[12] = "Queen";
%this.cardSpecial[13] = "King";
%this.cardCnt = 0;
%this.cardPos = 0;
%this.deckSize = 52;
for(%i=0;%this.cardType[%i]!$="";%i++)
{
for(%a=1;%a<=13;%a++)
{
%this.card[%this.cardCnt] = %a SPC %this.cardType[%i];
%this.cardCnt++;
}
}
}
function cardDeck::shuffleDeck(%this)
{
for(%i=%this.deckSize-1;%i>=0;%i--)
{
%rand = getRandom(0,%i);
%tempCard = %this.card[%i];
%this.card[%i] = %this.card[%rand];
%this.card[%rand] = %tempCard;
}
}
function cardDeck::pickTopCard(%this)
{
if(%this.cardPos >= %this.deckSize)
return "Deck Empty";
%card = %this.card[%this.cardPos];
%this.cardPos++;
return %card;
}
};
activatePackage(cardDeck);
if(isObject($Swol_CardDeckObj))
$Swol_CardDeckObj.delete();
$Swol_CardDeckObj = new scriptObject(cardDeck);

some code I had lying around, should get you started

2654
Add-Ons / Re: New Duplicator 1.1.2 | NEW MODELS
« on: January 14, 2016, 02:56:03 PM »
Fill Printer mode?

2655
Add-Ons / Re: [Brick] Boombox v1.2
« on: January 14, 2016, 09:59:18 AM »
shut up goth
there is no need for this

goth has a legitimate point but I dont want to set up the two addons I made like that

Pages: 1 ... 172 173 174 175 176 [177] 178 179 180 181 182 ... 617