Jump to content

Cyrix

Members
  • Posts

    150
  • Joined

  • Last visited

  • Days Won

    1

Everything posted by Cyrix

  1. File Name: Jobs Sprites - gif (transparent) File Submitter: Cyrix File Submitted: 07 Mar 2013 File Category: Web Resources Content Author: GRAVITY Co. Ltd, 256 images: Baby - 1rd - 2rd - 3rd - Gryphon - Dragon - Mado - Wedding - Oboro - Kagerou Transparent GIF - Static. Click here to download this file
  2. Download New Geo IP database (GeoIP.dat) and replace in trunk\db???
  3. in renewal.h find: #define RENEWAL_CAST modify: //#define RENEWAL_CAST
  4. in db/skill_require_db find: 483,0,0,40,0,0,0,99,0,0,none,0,715,1,717,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 //HW_GANBANTEIN## modify: 483,0,0,40,0,0,0,99,0,0,none,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 //HW_GANBANTEIN##
  5. Fix dont work in 16900+ rev.
  6. 1º - Import files to DB - \schemas\logindb cp_v4p_sites cp_v4p_votelogs cp_v4p_voters 2º - Copy Folders vote4points\themes\default\voteforpoints --->>>> to your gamecp theme folder (e.g. flux\themes\default\voteforpoints) vote4points\modules\voteforpoints --->>>> to your gamecp module folder (e.g. flux\modules\voteforpoints) 3º - Login as ADM and add your sites. I have TeamViewer installed.... if u need PM...
  7. Sprites: 256 images: Baby - 1rd - 2rd - 3rd - Gryphon - Dragon - Mado - Wedding - Oboro - Kagerou Transparent GIF http://rathena.org/board/files/file/2841-jobs-sprites-gif-transparent/
  8. 626 downloads

    256 images: Baby - 1rd - 2rd - 3rd - Gryphon - Dragon - Mado - Wedding - Oboro - Kagerou Transparent GIF - Static.
    Free
  9. 'JobImageNameFormat' => '%d_%s.gif', // The filename format for job images (defaults to {jobid}_{gender}.gif where {gender} is either M or F).
  10. AGI LUK Weight affects the success chance --------------------------------------------------------------------------------------- //((rand(myDEX / 12, myDEX / 4) + myJobLevel + 10 * skLevel) + myLevel / 10) - (targetLevel / 10 + targetLUK / 10 + (targetMaxWeight - targetWeight) / 1000 + rand(targetAGI / 6, targetAGI / 3)
  11. This works fine: http://rathena.org/board/topic/60255-fluxcp-renewal-finally-native-rathena-support/
  12. I'll rename all images with the correct name... 4060_M 4060_F
  13. in game ------> Shop Name = My Shop Name mysql db -----> Shop Name = 285654856 (sd->message) Correct: (but dont work - sd->message)
  14. I Have... all images... all classes.. ( ~ 256 images) i try apply patch again... hahaha.......... now works fine *-*
  15. I apply all patches, and dont show image...
  16. i need help to find the correct funcion to save shop name in db. sd->vending.amount = amount; // item amount sd->status.cart[index].nameid // item name sd->vending.value / item value and to shop name? sd->vending.title = title; ????????? sd->vending.shop_title = shop_title; ????????? thanks I'm using sd->message Shop Name = asdasdasasd db save this -> 284825544
  17. How to get coordinates and map name? Ex. payon (172, 219) And this line dont work... can u help again.
  18. works fine (clif.c) but when I type @at, the rows are deleted. how to delete only when I relog. --------------------------------------------------------------------------------------------------------------- if (sd->state.autotrade) { //Disassociate character from the socket connection. session[fd]->session_data = NULL; sd->fd = 0; ShowInfo("Character '"CL_WHITE"%s"CL_RESET"' logged off (using @autotrade).\n", sd->status.name); if (SQL_ERROR == Sql_Query(mmysql_handle, "DELETE FROM `xxxx` WHERE `char_id`='%d'", sd->status.char_id)) Sql_ShowDebug(mmysql_handle); } else if (sd->state.active) { // Player logout display [Valaris] ShowInfo("Character '"CL_WHITE"%s"CL_RESET"' logged off.\n", sd->status.name); clif_quitsave(fd, sd); } else { //Unusual logout (during log on/off/map-changer procedure) ShowInfo("Player AID:%d/CID:%d logged off.\n", sd->status.account_id, sd->status.char_id); map_quit(sd); } } else { ShowInfo("Closed connection from '"CL_WHITE"%s"CL_RESET"'.\n", ip2str(session[fd]->client_addr, NULL)); } do_close(fd); return 0; }
  19. Only in auto trade dont delete lines.... --------------------------------------------------------------------- void vending_closevending(struct map_session_data* sd) { nullpo_retv(sd); if( sd->state.vending ) { sd->state.vending = false; clif_closevendingboard(&sd->bl, 0); Sql_Query(mmysql_handle, "DELETE FROM `xxxx` WHERE `char_id`='%d'", sd->status.char_id); } } ---------------------------------------------------------------- How to get coordinates and map name? Ex. payon (172, 219)
  20. I use @at, but, when relog (show msg server still recognizes your last login) . and dont remove lines... [info]: Character 'Hawk' logged off (using @autotrade).
  21. Thx, works fine... but in @at?
×
×
  • Create New...