Jump to content

Haikenz

Members
  • Posts

    309
  • Joined

  • Last visited

  • Days Won

    15

Everything posted by Haikenz

  1. Well, I'm trying to use a very old mod of eAthena's time, a friend of mine managed to convert the mod, but it's giving error to compile it ran out of options, so I came to ask for help from you. I use centos 7 and I already installed curl ( yum install curl and yum install curl-devel ) obj/intif.o: In function `intif_twitrag(char const*)': /root/emulador/src/map/intif.cpp:3847: undefined reference to `curl_global_init' /root/emulador/src/map/intif.cpp:3850: undefined reference to `curl_formadd' /root/emulador/src/map/intif.cpp:3856: undefined reference to `curl_easy_init' /root/emulador/src/map/intif.cpp:3858: undefined reference to `curl_slist_append' /root/emulador/src/map/intif.cpp:3861: undefined reference to `curl_easy_setopt' /root/emulador/src/map/intif.cpp:3862: undefined reference to `curl_easy_setopt' /root/emulador/src/map/intif.cpp:3864: undefined reference to `curl_easy_setopt' /root/emulador/src/map/intif.cpp:3865: undefined reference to `curl_easy_setopt' /root/emulador/src/map/intif.cpp:3866: undefined reference to `curl_easy_perform' /root/emulador/src/map/intif.cpp:3869: undefined reference to `curl_easy_cleanup' /root/emulador/src/map/intif.cpp:3870: undefined reference to `curl_formfree' /root/emulador/src/map/intif.cpp:3871: undefined reference to `curl_slist_free_all' collect2: error: ld returned 1 exit status ~ Solved with this topic: ./configure --with-lcurl
  2. @Hnomkeng use this https://github.com/Asheraf/Translation
  3. When you use @ autotrade/@ at it read the message from line 1817 of msgstringtable, the same way when you shut down/restart the server it also reads the same @at message. so I'd like to know how to separate, create one for @at.
  4. Yes, work for me PHP 7.2.6
  5. Haikenz

    Font Name

    Does anyone know the name of this font used in this button and image?
  6. OnNPCKillEvent: if ( .Option&8 && getgmlevel() >= .gm ) end; // If gm = event wont happen if ( getmonsterinfo( killedrid, MOB_MVPEXP )) { for (.@a = 0; .@a < getarraysize(.t_maps$); ++.@a) { if ( strcharinfo(3) == .t_maps$[.@a]) { if ( !getcharid(1) ) { if (rand(100) < .chance) getitem .s_rwd[0], .s_rwd[1]; if(.Option&16) { #MVP_LADDER_POINTS = #MVP_LADDER_POINTS + .point; already have this ... to using the latest version of your script
  7. @pajodex If you summon monsters on other maps that are not set in the mvp area, the points are counted as well. Example: I invoked Garm from xmas_fild01 on prt_fild00 and gave points.
  8. @pajodex 1 - You must disable the merchant discount ability in the store. 2 - In the mail the % is not giving ENTER
  9. @pajodex Add support to use item rather than points in the store. ex: I use a custom item that drops from all mvps, and with that item you can buy things in the store. problem with ranking
  10. I use the updated kRO and it did not ... but I managed to solve it, I downloaded the patch from a server here and extract the grf from them and found ~Solved!
  11. Does anyone have this model and image?
  12. @pajodex It would be much better to add a protection on the maps listed so as not to use Bloody Branch, so as not to interfere with ranking.
  13. View File Cash Shop Manager NPC that allows you to manage your store Cash shop can Add, Edit and Remove items. Languages: English (US), Português (BR) Warning: To use the NPC it is recommended that you use the "item_cash_db.sql" in your folder "sql-files". DROP TABLE IF EXISTS `item_cash_db`; CREATE TABLE `item_cash_db` ( `tab` smallint(6) NOT NULL, `item_id` smallint(5) unsigned NOT NULL, `price` mediumint(10) unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`tab`,`item_id`) ) ENGINE=MyISAM; Preview: Q: I added an item and it didn't show up in the store. Q: I'm trying to add an item and it's giving error. Q: I added the item in the "Sale" and still did not appear. By buying this script, you agree to these terms: You are not allowed to redistribute this script in any way, shape, or form. Chargeback scams are not tolerated and will get you punished on rAthena. I still retain all rights to this script. Terms above may be changed or adjusted without prior notification. Copyright © - Haikenz 2011-2018 - All Rights Reserved Submitter Haikenz Submitted 03/22/2018 Category Utilities Video https://www.youtube.com/watch?v=ocigrUMImZg Content Author Haikenz  
  14. Add in rA too Link https://github.com/HerculesWS/Hercules/pull/1998
  15. Version 1.0.0

    40 downloads

    NPC that allows you to manage your store Cash shop can Add, Edit and Remove items. Languages: English (US), Português (BR) Warning: To use the NPC it is recommended that you use the "item_cash_db.sql" in your folder "sql-files". DROP TABLE IF EXISTS `item_cash_db`; CREATE TABLE `item_cash_db` ( `tab` smallint(6) NOT NULL, `item_id` smallint(5) unsigned NOT NULL, `price` mediumint(10) unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`tab`,`item_id`) ) ENGINE=MyISAM; Preview: Q: I added an item and it didn't show up in the store. Q: I'm trying to add an item and it's giving error. Q: I added the item in the "Sale" and still did not appear. By buying this script, you agree to these terms: You are not allowed to redistribute this script in any way, shape, or form. Chargeback scams are not tolerated and will get you punished on rAthena. I still retain all rights to this script. Terms above may be changed or adjusted without prior notification. Copyright © - Haikenz 2011-2018 - All Rights Reserved
    3.00 USD
  16. Errors fixed while compiling: Script.cpp clif_showvendingboard( &nd->bl, buf, 0 ); Change to: clif_showvendingboard( &nd->bl, (const char*)buf, 0 ); Vendings.cpp if( nd_sd->subtype == CASHSHOP ) //Act as if it was clicked npc_click( sd, nd_sd ); if( nd_sd->subtype == SHOP ) //Open Buy-Windows directly npc_buysellsel( sd, nd_sd->bl.id, 0 ); if( nd_sd->subtype == SCRIPT ) { //Trigger OnVendingClick event Change to: if( nd_sd->subtype == NPCTYPE_CASHSHOP ) //Act as if it was clicked npc_click( sd, nd_sd ); if( nd_sd->subtype == NPCTYPE_SHOP ) //Open Buy-Windows directly npc_buysellsel( sd, nd_sd->bl.id, 0 ); if( nd_sd->subtype == NPCTYPE_SCRIPT ) { //Trigger OnVendingClick event
  17. Already have the packets from March to rA https://github.com/rathena/rathena/pull/2975
  18. Can anyone convert this to work in rA? https://github.com/HerculesWS/Hercules/pull/1990
  19. @ZelosAvalon add this in: src/map/clif_packetdb.hpp // 2018-02-07bRagexeRE, 2018-02-07bRagexe #if PACKETVER >= 20180207 packet(0x0a9c,2); packet(0x0a97,8); packet(0x0ace,4); #endif
  20. I was trying to do something like, VIP Lv. 1 = 5% discount at Cash Shop VIP Lv. 2 = 10% discount at Cash Shop VIP Lv. 3 = 20% discount at Cash Shop VIP Lv. 4 = 35% discount at Cash Shop VIP Lv. 5 = 50% discount at Cash Shop Is it possible to do this in source using discount at the Cash Shop?
  21. @L1nkZ Is it possible to have the "announce of the NPC" advertised in the discord, Instead of chat??
×
×
  • Create New...