You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
AM2R-Item-Roulette/scripts/scrConsoleHistoryUpdate.gml

14 lines
270 B

///@description scrConsoleCommandUpdate()
///@param _string
var _string = argument[0];
if(string_length(_string) > 0){
if(ds_exists(ConsoleHistory, ds_type_list)){
ds_list_add(ConsoleHistory, _string);
ConsoleViewLine = ds_list_size(ConsoleHistory);
}
}