• Listen to a special audio message from Bill Roper to the Hive Workshop community (Bill is a former Vice President of Blizzard Entertainment, Producer, Designer, Musician, Voice Actor) 🔗Click here to hear his message!
  • Read Evilhog's interview with Gregory Alper, the original composer of the music for WarCraft: Orcs & Humans 🔗Click here to read the full interview.

Random Discussion

Status
Not open for further replies.
A random function suddenly appeared:

JASS:
function ItemsOfTypeOnUnit takes unit u, integer rawcode returns integer
        local integer int = 0
        local integer total = 0
        loop
            exitwhen int > 5
            if GetItemTypeId(UnitItemInSlot(u, int)) == rawcode then
                set total = total + 1
            endif
            set int = int + 1
        endloop
        return total
endfunction

Example Usage:
Adds 20%/15% lifesteal for each Wifestealer/Womanizer item the hero owns.
JASS:
        //Wifestealer
        set udg_DamageEventLifesteal = udg_DamageEventLifesteal + (0.2 * I2R(ItemsOfTypeOnUnit(udg_DamageEventSource, 'I024')))
        //Womanizer
        set udg_DamageEventLifesteal = udg_DamageEventLifesteal + (0.15 * I2R(ItemsOfTypeOnUnit(udg_DamageEventSource, 'I01W')))




I know most people already know how to do this, but for those who don't..
It's used to determine the number of items of a certain item-type on a hero, which GUI BJs don't have.
 
Interview with the Regional Operations Manager of San Miguel Purefoods (or was it the other one, San Miguel Foods Inc.)

PS: look at this: http://i.imgur.com/orGi7DB.png

and a reminder to everyone:

chickengames-banner.png


PS 2: Gotta try to go to Globe later again now that I have an ID with a printed address... Seriously, they have rejected me 4 times already because of some shitty documentary requirements... Our country needs a centralized system based on the NSO for identification, that will make things a lot easier...
 
Well, Ichigo is actually a quincy (coz his mom was)... Ichigo is technically 1/4 of everything...

Hollow and quincy from his mom then shinigami and human from his father...

His mom was infected by a hollow from one of Aizen's hollowfication experiments, and hollow matter is fatal to quincies, and Ichigo's dad is willing to do everything to save her... Urahara said there is a way, Ichigo's dad must stay with his mom, and he also needs to become a human too to neutralize things...

basically: hollow is opposite of shinigami, and human is opposite of quincy so they kinda cancel out

and oh the old man that he has known as Zangetsu, wasn't really Zangetsu... he's more of a remnant power from the quincy boss (all quincy's share his blood), which tries to keep Ichigo from using the real Zangetsu

PS: I have another in-development game: http://lescripts.wordpress.com/rm-vxace/phantasma-magica/pm-flamel/

and also a new prologue story: http://adiktuzscrolls.wordpress.com/2014/03/24/yet-untitled-phantasma-prologue/
 
I think we can expect more to come... especially seeing as how S.L.Jackson is booked for 9 films and Cobie Smulders (Agent Maria Hill) is also booked for 9 as it seems, so since jackson already was on a lot more movies than Cobie since her apperances so far was only on Avengers and Winter Soldier, with her next booked appearance in Age of Ultron, so after that we will still see Maria Hill for 6 more movies at least, while jackson already played 6 films with the 7th to be in Age of Ultron, then we would probably be seeing in the next years the parts where Fury is supposedly dead
 
Level 30
Joined
Jul 31, 2010
Messages
5,258
Chris Evans has a few more years of contract in Marvel, that means the phase might get some chance of getting Captain America killed and turn Bucky into the next Captain America same goes as how the comics did. Jackson on the other hand might get killed as well, giving Robert Downey jr. as Iron Man to be the next head director of S.H.I.E.L.D. Just some geek-nerd theory.
 
Level 10
Joined
Sep 1, 2013
Messages
773
I love how they finally added in Falcon!
Well, I don't think we'll be seeing Ant Man or the Wasp, since they're kinda not fitting for today's viewers.
@Hell_Master: You haven't seen a lot of Marvel movies then.
 
well, we might even see the point where Maria Hill was the deputy of SHIELD... with the world quite torn apart... One thing I'd like to see though is Stark's Blood Edge armor...

though IMHO, after reading the wikis, it seems like the longer you go into the timeline of Marvel, the more confusing the story becomes... most of the next lines of stories involves lots of time travelling, I can't get my mind around it actually...

@Wolf - actually, we will have Ant Man movie on 2015/2016 (after Ultron)

They even said that they simply used the name Age of Ultron but won't be using the actual story of that one because they won't show Ant Man on that movie. so that kinda explains why Ultron will be shown before Ant Man...
 
Level 30
Joined
Jul 31, 2010
Messages
5,258
From confusing-to-the-WTF-timeline actually. :p

Like Captain America becomes a ghost, Hulk gains a baby from an alien that hatches from an egg and comes out as a full grown man, and Wolverine has a homosexual son.

Good thing Marvel's doing a good job in ditching the bad results of comic and making it more decent. Unlike Columbia Pictures, have you guys remembered Ghost Rider? lol.
 
Status
Not open for further replies.
Top