Hey, can someone please help me here?
I want to edit Money Printers, Drug Labs and Drugs so they do not say something such as "Bob's Money Printer" and instead just say Money Printer. Does anyone know how to do this?
Any help is greatly appreciated, thank you.
Open up darkrp/gamemodes/cl_init.lua
Find:
[code]local text = owner .. "'s\nMoney Printer"[/code]
Replace With:
[code]local text = "Money Printer"[/code]
Im thinking he wants it to show it for everyone. so the police wont know whos money printer it is if they raid his house.
[QUOTE=Mudbone;21281567]Im thinking he wants it to show it for everyone. so the police wont know whos money printer it is if they raid his house.[/QUOTE]
Doesn't matter too much of the purpose, all I know is that he doesn't want anyone magically knowing that x belongs to y.
Also, I have seem to left out a few things...
In the same file,
Find:
[code]local text = owner.. "'s\ndruglab\n"..LANGUAGE.customer_price.. price[/code]
Replace with:
[code]local text = "druglab\n"..LANGUAGE.customer_price.. price[/code]
Find:
[code]local text = owner .. "'s\ndrugs\n"..LANGUAGE.customer_price.. price[/code]
Replace with:
[code]local text = "drugs\n"..LANGUAGE.customer_price.. price[/code]
Thanks, this really helped our server and will fix a lot of metagaming.
Yes, listen to deadeye. He knows his stuff... as for sam... do you even know how to lua code? ><
Sorry, you need to Log In to post a reply to this thread.