Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 12/27/13 in all areas

  1. You could try websites like Turbosquid.com and Archive3D.net, otherwise just google with keywords like "lowpoly 3ds tree". Should do the trick.
    2 points
  2. SOLVED! Hi rathenians anyone knows how to fix this? Im using the latest SVN. Help with costume system diff. Im having errors. offline\svn\src\map\atcommand.c(1172): error C2223: left of '->equip' must point to struct/union offline\svn\src\map\atcommand.c(1173): error C2223: left of '->equip' must point to struct/union offline\svn\src\map\atcommand.c(1174): error C2223: left of '->equip' must point to struct/union offline\svn\src\map\atcommand.c(1175): error C2223: left of '->equip' must point to struct/union offline\svn\src\map\atcommand.c(1176): error C2223: left of '->equip' must point to struct/union offline\svn\src\map\atcommand.c(1177): error C2223: left of '->equip' must point to struct/union if( !strcmpi(command+1,"costumeitem") ) { if( !battle_config.reserved_costume_id ) { clif_displaymessage(fd, "Costume convertion is disable. Set a value for reserved_cosutme_id on your battle.conf file."); return -1; } if( !(item_data->equip&EQP_HEAD_LOW) && !(item_data->equip&EQP_HEAD_MID) && !(item_data->equip&EQP_HEAD_TOP) && !(item_data->equip&EQP_COSTUME_HEAD_LOW) && !(item_data->equip&EQP_COSTUME_HEAD_MID) && !(item_data->equip&EQP_COSTUME_HEAD_TOP) ) { clif_displaymessage(fd, "You cannot costume this item. Costume only work for headgears."); return -1; } costume = 1; } Bump solved it my self, this is the fix, actually idk what im doing but magically i fix the source without having problem, wild guess sure do work sometimes. C2223: left of '->equip' must point to struct/union I get this error from. itemlist = strtok(item_name, ":"); while (itemlist != NULL && j<10) { if ((item_data[j] = itemdb_searchname(itemlist)) == NULL && (item_data[j] = itemdb_exists(atoi(itemlist))) == NULL){ clif_displaymessage(fd, msg_txt(sd,19)); // Invalid item ID or name. return -1; } itemlist = strtok(NULL, ":"); //next itemline j++; } The old format of this is: if ((item_data = itemdb_searchname(item_name)) == NULL && (item_data = itemdb_exists(atoi(item_name))) == NULL) { clif_displaymessage(fd, msg_txt(sd,19)); // Invalid item ID or name. return -1; } Manage to fix the Error by changing these: if( !(item_data->equip&EQP_HEAD_LOW) && !(item_data->equip&EQP_HEAD_MID) && !(item_data->equip&EQP_HEAD_TOP) && !(item_data->equip&EQP_COSTUME_HEAD_LOW) && !(item_data->equip&EQP_COSTUME_HEAD_MID) && !(item_data->equip&EQP_COSTUME_HEAD_TOP) ) to these: if( !(item_data[j]->equip&EQP_HEAD_LOW) && !(item_data[j]->equip&EQP_HEAD_MID) && !(item_data[j]->equip&EQP_HEAD_TOP) && !(item_data[j]->equip&EQP_COSTUME_HEAD_LOW) && !(item_data[j]->equip&EQP_COSTUME_HEAD_MID) && !(item_data[j]->equip&EQP_COSTUME_HEAD_TOP) ) Now if someone want to use costume system in the latest svn like am using([r17516]). This is the fix..
    1 point
  3. PS: I'm the author of the script http://rathena.org/board/topic/72376-mvp-summon-script/?p=146696 anyways, what you are requesting is probably going to need source modification ... introducing a new mapflag 06guild_01 mapflag droprate 200increase the item drop rate by 100% increase do you know how to apply patch and recompile ? because sometimes I waste my time created the patch and some members doesn't want to use it, they don't want to recompile <.<
    1 point
  4. Thanks I'll keep that in mind.
    1 point
  5. it's already fixed in this commit . https://github.com/rathena/rathena/commit/5c7e1fa683a50ecee9462a62b9e68bbe594a7546 SlashGeeGee
    1 point
  6. WFIFO stuff ain't really hard to get it. Most of it is define in doc/packet_struct_notation.txt but in short you'll have WFIFOHEAD(file descriptor, xsize); //reserve/allocate xsize on the socket WFIFOx(file descriptor,offset) = y; //assign the file descriptor at offset position the value of y, (x represent the data len W=short, L=long, B=char, Q=64b) WFIFOSET(file descriptor xlen); //sent xlen bite to file descriptor y = RFIFOx(file descriptor,offset); //assign y the value of file descriptor at offset position, (x represent the data len W=short, L=long, B=char, Q=64b) about the storelist openup too frequently yeah I guess the only real fix I could done for this would be to attach like a tick timer and prevent open it more then twice a second, wich should be plently enough.
    1 point
  7. I forgot addtimer need the timer in millisecs addtimer 3600000, strnpcinfo(3) + "::Onijnuionion";// 1h
    1 point
  8. Love all your works, but not this one. Why is the ground unlited? And this blue/pink light on the buildings, just ugly It looks more like a psycodelic horror place
    1 point
×
×
  • Create New...