W wabbuwabbu New member Messages 20 Points 0 May 1, 2020 #2 I have some problems/questions regarding my @showexp a. Values are displayed as Base: %”PRlu64” (0.00%) Job: %”PRlu64” (31.88%) b. One of the values does not calculate at all. Being Base level 10 and Job level 7. c. Is there a way to always have @showexp activated for all players? Thank you Last edited by a moderator: May 1, 2020
I have some problems/questions regarding my @showexp a. Values are displayed as Base: %”PRlu64” (0.00%) Job: %”PRlu64” (31.88%) b. One of the values does not calculate at all. Being Base level 10 and Job level 7. c. Is there a way to always have @showexp activated for all players? Thank you
H heroji New member Messages 50 Points 0 Github heroji562 May 1, 2020 #3 with @exp is showing it.. so i think with a simple trick you can always show it to players. Code: - script test1 -1,{ OnNPCKillEvent: atcommand "@exp"; }
with @exp is showing it.. so i think with a simple trick you can always show it to players. Code: - script test1 -1,{ OnNPCKillEvent: atcommand "@exp"; }
W wabbuwabbu New member Messages 20 Points 0 May 3, 2020 #4 wabbuwabbu said: a. Values are displayed as Base: %”PRlu64” (0.00%) Job: %”PRlu64” (31.88%) Click to expand... It appears to be a common problem: https://github.com/HerculesWS/Hercules/pull/2647/files This did the work for me: Go to Hercules/conf/messages.conf and modify the following code 889: Experience Gained Base:%"PRIu64" (%.2f%%) Job:%"PRIu64" (%.2f%%) to this: 889: Experience Gained Base:%Iu64 (%.2f%%) Job:%Iu64 (%.2f%%) Last edited by a moderator: May 3, 2020
wabbuwabbu said: a. Values are displayed as Base: %”PRlu64” (0.00%) Job: %”PRlu64” (31.88%) Click to expand... It appears to be a common problem: https://github.com/HerculesWS/Hercules/pull/2647/files This did the work for me: Go to Hercules/conf/messages.conf and modify the following code 889: Experience Gained Base:%"PRIu64" (%.2f%%) Job:%"PRIu64" (%.2f%%) to this: 889: Experience Gained Base:%Iu64 (%.2f%%) Job:%Iu64 (%.2f%%)