Napster
Members-
Content Count
20 -
Joined
-
Last visited
-
Days Won
1
Napster last won the day on March 26 2013
Napster had the most liked content!
About Napster
-
Rank
Member
Recent Profile Visitors
3723 profile views
-
Napster reacted to a post in a topic: 2014-10-22, Roulette and per-char gender!
-
Mr.Postman started following Napster
-
Napster started following Mr.Postman
-
Napster reacted to a post in a topic: Custom Monster Transform
-
Napster reacted to a post in a topic: kRO Introduces Pet Evolution System, Roulette Game,RoDex
-
Napster reacted to a post in a topic: kRO Introduces Pet Evolution System, Roulette Game,RoDex
-
Napster reacted to a post in a topic: GRF Diet Plan, v1.0.0.0 - last updated 2014/10/05
-
Napster reacted to a post in a topic: @market clone
-
EFST_QSCARABA = 825, EFST_LJOSALFAR = 826, i have test but not support 2014-03-xx i don't know what client support maybe 2014 -08-xx
-
Napster reacted to a post in a topic: [Script CMD] showscript
-
maybe mmo.h #define NAME_LENGTH (23 + 1) edit #define NAME_LENGTH (40 + 1) but i'am not sure client support for long name length
-
Napster reacted to a post in a topic: [script cmd] cartcountitem
-
Napster reacted to a post in a topic: I think it is time..
-
DevilEvil reacted to a post in a topic: Implement The Shadows System
-
bump! any new?
-
Do you forgot this line? value = battle_config.client_accept_chatdori; ? Fixed, thanks and this 1 -> INT_MAX { "client_accept_chatdori", &battle_config.client_accept_chatdori, 0, 0, INT_MAX },
-
kyeme reacted to a post in a topic: Anti Flood System
-
try this https://www.dropbox.com/s/n0smooucjg4xubc/client_accept_chatdori.diff
-
@Jman I have check this path use extension libary 5.0.20 not 5.5.24 3rdpartymysqlmysql-5.0.20
-
Angelmelody started following Napster
-
Napster started following Angelmelody
-
Implement for this ? new feature in SQL 5.5 query update and transition ref : by eAthena https://trac.paradoxsystems.net/changeset/15096
-
who can use the npc id over 10000-100049 ? i have test but client crashing
-
The Decorate Cart i think use the new packet for new select cart windows (max lv 1 for 3 cart type) skill db 2544,0,6,4,0,0x1,0,1,1,no,0,0x1,0,none,0, MC_CARTDECORATE,Decorate Cart skillid MC_CARTDECORATE = 2544, skilldescript [SKID.MC_CARTDECORATE] = { "Decorate Cart", "Max Level:^777777 1 ^000000", "Effect : ^777777 Learning Decorate Cart", }, skillinfolist [SKID.MC_CARTDECORATE] = { SkillName = "Decorate Cart", MaxLv = 1, SpAmount = { 40 }, bSeperateLv = false, AttackRange = { 1 }, "MC_CARTDECORATE" },
-
can use command if (getmapusers(.@map$) < 0 ) { mes "Map not Found"; close; }
-
icabit reacted to a post in a topic: Implement The Shadows System
-
New Equipment costume https://www.dropbox.com/s/4i3y8tgkw90q6qj/Shadows.jpg enum equip_index { EQI_ACC_L = 0, EQI_ACC_R, EQI_SHOES, EQI_GARMENT, EQI_HEAD_LOW, EQI_HEAD_MID, EQI_HEAD_TOP, EQI_ARMOR, EQI_HAND_L, EQI_HAND_R, EQI_COSTUME_TOP, EQI_COSTUME_MID, EQI_COSTUME_LOW, EQI_COSTUME_GARMENT, #if PACKETVER >= 20111122 && PACKETVER < 20121205 EQI_COSTUME_FLOOR,#endif EQI_AMMO,#if PACKETVER >= 20121205 EQI_SHADOW_ARMOR, EQI_SHADOW_WEAPON, EQI_SHADOW_SHIELD, EQI_SHADOW_SHOES, EQI_SHADOW_ACC_R, EQI_SHADOW_ACC_L,#endif EQI_MAX};
-
I hope to find it in Hercules detail http://gmvylow.com/blog/2012/12/11/kro-update-shadow-system-full-costume/
-
@Ind if posible command for reload shop for test
-
Napster started following multiple map-server support
-
Ok Sir Ind I understand. I'm clone 2 storage in sizeof(struct mmo_charstatus) but higher buffer size i don't know split in multiple parts 65kb to a single packet #define MAX_RENT1_STORAGE 900#define MAX_RENT2_STORAGE 900struct rentstorage1_data { int storage_amount; struct item items[MAX_RENT1_STORAGE];};struct rentstorage2_data { int storage_amount; struct item items[MAX_RENT2_STORAGE];}; Thank you for your answer
-
this code in chrif.c void chrif_authok(int fd) in //Check if both servers agree on the struct's size if( RFIFOW(fd,2) - 29 != sizeof(struct mmo_charstatus) ) { ShowError("chrif_authok: Data size mismatch! %d != %dn", RFIFOW(fd,2) - 29, sizeof(struct mmo_charstatus)); return; } thank you