-
Posts
25 -
Joined
Profile Information
-
Gender
Male
Recent Profile Visitors
1,489 profile views
imat1's Achievements
-
Hi! I'm getting disconnected (not always) whenever i'm changing or putting guild emblem. i monitored my map-server and here's what i found out. [warning]: clif_parse: Received packet 0x0153 with expected packet length 1601, but only 1420 bytes remaining, disconnecting session #12. [Info]: Character 'Jack' logged off. Does anyone know how to fix this? I'm using the latest rAthena svn and my client version is 2015-11-04.
-
How to Edit Inventory, Equipment, Etc, Favorites Tab
imat1 replied to kalabasa's question in Client-side Support
I think you can edit this in data/texture/À¯ÀúÀÎÅÍÆäÀ̽º -
Ok. Thanks a lot!
-
Trans 2nd and 3rd job cannot level up skill
imat1 replied to alexander03's question in Database Support
Give us more details. Send us a screenshot of your map-server when you use @skillall with sniper/ranger class. -
Hello Guys. I dont know if im in the right section to ask. Will there be any problems/errors if i want to use iteminfo.lua and skip filling up idnum2itemdesctable, idnum2itemdisplaynametable, idnum2itemresnametable and itemslotcounttable for custom items? Im using the latest rathena svn and my client version is 2015-11-04. Thanks in advance.
-
Circular cell preventing the cast of a certain skill
imat1 replied to imat1's question in Source Requests
Anyone have the better fix for this? -
I don't know if i'm in the right section. Can anyone make me a guild emblem 24x24 of the picture below? Thank you in advance.
-
just replace this: { #KAFRAPOINTS += .point_amt; #acctick = gettimetick(2) + .online_time; dispbottom "Gained " + .point_amt + " " + .point_name$ + ". Total " + #KAFRAPOINTS + " Free Cash."; } to: { #CASHPOINTS += .point_amt; #acctick = gettimetick(2) + .online_time; dispbottom "Gained " + .point_amt + " " + .point_name$ + ". Total " + #CASHPOINTS + " Free Cash."; }
-
- script hourlypoints FAKE_NPC,{ OnInit: announce "[Hourly Points System]: The system have been reloaded, please relog again to get more points.", bc_all; .point_name$ = "Free Cash"; .point_amt = 1; // Normal points gained. .dlimit = 43200; // Stop points if afk greater then in seconds. 600s = 10 minutes .enable = 1; .level = 0; .online_time = 900; // One hour = 3600 seconds bindatcmd "ht", "hourlypoints::OnAtcommand", 0, 100; end; OnPCLoginEvent: if (BaseLevel >= .level) { #idle = 0; @backup_time = 0; if (!#acctick || #acctick > .online_time) #acctick = gettimetick(2) + .online_time; else #acctick += gettimetick(2); while(.enable) { @idle_time = checkidle(); if (checkvending() >= 1 || checkchatting() == 1 || @idle_time >= .dlimit) { #acctick += @idle_time; // Add idle time #idle = 1; dispbottom "The hourly points event haulted because you were vending, chatting, or idle."; dispbottom "Please relog again."; } else { sleep2 1000; @backup_time = [email protected]_left = #acctick - gettimetick(2); if ([email protected]_left <= 0) { #KAFRAPOINTS += .point_amt; #acctick = gettimetick(2) + .online_time; dispbottom "Gained " + .point_amt + " " + .point_name$ + ". Total " + #KAFRAPOINTS + " Free Cash."; } else { [email protected]_left = .online_time - [email protected]_left; [email protected]$ = ""; [email protected] = [email protected]_left / 60; [email protected]_left -= ([email protected] * 60); if ([email protected] > 1) [email protected]$ += [email protected] + " minutes, "; else if ([email protected] > 0) [email protected]$ += [email protected] + " minute, "; if ([email protected]_left > 1 || [email protected]_left == 0) [email protected]$ += [email protected]_left + " seconds"; else if ([email protected]_left == 1) [email protected]$ += [email protected]_left + " second"; if ([email protected] == 15 && [email protected]_left == 0 || [email protected] == 30 && [email protected]_left == 0 || [email protected] == 45 && [email protected]_left == 0) dispbottom "You spend a total of [" + [email protected]$ + "] playing."; } } if (#idle) break; } } end; OnPCLogoutEvent: // BackUP online time if (BaseLevel >= .level) { if (@backup_time) #acctick = @backup_time; } end; OnAtcommand: if (BaseLevel >= .level) { if (#idle) { [email protected]$ = ""; [email protected] = @idle_time / 60; [email protected]_left = @idle_time - ([email protected] * 60); if ([email protected] > 1) [email protected]$ += [email protected] + " minutes, "; else if ([email protected] > 0) [email protected]$ += [email protected] + " minute, "; if ([email protected]_left > 1 || [email protected]_left == 0) [email protected]$ += [email protected]_left + " seconds"; else if ([email protected]_left == 1) [email protected]$ += [email protected]_left + " second"; dispbottom "You been idle for " + [email protected]$ + ". Please relog again."; } else { [email protected]_left = @backup_time; [email protected]$ = ""; [email protected] = [email protected]_left / 60; [email protected]_left -= ([email protected] * 60); if ([email protected] > 1) [email protected]$ += [email protected] + " minutes, "; else if ([email protected] > 0) [email protected]$ += [email protected] + " minute, "; if ([email protected]_left > 1 || [email protected]_left == 0) [email protected]$ += [email protected]_left + " seconds"; else if ([email protected]_left == 1) [email protected]$ += [email protected]_left + " second"; dispbottom "You have [" + [email protected]$ + "] left in able to gain a cash points."; } } end; }
-
Ok.. Thank you sir Stolao.
-
Does anyone here have the Run or Die and LMS event that work on the latest rathena? Can someone share please.
-
i guess enabling this will solve your problem ( i didn't try this though ) go to conf/battle/client.conf find: client_sort_storage: no change to: client_sort_storage: yes Save and exit then use the command @reloadbattleconf
-
Manual deletion in SQL file "login"
-
Thank you Anacondaqq, i'll test it and will mark as solved later.