Has the ability to issue warnings to users, edit and remove posts from the forum and to move topics to other boards. Upholds the rules of the forum. Moderates Chat Rooms.
MZslayer11's Contact & Social LinksMZslayer11Service_Code_30#2655
Is it possible to edit hint strings for open-able doors. What i basically want to do is change the standard
Code Snippet
Plaintext
Press and Hold F to open door [Cost:1000]
to something like this
Code Snippet
Plaintext
Press and Hold F to unlock the roof [Cost:1000]
or
Code Snippet
Plaintext
Press and hold F to open the Bar [Cost:1000]
I dont want this to be applied to all doors, just one. I want to make many different strings for different doors. Im not sure if this is possible but if it is could somebody please tell me how? Thanks in advance!
You can change the hintstring for a specific price, so if you want the doors to be 1000 you can change that and it will say the same thing on all the doors for 1000 not sure if its possible to have different strings but same price for doors. you change it in raw/english/localizestrings/zombie.str at
Code Snippet
Plaintext
REFERENCE BUTTON_BUY_OPEN_DOOR_1000 LANG_ENGLISH "Press & hold &&1 to Open Door [Cost: 1000]"
Change the LANG_ENGLISH line to what you want it to say but leave the "" in
Last Edit: June 19, 2014, 06:06:22 pm by thezombiekilla6
Has the ability to issue warnings to users, edit and remove posts from the forum and to move topics to other boards. Upholds the rules of the forum. Moderates Chat Rooms.
Instead of this ^ , I suggest not using the STR files at all. Just edit _zombiemode_blockers_new.gsc to use whatever the door has set for script_noteworthy as the hint and zombie_cost as the cost. If you need a code example I can post one.
Has the ability to issue warnings to users, edit and remove posts from the forum and to move topics to other boards. Upholds the rules of the forum. Moderates Chat Rooms.
MZslayer11's Contact & Social LinksMZslayer11Service_Code_30#2655
Instead of this ^ , I suggest not using the STR files at all. Just edit _zombiemode_blockers_new.gsc to use whatever the door has set for script_noteworthy as the hint and zombie_cost as the cost. If you need a code example I can post one.
Has the ability to issue warnings to users, edit and remove posts from the forum and to move topics to other boards. Upholds the rules of the forum. Moderates Chat Rooms.
Copy _zombiemode_blockers_new.gsc from raw/maps to your mod's maps folder, then replace the debris_init() function in that _zombiemode_blockers_new.gsc with this:
Has the ability to issue warnings to users, edit and remove posts from the forum and to move topics to other boards. Upholds the rules of the forum. Moderates Chat Rooms.
Is setHintString_fixed(); a valid function? If so, whats the difference between normal and fixed.
Opps sorry, edited. setHintString_fixed() is a little something im working on that might fix the issue of hintstrings failing to update on people's maps.
Has the ability to issue warnings to users, edit and remove posts from the forum and to move topics to other boards. Upholds the rules of the forum. Moderates Chat Rooms.
MZslayer11's Contact & Social LinksMZslayer11Service_Code_30#2655
Copy _zombiemode_blockers_new.gsc from raw/maps to your mod's maps folder, then replace the debris_init() function in that _zombiemode_blockers_new.gsc with this:
Im very confused. Like i said in my original post, i want to make many Hintstrings for different doors while still keeping the default hintstring for some doors. Would that be possible with the code you posted? What special kvps would i need to enter for this to work? As you can clearly see, i dont know anything about scripting so i dont know if im even making sense now!
Has the ability to issue warnings to users, edit and remove posts from the forum and to move topics to other boards. Upholds the rules of the forum. Moderates Chat Rooms.