1
General / Re: Syntax error [firstletter ()]?
« on: September 16, 2022, 10:41:07 AM »
The error message indicates -> [slice out of range]
which refers to line 163 -> local first_char = rstrip(fe.game_info(Info.Title)).slice(0,1);
Most likely the 'Info.Title' is empty. If this assumption is correct the following is adviced.
Try replacing the complete function firstletter () with:
function firstletter ()
{
local first_char = "#";
if (rstrip(fe.game_info(Info.Title)).len() > 0) {
first_char = rstrip(fe.game_info(Info.Title)).slice(0,1);
}
local expression = regexp("[a-zA-Z]");
if (expression.match(first_char) == false) first_char = "#"
return first_char;
}
The scribble is not tested.
Goodluck.
which refers to line 163 -> local first_char = rstrip(fe.game_info(Info.Title)).slice(0,1);
Most likely the 'Info.Title' is empty. If this assumption is correct the following is adviced.
Try replacing the complete function firstletter () with:
function firstletter ()
{
local first_char = "#";
if (rstrip(fe.game_info(Info.Title)).len() > 0) {
first_char = rstrip(fe.game_info(Info.Title)).slice(0,1);
}
local expression = regexp("[a-zA-Z]");
if (expression.match(first_char) == false) first_char = "#"
return first_char;
}
The scribble is not tested.
Goodluck.