Question How to modify the messages for winning, losing, draw, and host ended game in Call of Duty: Black Ops 1 with GSC?

lewiswi

New Member
Messages
2
Reaction score
0
Points
1
Could anyone help me change the default message for winning loosing draw host ended game text I'm having a lot of trouble Im also trying to do this with infinity ops gsc injector
 

CabCon

Head Administrator
Staff member
Head Staff Team
Messages
5,086
Reaction score
2,880
Points
1,103
Could anyone help me change the default message for winning loosing draw host ended game text I'm having a lot of trouble Im also trying to do this with infinity ops gsc injector
I'm not sure if this works but you could try to find if level.strings has a variable for victory, draw, defeat or game_ended and try to modify that?

Something like this:
Code:
level.strings["victory"] = "You've won!";
level.strings["defeat"] = "Better luck next time!";
level.strings["draw"] = "It's a tie!";
level.strings["game_ended"] = "The host has ended the game";
 

lewiswi

New Member
Messages
2
Reaction score
0
Points
1
Thanks for the reply I managed to get it to work I just over complicated it. onto my next problem now do you have any idea how I could make bots not good as Im using them in my mod and they are very good I've tried bot difficulty dvar but that hasn't seemed to do anything I appreciate any help you can give me Thanks in advance
 
Top