get_unique_id ERROR

View attachment 7887Hello, I am implementing this to use the constellation tower instance, but I get error saying View attachment 7888 unique_id function... can someone help?
Is this rAthena script based ?

Try this :

Code:
--- functionmain.txt (old)
+++ functionmain.txt (fixed)

@@ function	script	concurrent_uid	{
-		.@uid = get_unique_id('');
+		.@uid = get_unique_id();
@@ function	script	concurrent_uid_map	{
-		.@uid = get_unique_id('');
+		.@uid = get_unique_id();
@@ function	script	concurrent_uid_registration	{
-		.@uid = get_unique_id('');
+		.@uid = get_unique_id();
Just open your functionmain.txt in Notepad++, search for get_unique_id('' and replace with get_unique_id().
That’s the only fix needed for Hercules.

 
Last edited by a moderator:
Back
Top