HULD suggestions

Oxxy

New member
Messages
142
Points
0
Location
Estonia, Tallinn
Emulator
HULD stands for "Hercules Ultimate Localization Design".

So, suggestions are:

  1. Add option to choose if u need to create translations for standart NPCs or not?
  2. Create command "@reloadlangdb", which will reset the db/translations.conf? So we don't have to restart server
  3. Ability to translate NPCs display name
  4. Make system messages and console messages be translatable?
  5. Make direct assign of variables work

.@md_name$ = _("Endless Tower"); //---> doesn't work set .@md_name$, _("Endless Tower");  //---> tested, work fine for me

and few questions:

  1. is it possible to translate waitingrooms? like will they show translated things, or it isn't? if no - make them translatable
  2. is it possible to translate dispbottoms? if no - make them translatable
  3. is it possible to translate message script command(not mes, but message)? if no - make them translatable

 
Last edited by a moderator:
goddamit, I should finally start to use "Search" button.

Btw, I know the possible solution to the problem of dispbottom and stuff. We can make @lang assign a PLAYER_LANG variable to some value. Like if you choose @lang English, then the variable PLAYER_LANG will be set to 1. if, for example, you choose @lang Russian, then the value will be set to 2. And then we can manage scripts with this variables. tho this will increase lines in script sometimes by significant amount.

Code:
if(PLAYER_LANG == 1) { dispbottom "Testing variable"; end; }if(PLAYER_LANG == 2) { dispbottom "Проверка переменной"; end; }
that would be pretty ok, if Ind doesnt want to waste really much time.

 
Last edited by a moderator:
that is not really necessary, I guess they only need time in order to make everything translatable
default_tongue.png
but seems like they are on vocation so all we can do is wait

 
Back
Top