Jump to content

WhiteEagle

Members
  • Posts

    480
  • Joined

  • Last visited

  • Days Won

    5

Everything posted by WhiteEagle

  1. I don't know if anything has changed, but pet support skills are not working at the moment.
  2. I think the easiest way is to create 2 different exe, each calling a different iteminfo.
  3. I have the problem that the web-server files are not created. I do not get any error messages. I am using Debian 9. Tested it with Debian 10 too. Same result. Same files on Windows (PC) works perfect. Can anyone help me to make it works for me on Debian 9? Wanna use Emblems ? ./configure --enable-web-service Message: configure: output name = login-server, char-server, map-server configure: creating ./config.status config.status: creating Makefile config.status: creating src/common/Makefile config.status: creating 3rdparty/libconfig/Makefile config.status: creating 3rdparty/yaml-cpp/Makefile config.status: creating 3rdparty/httplib/Makefile config.status: creating src/char/Makefile config.status: creating src/login/Makefile config.status: creating src/map/Makefile config.status: creating src/tool/Makefile config.status: creating src/web/Makefile Make server- Last message. No web-server file is created. CXX vending.cpp LD map-server
  4. Because then it is only set for the individual player. If you are in a party, it is not counted for the other party members and if you set it for the party, everyone gets the full EXP, no matter how high the level difference of the individual party members is. So many checks need to be built in to make it work as it should. With setunitdata, every time the Monster of the Day changes, you could just change the EXP and be done. For instances, you could determine the exp for each individual MvP, e.g. how long a player needs to get to the MvP. The faster the player arrives, the more exp the MvP gives and and and
  5. Is someone kind enough to give me the code to add UMOB_BASEEXP and UMOB_JOBEXP to getunitdata/setunitdata. I would need these for events like "Monster of the Day", where the exp for individual monsters are raised. Would be awesome
  6. Can anyone upload the model.pth that works for ragnarok stuff? Would be awesome.
  7. Hi Akkarin, I have installed your theme and the Youtube window is not displayed. I have also tested it with other youtube_codes, nothing.. Am I missing something? The other question is, where is the event sidebar displayed or how do I display it? // Events Sidebar 'events' => array( 'Race to 99', 'Screenshot Contest' ), Thanks ~
  8. I am interested too. Just now where to find the new one...
  9. The Announce comes every time something is refined to +7 or higher. That means also +8, +9,+10.
  10. Just as an idea, how about adding a filter? Lv.1 and 2 weapons would also trigger the announce and Lv.1 is safe till +7. Just change this: if (getequiprefinerycnt(.@part) >= 7) announce strcharinfo(0)+" has refined "+getequipname(.@part)+" to +"+getequiprefinerycnt(.@part)+"!",0; To this: if (getequiprefinerycnt(.@part) >= 7) { if (.@part == EQI_GARMENT || .@part == EQI_HEAD_TOP || .@part == EQI_SHOES || .@part == EQI_ARMOR) { announce strcharinfo(0)+" has refined ["+getequipname(.@part)+"] to +"+getequiprefinerycnt(.@part)+"!",0; } if (getequipweaponlv(.@part) >= 3 ) { announce strcharinfo(0)+" has refined the weapon ["+getequipname(.@part)+"] to +"+getequiprefinerycnt(.@part)+"!",0; } }
  11. Love it. Thanks again for your sharing. Ragnarok in general has far too few different shield looks.
  12. In hercules, there is a script command that puts items that are looted directly into the FAV inventory. *setfavoriteitemidx(<idx>, <flag>) This function will set an item in inventory as favorite or not. If its favorite item, it will be moved to favorite tab, else move out from favorite tab. Note: Cant change favorite flag of an equipped item. Valid Parameters: <idx> - inventory index, refer *getinventorylist() <flag> - true/false (true = favorite item, false = otherwise) --------------------------------------- *autofavoriteitem(<item_id>, <flag>) This function will auto set an item as favorite when <item_id> is obtained. If its favorite item, it will be auto moved to favorite tab, else move out from favorite tab. This setting affect not only attached player, but also everyone player globally. Valid Parameters: <item_id> - item ID <flag> - true/false (true = favorite item, false = otherwise) Does anyone know a similar funtion in rAthena or can create this for rAthena? That would be really great and practical. Currently I have to do this in pc.cpp for each individual item. ( Marked in the field with /////) if (i >= MAX_INVENTORY) { i = pc_search_inventory(sd,0); if( i < 0 ) return ADDITEM_OVERITEM; memcpy(&sd->inventory.u.items_inventory[i], item, sizeof(sd->inventory.u.items_inventory[0])); // clear equip and favorite fields first, just in case if( item->equip ) sd->inventory.u.items_inventory[i].equip = 0; if( item->favorite ) sd->inventory.u.items_inventory[i].favorite = 0; if( item->equipSwitch ) sd->inventory.u.items_inventory[i].equipSwitch = 0; sd->inventory.u.items_inventory[i].amount = amount; sd->inventory_data[i] = id; sd->last_addeditem_index = i; if (!itemdb_isstackable2(id) || id->flag.guid) sd->inventory.u.items_inventory[i].unique_id = item->unique_id ? item->unique_id : pc_generate_unique_id(sd); ////////////////////////////////////////// if ( item->nameid == 32510 ) sd->inventory.u.items_inventory[i].favorite = 1; ////////////////////////////////////////// clif_additem(sd,i,amount,0); }
  13. Good day, I have the problem that AG_CHATTING and AG_SPEND_ZENY does not work. No matter what I sell at the NPC, it is not credited, just like chatting. Does it generally not work or am I doing something wrong? I use the original rAthena files.
  14. Hey, first of all thanks for sharing the Ambernite event. I just tested it and somehow it doesn't seem to take over the chances correctly. In theory, you should be able to get through to the end safely if all the odds are set to 100. But this is not the case. Even if I set it to 99, it lands extremely often on Green/Blue Egg. Would be great if you could help me. Greetings, as an euRO/fRO player. ?
  15. Good day, it would be totally awesome if someone could set the skills for pre-renewal as well. Some skill changes make sense for pre-renewal as well and you wouldn't have the problem with the bard/dancer songs for the newer clients. Sure Nemo lets you display the songs again, but the skill change is really handy + with Nemo's fix the new skill effect of the songs still remains, what looks weird. I think most of the dmg forumal from pre-renewal can stay as is and only the effects of the changes need to be added. Should it be too much work, I would also be willing to pay something for it. Here are the links of the rebalancing skills: https://www.divine-pride.net/forum/index.php?/topic/3453-kro-mass-skills-balance-1st-2nd-and-transcendent-classes-skills/ https://github.com/rathena/rathena/commit/ea8da71cdda5cddbc05cdc736683487e5c14bf08# Thanks
  16. Thanks for the new update. I like it.
  17. Hmm, I downloaded it yesterday. The last update was 25 days ago. Have I forgotten something? Repository: https://github.com/acelabini/FluxCP-MasterAccount If now there is a master account storage and a launcher where you can get all game accounts listed. Then it would be perfect. . ?
  18. Nice work. Is it possible to display the Master Id?
  19. Very friendly and works neat and clean. Even after the order he helps with problems. Always gladly and further to recommend.
  20. Thanks for your answer, but I already know this way to make it work like this. But I want to use the job_noenter_map.txt I don't find any line in the source where's is set the max of zones or similiar.
  21. Hello everyone, I would like to define my own zones, but I get the error message that this does not exist. Where do I have to define the custom zone? I have entered my test here: restricted.txt: prt_fild04 mapflag restricted 9 and in job_noenter_map.txt // 8192 - restricted in zone 9 JOB_PRIEST,8192,100
  22. Did you change MvP-ROOM to your mapname? This in RED if ( getmapxy(BL_PC) == "MvP-ROOM") end;
  23. Try this. (Change MvP-ROOM to your map name. If you have more maps, make a array.) add: if ( getmapxy(BL_PC) == "MvP-ROOM") end; before: setarray.mvpid[0],1916,1511,1785,1630,1039,1272,1719,1046,1389,1112,1115,1418,1252,1086,1885,1492,1734,1688,1373,2131,1147,1059,1150,1087,1190,1038,1157,1159,1623,1583,1312,1685,1658,1871,1768,1832,1779,2022,1708,1874,1751,1917,1647,1649,1651,1646,1650,1648,1120,1204,1259,1283,1289,1302,1307,1388,1582,1829,1830; setarray .minibossid[0],1120,1289,1302,1307,1388,1582;
×
×
  • Create New...