The new forums will be named Coin Return (based on the most recent vote)! You can check on the status and timeline of the transition to the new forums here.
The Guiding Principles and New Rules document is now in effect.
I spent like 4 hours fucking around with a script in GTA 5 yesterday just to make a single script spawn 3 distinct npcs instead of using 3 seperate scripts
How do they even get those metrics? Are they polling people? Looking at blogs? Holy shit that can not be representative because I've never heard the n-word dropped. My first brush in with racism was in 7th grade when I laughed at an incredibly racist image because it was funny looking. I didn't even know it was a racist stereotype.
That was a depressing day for me, I've told this story before I think.
Remember internet anonymity.
Someone might never say anything racist when they're talking one on one with you, and then go home and google "why do n-words commit so many crimes". They don't need to justify themselves at all if it's just online.
Fair enough.
It still feels like there's some lingual bias here.
Like I said, which word is more common in the south where they're showing up less racist than people near the midwest and in the north?
I agree that it's not a great measure. Just pointing out that people can be a hell of a lot more racist in private.
Some really impressive gerrymandering going on with those regions, too.
Those are the US media markets.
I can't find a good source for what that is.
not a doctor, not a lawyer, examples I use may not be fully researched so don't take out of context plz, don't @ me
I spent like 4 hours fucking around with a script in GTA 5 yesterday just to make a single script spawn 3 distinct npcs instead of using 3 seperate scripts
although I think I know basic LUA now
... you can script GTA5???
not a doctor, not a lawyer, examples I use may not be fully researched so don't take out of context plz, don't @ me
0
TraceGNU Terry Pratchett; GNU Gus; GNU Carrie Fisher; GNU Adam WeRegistered Userregular
Jackie Chan has some pretty strong words for the makers of modern action movies.
Speaking with IndieWire, the actor shared his feeling about the state of action movies, and how what is seen on screen isn't necessarily "real."
"I think, slowly, slowly, the real action's gone. Really," he said. "Because, now we still have a few people who do the real stunts, the real action like Hong Bang, like me, like Sammo Hung and others. But, when these people are gone, when we retire, I think it's going to be difficult because the real action is really, really difficult!
"But, in America they're so good! They're so clever! They can use special effects and computer graphics to make everybody become an action star."
Chan recalls his earlier days, when the films he made forced the actors to do their stunts due to budgetary constraints. During that time, Chan suffered multiple injuries. Which, he claims, is exactly what people wanted out of his films.
"...when I made money, I had money to do special effects but the audience didn't like it! They wanted to see Jackie Chan hurt himself! They wanted to see Jackie Chan do the real thing."
He closed his response to the question by coyly suggesting special effects could turn him into an on-screen superhero.
"They just don't like to see Jackie do Superman. Spider-Man is so easy, right? I want to do it! Directors hire me!"
Chan's upcoming action film Dragon Blade will debut later this year.
Yes. Movies aren't real Jackie.
0
IlpalaJust this guy, y'knowTexasRegistered Userregular
I spent like 4 hours fucking around with a script in GTA 5 yesterday just to make a single script spawn 3 distinct npcs instead of using 3 seperate scripts
although I think I know basic LUA now
... you can script GTA5???
yeah someone made an LUA hook so you can use LUA scripts
in spoiler is the thing I did
local family = {}
family.peds = {}
family.howMany = 0
function family.tick()
if(get_key_pressed(111)) then
local int positionoffset = 10
local int modelselector = 1
local familySkinID = GAMEPLAY.GET_HASH_KEY("CS_JimmyDiSanto")
local familySkinIDB = GAMEPLAY.GET_HASH_KEY("CS_AmandaTownley")
local familySkinIDC = GAMEPLAY.GET_HASH_KEY("CS_TracyDiSanto")
local playerPed = PLAYER.PLAYER_PED_ID()
local player = PLAYER.GET_PLAYER_PED(playerPed)
local playerID = PLAYER.PLAYER_ID()
local playerExists = ENTITY.DOES_ENTITY_EXIST(playerPed)
local playerPosition = ENTITY.GET_OFFSET_FROM_ENTITY_IN_WORLD_COORDS(playerPed, 0.0, positionoffset, 25.0)
local playerGroup = PED.GET_PED_GROUP_INDEX(playerPed)
STREAMING.REQUEST_MODEL(familySkinID)
while(not STREAMING.HAS_MODEL_LOADED(familySkinID)) do
wait(50)
end
STREAMING.REQUEST_MODEL(familySkinIDB)
while(not STREAMING.HAS_MODEL_LOADED(familySkinIDB)) do
wait(50)
end
STREAMING.REQUEST_MODEL(familySkinIDC)
while(not STREAMING.HAS_MODEL_LOADED(familySkinIDC)) do
wait(50)
end
for i = 0 ,family.howMany,1 do
wait(300)
positionoffset = positionoffset + 3
playerPosition = ENTITY.GET_OFFSET_FROM_ENTITY_IN_WORLD_COORDS(playerPed, 0.0, positionoffset, 0.0)
if(modelselector == 1) then
modelselector = 2
family.peds[i] = PED.CREATE_PED( 1,familySkinID,playerPosition.x, playerPosition.y, playerPosition.z,1,false,true)
PED.SET_PED_CAN_SWITCH_WEAPON(family.peds[i],true)
WEAPON.GIVE_DELAYED_WEAPON_TO_PED(family.peds[i], GAMEPLAY.GET_HASH_KEY("WEAPON_PISTOL50"), 1000, false)
PED.SET_PED_AS_GROUP_MEMBER(family.peds[i], playerGroup)
PED.SET_PED_MAX_HEALTH(family.peds[i], 10000)
end
if (modelselector == 2) then
modelselector = 3
family.peds[i] = PED.CREATE_PED( 1,familySkinIDB,playerPosition.x, playerPosition.y, playerPosition.z,1,false,true)
PED.SET_PED_CAN_SWITCH_WEAPON(family.peds[i],true)
WEAPON.GIVE_DELAYED_WEAPON_TO_PED(family.peds[i], GAMEPLAY.GET_HASH_KEY("WEAPON_SNIPERRIFLE"), 1000, false)
PED.SET_PED_AS_GROUP_MEMBER(family.peds[i], playerGroup)
PED.SET_PED_MAX_HEALTH(family.peds[i], 10000)
end
if (modelselector == 3) then
modelselector = 1
end
family.peds[i] = PED.CREATE_PED( 1,familySkinIDC,playerPosition.x, playerPosition.y, playerPosition.z,1,false,true)
PED.SET_PED_CAN_SWITCH_WEAPON(family.peds[i],true)
WEAPON.GIVE_DELAYED_WEAPON_TO_PED(family.peds[i], GAMEPLAY.GET_HASH_KEY("WEAPON_ASSAULTSHOTGUN"), 1000, false)
PED.SET_PED_AS_GROUP_MEMBER(family.peds[i], playerGroup)
PED.SET_PED_MAX_HEALTH(family.peds[i], 10000)
end
STREAMING.SET_MODEL_AS_NO_LONGER_NEEDED(familySkinID)
STREAMING.SET_MODEL_AS_NO_LONGER_NEEDED(familySkinIDB)
STREAMING.SET_MODEL_AS_NO_LONGER_NEEDED(familySkinIDC)
end
end
return family
back when it was 3 scripts I even made a video involving it
Jackie Chan has some pretty strong words for the makers of modern action movies.
Speaking with IndieWire, the actor shared his feeling about the state of action movies, and how what is seen on screen isn't necessarily "real."
"I think, slowly, slowly, the real action's gone. Really," he said. "Because, now we still have a few people who do the real stunts, the real action like Hong Bang, like me, like Sammo Hung and others. But, when these people are gone, when we retire, I think it's going to be difficult because the real action is really, really difficult!
"But, in America they're so good! They're so clever! They can use special effects and computer graphics to make everybody become an action star."
Chan recalls his earlier days, when the films he made forced the actors to do their stunts due to budgetary constraints. During that time, Chan suffered multiple injuries. Which, he claims, is exactly what people wanted out of his films.
"...when I made money, I had money to do special effects but the audience didn't like it! They wanted to see Jackie Chan hurt himself! They wanted to see Jackie Chan do the real thing."
He closed his response to the question by coyly suggesting special effects could turn him into an on-screen superhero.
"They just don't like to see Jackie do Superman. Spider-Man is so easy, right? I want to do it! Directors hire me!"
Chan's upcoming action film Dragon Blade will debut later this year.
Jackie Chan has some pretty strong words for the makers of modern action movies.
Speaking with IndieWire, the actor shared his feeling about the state of action movies, and how what is seen on screen isn't necessarily "real."
"I think, slowly, slowly, the real action's gone. Really," he said. "Because, now we still have a few people who do the real stunts, the real action like Hong Bang, like me, like Sammo Hung and others. But, when these people are gone, when we retire, I think it's going to be difficult because the real action is really, really difficult!
"But, in America they're so good! They're so clever! They can use special effects and computer graphics to make everybody become an action star."
Chan recalls his earlier days, when the films he made forced the actors to do their stunts due to budgetary constraints. During that time, Chan suffered multiple injuries. Which, he claims, is exactly what people wanted out of his films.
"...when I made money, I had money to do special effects but the audience didn't like it! They wanted to see Jackie Chan hurt himself! They wanted to see Jackie Chan do the real thing."
He closed his response to the question by coyly suggesting special effects could turn him into an on-screen superhero.
"They just don't like to see Jackie do Superman. Spider-Man is so easy, right? I want to do it! Directors hire me!"
Chan's upcoming action film Dragon Blade will debut later this year.
Yes. Movies aren't real Jackie.
Except he's right. Most modern action movies are garbage. Fight scenes are shaky cam and smash cuts every poorly choreographed punch. Car chases alternate between showing the actor shift into 31st gear and the cars going past at tire level.
matt has a problem on
+11
Deebaseron my way to work in a suit and a tieAhhhh...come on fucking guyRegistered Userregular
that feel when your favorite local restaurant rotates its menu.
so many delicious dishes.
gone forever.
How do they even get those metrics? Are they polling people? Looking at blogs? Holy shit that can not be representative because I've never heard the n-word dropped. My first brush in with racism was in 7th grade when I laughed at an incredibly racist image because it was funny looking. I didn't even know it was a racist stereotype.
That was a depressing day for me, I've told this story before I think.
Remember internet anonymity.
Someone might never say anything racist when they're talking one on one with you, and then go home and google "why do n-words commit so many crimes". They don't need to justify themselves at all if it's just online.
Fair enough.
It still feels like there's some lingual bias here.
Like I said, which word is more common in the south where they're showing up less racist than people near the midwest and in the north?
I agree that it's not a great measure. Just pointing out that people can be a hell of a lot more racist in private.
Some really impressive gerrymandering going on with those regions, too.
Those are the US media markets.
I can't find a good source for what that is.
It's used for a lot of things. For example, you know how when you watch TV, there are local ads? The person trying to buy an ad doesn't get to just pick and choose which individual towns they want to advertise in, the media market is the typical delimiter. They're pretty commonly used for any kind of media based statistics (internet searches in this case).
im ordering groceries and want to try cooking something tomorrow
cant decide what
gimmie ideas chat
Meth
life's a game that you're bound to lose / like using a hammer to pound in screws
fuck up once and you break your thumb / if you're happy at all then you're god damn dumb
that's right we're on a fucked up cruise / God is dead but at least we have booze
bad things happen, no one knows why / the sun burns out and everyone dies
Then I grew up and learned he's basically a spokesman for how great the PRC is.
Screw Jackie Chan.
meh
Almost everybody does it with their own country, and it's hard to get a nuanched view of their beliefs without duirectly having that conversation with them.
Then I grew up and learned he's basically a spokesman for how great the PRC is.
Screw Jackie Chan.
meh
Almost everybody does it with their own country, and it's hard to get a nuanched view of their beliefs without duirectly having that conversation with them.
Some of the shit he's said is downright disgusting.
Posts
i toast them when I make breakfast sandwiches with them.
im not a bagel and cream cheese person.
although I think I know basic LUA now
I can't find a good source for what that is.
The block itself was great, but the story was clearly a Crisis.
... you can script GTA5???
Yes. Movies aren't real Jackie.
Lasted longer than me, couldn't muster interest post-Urza/Yawgmoth.
Switch - SW-7373-3669-3011
Fuck Joe Manchin
For the uninitiated, OPACY Is "Oriole Park At Camden Yards"
yeah someone made an LUA hook so you can use LUA scripts
in spoiler is the thing I did
back when it was 3 scripts I even made a video involving it
https://www.youtube.com/watch?v=FPEK9agVgA0
Freeze-toast is good for about a week. Thirty bagels is like... too many bagels.
https://www.youtube.com/watch?v=Z1PCtIaM_GQ
DK, let's be real
If I received a bounty of 30 bagels, I could see myself eating 30 bagels in a week
Except he's right. Most modern action movies are garbage. Fight scenes are shaky cam and smash cuts every poorly choreographed punch. Car chases alternate between showing the actor shift into 31st gear and the cars going past at tire level.
so many delicious dishes.
gone forever.
what if I vacuum seal them
Then I grew up and learned he's basically a spokesman for how great the PRC is.
Screw Jackie Chan.
It's used for a lot of things. For example, you know how when you watch TV, there are local ads? The person trying to buy an ad doesn't get to just pick and choose which individual towns they want to advertise in, the media market is the typical delimiter. They're pretty commonly used for any kind of media based statistics (internet searches in this case).
Jackie Chan wouldn't lie.
Maybe the PRC really is perfect.
cant decide what
gimmie ideas chat
I was assuming air seal already. Without air seal they have a day max.
Obviously they'll still be edible, I am just a huge snob about frozen bread products.
Meth
fuck up once and you break your thumb / if you're happy at all then you're god damn dumb
that's right we're on a fucked up cruise / God is dead but at least we have booze
bad things happen, no one knows why / the sun burns out and everyone dies
Grilled salmon. Use teriyaki sauce.
they're in a sealed bag but I have a vacuum sealer, that seems to make things last a really long time
Yeah override, poor person perspective: Freeze 'em and they'll be good for at least a couple weeks :P
Maybe forever
can I use a crossbow or is the flying penetrating dart too phallic for such a task
Calories in the rain
You can only use Georgia O'Keeffe paintings.
if you press the button while using a jet the results are hilarious
if you press the button while using a helicopter the results are horrifying
?
meh
Almost everybody does it with their own country, and it's hard to get a nuanched view of their beliefs without duirectly having that conversation with them.
It’s not a very important country most of the time
http://steamcommunity.com/id/mortious
Some of the shit he's said is downright disgusting.
http://forums.penny-arcade.com/discussion/comment/32428434/#Comment_32428434
it's created a scheduling nightmare, apparently. there isn't an easy way to run a double header later in the season, for some reason.