Jump to content

Rynbef

Forum Moderator
  • Posts

    898
  • Joined

  • Last visited

  • Days Won

    21

Everything posted by Rynbef

  1. If u use the 2013-05-15Ragexe 2013-07-03Ragexe 2013-08-07Ragexe You will need to replace your msgstringtable with the correct one dependent on client date. Rynbef~
  2. U will need to replace your ItemIno.lub or ItemInfo.lua with an english stranlated one. To change the korean names to english. Or if u use an old client you will need to replace the idnum2itemdisplaynametable.txt and so on. I use <langtype>10</langtype> for my server(German). Rynbef~
  3. Please paste your clif.c at http://pastebin.com/ otherwise I cant resolve your problem.
  4. Backup your clif.c and try to replace the function "void clif_cashshop_ack(struct map_session_data* sd, struct npc_data* nd, int error) " with: void clif_cashshop_ack(struct map_session_data* sd, int error) { int fd, cost[2] = { 0, 0 }; struct npc_data *nd; nullpo_retv(sd); fd = sd->fd; nd = map_id2nd(sd->npc_shopid); npc_shop_currency_type(sd, nd, cost, false); WFIFOHEAD(fd, packet_len(0x289)); WFIFOW(fd,0) = 0x289; WFIFOL(fd,2) = cost[0]; #if PACKETVER < 20070711 WFIFOW(fd,6) = TOW(error); #else WFIFOL(fd,6) = cost[1]; WFIFOW(fd,10) = TOW(error); #endif WFIFOSET(fd, packet_len(0x289)); } The function have now only 2 arguments. Rynbef~
  5. Hey, Schau mal, ob du den diff hast. Rynbef~
  6. Rynbef's SQL Warper View File Description This warper is a fully sql based warper. All coordinates, categories or maps can be modified. This script contains the following features: - Fully SQL based - Realtime coordinates, categories or map changes without scriptreload - Easy to add new maps or create own categories - Restricted maps or sub-maps by renewal/pre-renewal - Allow map access by min. group ID - Anti-Bypassable last warp function - Simple enable or disable categories How to install 1#: Insert the .sql file to your database. 2#: Copy the script to your script folder and change the settings on the bottom of the file. 3#: Insert the file to the scripts_custom.conf 4#: Reload or restart server. Have fun! Other If you have any question about this script or else please contact Rynbef at the rAthena Board. The duplicates and coordinates are based on Euphy's Warper. The .zip file includes a database structure file to explain how it works. !!! --- Dont name this script as your. Dont remove the copyright header. Dont sell this script. --- !!! Submitter Rynbef Submitted 10/10/16 Category Utilities It works on future versions but there will be no updates more. If anyone will update it you're free to re-upload the update and don't forget to credit me ?
  7. Description This warper is a fully sql based warper. All coordinates, categories or maps can be modified. This script contains the following features: - Fully SQL based - Realtime coordinates, categories or map changes without scriptreload - Easy to add new maps or create own categories - Restricted maps or sub-maps by renewal/pre-renewal - Allow map access by min. group ID - Anti-Bypassable last warp function - Simple enable or disable categories - Easy to choose between Renewal or Pre-Renewal How to install 1#: Insert the content of the .sql file into your database or just import it. 2#: Copy the script to your script folder and change the settings on the bottom of the file. 3#: Insert the file to the scripts_custom.conf 4#: Reload or restart server. Have fun! Preview Other If you have any question about this script feel free to leave a message. The duplicates and coordinates are based on Euphy's Warper. The .zip file includes a database structure file to explain how it works. !!! --- Dont name this script as your. Dont remove the copyright header. Dont sell this script. --- !!! Rynbef's SQL Warper [email protected]
  8. Version 1.0

    239 downloads

    Description This warper is a fully sql based warper. All coordinates, categories or maps can be modified. This script contains the following features: - Fully SQL based - Realtime coordinates, categories or map changes without scriptreload - Easy to add new maps or create own categories - Restricted maps or sub-maps by renewal/pre-renewal - Allow map access by min. group ID - Anti-Bypassable last warp function - Simple enable or disable categories How to install 1#: Insert the .sql file to your database. 2#: Copy the script to your script folder and change the settings on the bottom of the file. 3#: Insert the file to the scripts_custom.conf 4#: Reload or restart server. Have fun! Other If you have any question about this script or else please contact Rynbef at the rAthena Board. The duplicates and coordinates are based on Euphy's Warper. The .zip file includes a database structure file to explain how it works. !!! --- Dont name this script as your. Dont remove the copyright header. Dont sell this script. --- !!!
    Free
  9. Just Insert resetlvl(1); to the Jobchange funcion. Rynbef~
  10. I dont know about all alternatives but I know how a realm works. Your Login Server is listen on port 6900. Your 1st char server is listen on port 5121 and your 2nd char server on 5122. Both server are connected to the same login server. Your 1st map server is listen on port 6121 and your 2nd map server on 6122. The 1st is connected to char server 5121 and the 2nd to 5122. This method will make 2 server with the same login server. Now you can change your database settings. You are able to have the same login informations for both server but seperate characters, inventory or else. Rynbef~
  11. Show us your item script. Rynbef~
  12. You have uploaded a camera photo and I'm wondering why you dont make a screenshot (Print / Impr). Do you have make this map? Send me the .rsw files of these maps and I'll remove the models for you(Private message). Rynbef~
  13. Rynbef

    Ignore DEF

    Take a look at /doc/item_bonus.txt Rynbef~
  14. I've already solved the problem via Teamviewer. He forgot the "http://". URL='127.0.0.1/notice.html' URL='http://127.0.0.1/notice.html' Rynbef~
  15. bonus bSubEle,Ele_Water,5; Have to be: bonus2 bSubEle,Ele_Water,5; You've the same Problem on other Items with the bSubEle Bonus. Rynbef~
  16. Bonus bSubEle,Ele_Water,3; must be: Bonus2 bSubEle,Ele_Water,3; Because it have two Arguments. Bonus2 bSubEle,<First arg>,<sec arg>; The same at the other bonuses which makes errors. Rynbef~
  17. Your Bonus script is wrong. You use "Bonus" but it is "Bonus2". Rynbef~
  18. Maybe your grf doesnt contain the wav files. (on death Sound). Rynbef~
  19. I see sir. Im currently on mobile only. Use Bonus Script like this: bonus2 bAddEle,Ele_Holy,5; Rynbef~
  20. Increase Damage on Holy Monster will be work. Rynbef~
  21. Im wondering why you dont Upload a Screenshot . The Error means there are missing models. Rynbef~
  22. We need your Thor Config file too. Rynbef~
  23. Change it to atcommand "@die "+strcharinfo(0); And after this line "- script Tesouro -1,{" Add an end; And this NPC is invasible but on a map. quiz_02,0,0,0 script Core_Sortudo -1,{ Change it to: - script Core_Sortudo -1,{ end; Rynbef~
×
×
  • Create New...