Page 1 of 1

a bit of modding help???!!!

Posted: April 5th, 2009, 3:48 am
by IrishStorm
hi there,
i am trying to change the quickchat menus i have done this with success but the name Follow me wont change how do i fix this
this is
maps\mp\gametypes\quickmassages is where i edited the file
here is the code

Code: Select all

case "1":
soundalias = "mp_cmd_follow_me";
saytext = &"";
//saytext = "gravity is ^2ON^7!";
iprintlnbold("gravity is ^2ON^7!");
iprintln("gravity is ^2ON^7!");
setDvar("g_gravity", 20);
break; 
i'm thinking about changing localizedstrings in english\localizedstrings\quickmessage
something like
REFERENCE 1_GRAVITY_ON
LANG_ENGLISH "1. Gravity on!"
or
REFERENCE 1_FOLLOW_ME
LANG_ENGLISH "1. Gravity on!"

Re: a bit of modding help???!!!

Posted: April 5th, 2009, 1:48 pm
by Drofder2004
IrishStorm wrote:hi there,
i am trying to change the quickchat menus i have done this with success but the name Follow me wont change how do i fix this
this is
maps\mp\gametypes\quickmassages is where i edited the file
here is the code

Code: Select all

case "1":
soundalias = "mp_cmd_follow_me";
saytext = &"";
//saytext = "gravity is ^2ON^7!";
iprintlnbold("gravity is ^2ON^7!");
iprintln("gravity is ^2ON^7!");
setDvar("g_gravity", 20);
break; 
i'm thinking about changing localizedstrings in english\localizedstrings\quickmessage
something like
REFERENCE 1_GRAVITY_ON
LANG_ENGLISH "1. Gravity on!"
or
REFERENCE 1_FOLLOW_ME
LANG_ENGLISH "1. Gravity on!"
2 options:
1. Change Localisation
2. Change Lcoalisation and Menu.

Keep the "1_Follow_Me" and you wont need to modify the menu.

Re: a bit of modding help???!!!

Posted: April 5th, 2009, 5:42 pm
by IrishStorm
Drofder2004 wrote:
IrishStorm wrote:hi there,
i am trying to change the quickchat menus i have done this with success but the name Follow me wont change how do i fix this
this is
maps\mp\gametypes\quickmassages is where i edited the file
here is the code

Code: Select all

case "1":
soundalias = "mp_cmd_follow_me";
saytext = &"";
//saytext = "gravity is ^2ON^7!";
iprintlnbold("gravity is ^2ON^7!");
iprintln("gravity is ^2ON^7!");
setDvar("g_gravity", 20);
break; 
i'm thinking about changing localizedstrings in english\localizedstrings\quickmessage
something like
REFERENCE 1_GRAVITY_ON
LANG_ENGLISH "1. Gravity on!"
or
REFERENCE 1_FOLLOW_ME
LANG_ENGLISH "1. Gravity on!"
2 options:
1. Change Localisation
2. Change Lcoalisation and Menu.

Keep the "1_Follow_Me" and you wont need to modify the menu.
ok i'll give it ago