[Help Thread] Please post your questions here.

12/15/2021 02:20 ThunderNikk#8296
Looks like the copyrights page...

There is an XML file that directs the client what and how to read the copyrights page. make sure you either follow the same name references in the XML file or edit the XML file

copyrights_page(ascii).xml...

HTML Code:
<objects>	
	<image name="copyright_image" file="copyright_image.jpg"/>
	<image name="black" file="black.jpg"/>
</objects>

<animation object="black">
	<position sx="0" sy="0" stime="0" ex="0" ey="0" etime="170"/>
        <visibility sv="1" stime="0" ev="1" etime="170"/>
	</animation>
<animation object="copyright_image">
	<position sx="0" sy="0" stime="0" ex="0" ey="0" etime="170"/>
	<visibility sv="0" stime="0" ev="1" etime="37"/>
	<visibility sv="1" stime="37" ev="1" etime="140"/>
	<visibility sv="1" stime="140" ev="0" etime="170"/>
</animation>
Yours may not have the ascii in the name like mine
12/15/2021 03:10 thund22222#8297
Quote:
Originally Posted by ThunderNikk View Post
Looks like the copyrights page...

There is an XML file that directs the client what and how to read the copyrights page. make sure you either follow the same name references in the XML file or edit the XML file

copyrights_page(ascii).xml...

HTML Code:
<objects>	
	<image name="copyright_image" file="copyright_image.jpg"/>
	<image name="black" file="black.jpg"/>
</objects>

<animation object="black">
	<position sx="0" sy="0" stime="0" ex="0" ey="0" etime="170"/>
        <visibility sv="1" stime="0" ev="1" etime="170"/>
	</animation>
<animation object="copyright_image">
	<position sx="0" sy="0" stime="0" ex="0" ey="0" etime="170"/>
	<visibility sv="0" stime="0" ev="1" etime="37"/>
	<visibility sv="1" stime="37" ev="1" etime="140"/>
	<visibility sv="1" stime="140" ev="0" etime="170"/>
</animation>
Yours may not have the ascii in the name like mine
After I try so many times ( 5 days I think :) ), The issue with images size because I used OpenRZ client, So thanks so much

But still I have the same issue with buff icons :(
12/15/2021 03:29 ThunderNikk#8298
Im not sure on the buff icons.

You have all the different size images listed in the spr files?
12/15/2021 04:57 thund22222#8299
Quote:
Originally Posted by ThunderNikk View Post
Im not sure on the buff icons.

You have all the different size images listed in the spr files?
Yes, TBH I think the issue from my Sframe because when I replaced it (as a test), it worked fine, but I can't use another Sframe because many issues show up (it's not compatible).

I fixed, this code to help anyone have the same issue just do change in SUIStateHEffectWnd.cpp

Code:
MoveRT.top = FirstRT.top + ( (i/12) * c_nIconHeight );
12/30/2021 18:15 Dai#8300
[Only registered and activated users can see links. Click Here To Register...]

I'm getting this error when I click on the server (after login in)
I tried different client files but I'm not using I'm using the correct one, I installed 9.5.2 Official Files + 9.6.2 Source Based files.
If you have an idea of what I did wrong I'll be so thankful.
I'll update this message if I find the answer.
Dai#5423

edit1: I'm also wondering, how those 9.7 servers got the files? are they private or smth?
ty !
12/31/2021 02:27 ThunderNikk#8301
See if this line is in your gameserver opt

N game.ignore_client_binary:1
12/31/2021 18:09 Sandro1029#8302
Quote:
Originally Posted by Dai View Post
I'm also wondering, how those 9.7 servers got the files? are they private or smth?
ty !
I guess there is no 9.7 GS, but source files are released, so some guys are skilled enough to upgrade by themselves. As well it's not so hard to add some features to 9.5.2 server like new mobs since you easy can get them from rdb files. You just need to use newest sframe
01/11/2022 15:06 djbay666#8303
Hello. I want to add a command (to npc job) (full the skills) but it doesn't increase the level..help please..thanks
01/11/2022 15:38 CHlNAMAN#8304
Quote:
Originally Posted by djbay666 View Post
Hello. I want to add a command (to npc job) (full the skills) but it doesn't increase the level..help please..thanks
Perhaps show us the LUA code you have used so we could advise better..
01/12/2022 01:16 djbay666#8305
I want to write a new code (learn all skill) when I use it, my level becomes 300. I don't want the level to rise. just get jlv and skill's full
01/12/2022 20:10 CHlNAMAN#8306
Quote:
Originally Posted by djbay666 View Post
I want to write a new code (learn all skill) when I use it, my level becomes 300. I don't want the level to rise. just get jlv and skill's full
Open up your mouth as the chuu-chuu spoon-feeding train is inbound.
Code:
function iAmStupidAndLackTheEffort()
     local lv = gv('lv')
     learn_all_skill(gv('name'))
     sv('lv', lv-1)
end
01/12/2022 21:16 Nove240#8307
Quote:
Originally Posted by djbay666 View Post
I want to write a new code (learn all skill) when I use it, my level becomes 300. I don't want the level to rise. just get jlv and skill's full
If u use source code, you can make your own function :)
01/14/2022 15:59 xblack1995#8308
Hi All,
how to start client 9.6+, I am only trying to run the client from launcher.bat file
01/15/2022 22:41 Darksritu123#8309
Hey all,
maybe here can someone help me. I'm actually using 9.5.2 files for my server and looking for an launch argument/cmdlauncher.exe which can handle gameguard off without using the CN as Country. Since i want to use a multilanguage launcher i actually only can patch string instead of string_de and string_en. Someone have an idea what i can do?
01/24/2022 18:59 harmbasi#8310
Hi everyone,

I want to have the mobs be able to drop 'points' in some format that are used for the cash shop items. If that is too much work, how can I add points every hour?

Edit: also how do I remove the jlvl being half of level limit?

Thanks,