Staredit Network > Forums > Modding Assistance > Topic: Resource gain upon kill
Resource gain upon kill
Sep 7 2020, 1:41 pm
By: Netbek  

Sep 7 2020, 1:41 pm Netbek Post #1



When certain unit types kill certain enemy unit types, it's suppossed to generate some ore/minerals income.
I already know the code to use in the general-plugin-template-project in order to increase a players ore/gas, but that's about it:
Code
resources->minerals[unit->playerId] += 1;

What code would I need to detect the killing unit, as well as the killed unit? Which file from GPTP would I need to change? Coding help plz! :0_o:

P.S.: As a bonus, I'd like the income gain to only occur when a certain tech is researched.




Sep 7 2020, 3:31 pm lifebot Post #2



http://www.staredit.net/wiki/index.php/Kills_to_cash




Sep 7 2020, 4:59 pm MTiger156 Post #3

Veteran Mapper

It's possible to do this entirely with EUDs, including the Tech requirement.

Once in a DAT Editor, you can view or modify any unit's kill score. Keep those values in mind when creating your "Kill Score" trigger(s).
Use subtraction (instead of setting) when converting Kill Score to minerals. That way, units of a higher score can yield more minerals. It also allows multi-kills to be calculated correctly.

To add a Tech requirement to this system, add a Switch condition to the conversion trigger(s). Then with EUD triggers, when the player researches the desired Tech, set that Switch. (Also immediately set Kill Score to 0 at that point unless you want all prior kills to count)



"It takes far more than a simple ideology to map amazing things. Mapping requires a strong passion for SC as well as an even stronger devotion to your work. Avoid instant gratification. Set directions/goals for the map, and stick to them. Take pride in the work, be patient with it, and never settle for less."
-Tiger

Sep 12 2020, 3:04 pm Voyager7456 Post #4

Responsible for my own happiness? I can't even be responsible for my own breakfast

Guys, this is Modding Assistance.


Netbek - I think the easiest place to do this would be in weaponDamageHook in weapon_damage.cpp. That function has the attacking unit and target unit as arguments, so it should have everything you need. Right above the line
Code
target->damageHp(damage, attacker, attackingPlayerId,
                            weaponId != WeaponId::Irradiate);         //Prevent Science Vessels from being continuously revealed to the irradiated target


I would add something along these lines:

Code
        if(target && attacker && damage >= target->hitPoints && scbw::hasTechResearched(attackingPlayerId, TechId::YourTech)) {
            resources->minerals[attackingPlayerId] += 1;
        }




all i am is a contrary canary
but i'm crazy for you
i watched you cradling a tissue box
sneezing and sniffling, you were still a fox


Modding Resources: The Necromodicon [WIP] | Mod Night
My Projects: SCFC | ARAI | Excision [WIP] | SCFC2 [BETA] | Robots vs. Humans | Leviathan Wakes [BETA]


Oct 5 2020, 6:25 pm Netbek Post #5



Voyager, it works so far, but how do I check if the owner of "target" is an enemy of "attacker"?

EDIT: nvm, I just found the "isTargetEnemy(target)" function :)
this is what the code looks like:
Code
if(target && attacker && damage >= target->hitPoints && attacker->isTargetEnemy(target)) {
    if(attacker->id == UnitId::TerranVulture && target->id == UnitId::ZergZergling) {
        resources->minerals[attackingPlayerId] += 3;
    }
}

I inserted it in "weapon_damage.cpp", above the science vessel lines you mentioned. I additonally made it check the unit type of attacker and target.
Thank you very much once again!

FOR FUTURE SEARCHERS:
I attached the full modified "weapon_damage.cpp". I used the General-Plugin-Template-Project for Visual Studio 2008. For step-by-step image tutorial on SC1 plugin creation, see my posts here & here

Attachments:
weapon_damage.cpp
Hits: 0 Size: 4.8kb

Post has been edited 1 time(s), last time on Oct 5 2020, 6:45 pm by Netbek.




Oct 5 2020, 6:45 pm Voyager7456 Post #6

Responsible for my own happiness? I can't even be responsible for my own breakfast

scbw::isAlliedTo(attacker->playerId, target->playerId) will return true if target is allied to attacker.

EDIT: beat me to it



all i am is a contrary canary
but i'm crazy for you
i watched you cradling a tissue box
sneezing and sniffling, you were still a fox


Modding Resources: The Necromodicon [WIP] | Mod Night
My Projects: SCFC | ARAI | Excision [WIP] | SCFC2 [BETA] | Robots vs. Humans | Leviathan Wakes [BETA]


Options
  Back to forum
Please log in to reply to this topic or to report it.
Members in this topic: None.
[03:27 am]
m.0.n.3.y -- Maybe because it's an EUD map?
[03:27 am]
m.0.n.3.y -- Can't upload maps to the DB. Error says "The action you have performed caused an Error". Any word?
[2024-4-25. : 7:46 am]
RIVE -- :wob:
[2024-4-22. : 6:48 pm]
Ultraviolet -- :wob:
[2024-4-21. : 1:32 pm]
Oh_Man -- I will
[2024-4-20. : 11:29 pm]
Zoan -- Oh_Man
Oh_Man shouted: yeah i'm tryin to go through all the greatest hits and get the runs up on youtube so my senile ass can appreciate them more readily
You should do my Delirus map too; it's a little cocky to say but I still think it's actually just a good game lol
[2024-4-20. : 8:20 pm]
Ultraviolet -- Goons were functioning like stalkers, I think a valk was made into a banshee, all sorts of cool shit
[2024-4-20. : 8:20 pm]
Ultraviolet -- Oh wait, no I saw something else. It was more melee style, and guys were doing warpgate shit and morphing lings into banelings (Infested terran graphics)
[2024-4-20. : 8:18 pm]
Ultraviolet -- Oh_Man
Oh_Man shouted: lol SC2 in SC1: https://youtu.be/pChWu_eRQZI
oh ya I saw that when Armo posted it on Discord, pretty crazy
[2024-4-20. : 8:09 pm]
Vrael -- thats less than half of what I thought I'd need, better figure out how to open SCMDraft on windows 11
Please log in to shout.


Members Online: Roy