Jump to content

mihaamiharu

Members
  • Posts

    24
  • Joined

  • Last visited

Everything posted by mihaamiharu

  1. How to remove glow effect from soul linker spirit from all players? Sorry if i post in the wrong forum
  2. You can use classchange, annieruru ever post it in her blog. Like this prontera,158,186,5 script asfsfd HIDDEN_WARP_NPC,14,14,{ if ( strcharinfo(PC_NAME) != "AnnieRuru" ) end; // double protection mes "hi"; close; OnTouch: if ( strcharinfo(PC_NAME) == "AnnieRuru" ) classchange 1_F_MARIA, 0, getcharid(CHAR_ID_CHAR); // end; } You can chane strcharinfo PC name with your character name. Also you can change strcharinfo(PC_Name) parameters to Account id / etc, (like using getcharid)
  3. Greetings, How to edit EDP skill doesn't affect on Magnum Break Damage?
  4. I think you should edit the src/map/atcommand https://github.com/rathena/rathena/blob/master/src/map/atcommand.cpp#L1997 It start from #L1952
  5. Does anyone here have itemdb_equip.yml for costume type? I've tried to mix / copy renewal itemdb_equip yml to import itemdb, but there are few errors there. Maybe someone have it and can share Thank you before
  6. Greetings, I'm using 2020-04-01 clients And when i used Smokie Clip and put hiding skill in hotkey Then i swap the smokie Clip to Marine sphere clip the hiding skill is still displayed in the hotkey bar. is there a way to make this behavior like 2018 client? How to remove skill in the hotkey when i don't use smokie accessories
  7. Is it possible to duplicate NPC based on how many player in map? Example : Player in prontera is 10, then i want duplicate NPC A for 9 times. I've read script_command and search in forum, but i can't find anything. If this possible, any clue how to do it ? Thank you
  8. Hi everyone, i have a script to change the value from selected SQL. The script was running smoothly without error, but the value of SQL column is not changed. The function of this script is add extra bonus cash point when you entered specific voucher, and accumulated bonus that will given to the voucher owner. My DB Structure CREATE TABLE `promorefeeral` ( `refeeralcode` varchar(24) NOT NULL, // Special Voucher code `used` int(11) NOT NULL, // How many times this voucher was used `extra` int(11) NOT NULL, // Total bonus get when used this voucher `komisi` int(11) NOT NULL // Acculumated bonus get by the voucher owner ) ENGINE=InnoDB DEFAULT CHARSET=latin1; //Used variable on sql query mes "Please Input your refeeral code"; input .@ref$; .@bonus = (.@amount * .@extra )/ 100; my sql query : // .@b = query_sql("SELECT * FROM `promorefeeral` WHERE `refeeralcode` = '"+escape_sql(.@ref$)+"'",.@refeeral$,.@used,.@extra,.@komisi); query_sql("UPDATE `promorefeeral` SET `used` = + '1', `komisi` = `komisi` + '"+.@bonus+"' WHERE `refeeralcode` = "+"'+.@refeeral$+'"); ==== When i use refeeral on database, the amount of cash point is successfully added. But the column used, and komisi is not changed.
  9. Hello, i'm using 2 proxy on my server. But everytime player exit from character select then they're relogin with another account. It's automatically changing their selected server to main server? --- Detailed Scenario ---- I Have 3 Server available ( Main, Proxy A and Proxy B) I'm selecting Proxy A before Login > Then i logged in with Account A. > Then i close the character select > Logged in again with Account B. > Then this user logged in to Main Server. Is there a way to keep this user loggin in to selected proxy when relogin?
  10. Hello I'am using Special Broadcast features from item_flag for all Equip Dropped by MVPs. -- Info -- 16 - Special Broadcast: When item dropped by monster and player loot it, will be broadcasted! 2258,16 ---- How to change the Special Broadcast How to change this 'opened' text to our desired text?
  11. Solved --- This problem caused by ---- My server have GLIBCXX version 19 on /usr/lib64/ even tough i have GLIBCXX version 25 on /usr/local/lib64/ So i need to compile newer version of gcc to my default gcc (not local) /lib64/libstdc++.so.6 version to 25. // Here's how i do it. #Change directory to local/lib64 cd /usr/local/lib64 #Copy newest libstdcc version to /usr/lib64 cp libstdc++.so.6.0.25 /usr/lib64/ #Change directory to /usr/lib64/ cd /usr/lib64/ #moving old libstdc++ running on my server. mv libstdc++.so.6 libstdc++.so.6.OLD #Setting newest GLIBCXX version to running ln -sf libstdc++.so.6.0.25 libstdc++.so.6
  12. I've tried this, the result is Cannot open skipping error : nothing to do http://centos.biz.net.id/7/os/x86_64/Packages/libstdc++-4.8.5-28.el7.i686.rpm
  13. I just recompiled my server and it was successfull. But when i want to start the server it show error like this. checking... Check complete. Looks like a good, nice rAthena! Logging is disabled ./login-server: /lib64/libstdc++.so.6: version `GLIBCXX_3.4.21' not found (required by ./login-server) Server 'login-server' started at 02-17-06:03-18 Server 'char-server' started at 02-17-06:03-18 ./char-server: /lib64/libstdc++.so.6: version `GLIBCXX_3.4.20' not found (required by ./char-server) ./char-server: /lib64/libstdc++.so.6: version `GLIBCXX_3.4.21' not found (required by ./char-server) ./map-server: /lib64/libstdc++.so.6: version `CXXABI_1.3.8' not found (required by ./map-server) ./map-server: /lib64/libstdc++.so.6: version `GLIBCXX_3.4.21' not found (required by ./map-server) ./map-server: /lib64/libstdc++.so.6: version `GLIBCXX_3.4.20' not found (required by ./map-server) Server 'map-server' started at 02-17-06:03-18 rAthena was started. -------------------------------------------------------------------------------------------------------------------- I've compiled with different way. 1. ./configure > then make clean > then make server 2. ./configure --with-pcre && make clean && make server 3. ./configure --enable-64bit --with-MYSQL_LIBS=/usr/lib64/libmysqlclient.so && make clean && make server 4. even i enable scl enable devtoolset-7 bash before compiling. But the result are still same. My GCC Version is up to date gcc (GCC) 8.2.0 Copyright (C) 2018 Free Software Foundation, Inc. This is free software; see the source for copying conditions. There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. My server using CentOS 7 -------------------------------------------------------------------------------------------------------------------- I can run the server with exporting library . export LD_LIBRARY_PATH=/usr/local/lib:/usr/lib:/usr/local/lib64:/usr/lib64 But how to start server normally after compiling? Without export the library path
  14. Thank you cook1e This is my fault I check this garment with high wizard with increase sp lvl 10. That's why its give 300 maxsp instead of 250
  15. i have a costume item that have effect to increase max SP +25 for every refine rate Here's the item effect bonus 45009,C_SP_Garment,Inc SP Garment (SP),4,0,,0,,0,,0,0xFFFFFFFF,63,2,8192,,1,1,3,{ bonus bMaxSP,( getrefine()*25 ); },{},{} But when i check to refine the item, the bonus effect is more than 25. I got 300 bonus sp when the item is +10
×
×
  • Create New...