Blockland Forums > Suggestions & Requests

GTA - Online sort of death messages

Pages: (1/1)

Dre5567:

In GTA Online, when you are in a TDM/DM, When you kill someone, it will say messages like

"player pistoled player"

"player popped player"

"player submachined player"

"player riddled player"

Could we do something like this? It'd be pretty cool.

SgtDaemon:

You could modify the weapons to display a custom message instead of a CI
Example:

I will use the Gun as an example, but it should work with most weapons:
Find the line starting with AddDamageType (usually a long line):


--- Code: ---AddDamageType("Gun",   '<bitmap:add-ons/Weapon_Gun/CI_gun> %1',    '%2 <bitmap:add-ons/Weapon_Gun/CI_gun> %1',0.2,1);
--- End code ---

Now replace the second <bitmap:whatever> with your custom message:


--- Code: ---AddDamageType("Gun",   '<bitmap:add-ons/Weapon_Gun/CI_gun> %1',    '%2 gunned %1',0.2,1);
--- End code ---

And it should be good. (I think the first line is Self Delete or when you get killed by a bot)

Teneksi:


--- Quote from: SgtDaemon on December 21, 2013, 11:38:40 AM ---I will use the Gun as an example, but it should work with most weapons:
Find the line starting with AddDamageType (usually a long line):

AddDamageType("Gun",   '<bitmap:add-ons/Weapon_Gun/CI_gun> %1',    '%2 <bitmap:add-ons/Weapon_Gun/CI_gun> %1',0.2,1);

Now replace the second <bitmap:whatever> with your custom message:

AddDamageType("Gun",   '<bitmap:add-ons/Weapon_Gun/CI_gun> %1',    '%2 gunned %1',0.2,1);

And it should be good. (I think the first line is Self Delete or when you get killed by a bot)

--- End quote ---

You shouldn't put pieces of your post inside the code box

Pages: (1/1)

Go to full version