Jump to content

Elsa Mist

Members
  • Posts

    387
  • Joined

  • Last visited

  • Days Won

    6

Everything posted by Elsa Mist

  1. https://rathena.org/board/topic/90204-nemo/ simple, and use GOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOGLE next time.
  2. Client tahun berapa? Jika tidak salah, headgear itu hanya boleh dipakai bersama client 2015.
  3. How long have you not playing RO? See the red square below, its kinda like minimized function. Click on ' - ' to make its small.
  4. When see the damage, did you use GM account? Normally its wil hide damage from normal players.
  5. Since you are asking for 'adding custom in item_db_re.sql' http://blackout-gaming.net/projects/itemdb/
  6. What i mean is, dont use gender sprite as your drop sprite. Put the gender speite back. Some aprite out there sometime didnt have a proper aprite mostly they use the gender sprite.
  7. https://github.com/rathena/FluxCP/blob/master/config/servers.php // Login server configuration. 'LoginServer' => array( 'Address' => '127.0.0.1', 'Port' => 6900, 'UseMD5' => false, 'NoCase' => true, // rA account case-sensitivity; Default: Case-INsensitive (true). 'GroupID' => 0, // Default account group ID during registration. //'Database' => 'ragnarok' ), 'GroupID' => 0, // Default account group ID during registration.
  8. if you have an error on viewing the item(alt+q), check your 'collection' file, also check the drop sprite. Drop sprite if im not mistake, the size of the file is 2KB only . You cant use gender sprite(some sprite didnt work well, some might work.)
  9. You just found those only? When i am type this on google ' korean language problem rathena' there is a ton of results. Same goes with 'old prontera rathena'. Yes, i know you are in learning procces, you'll need to think outside the box.
  10. Are you sure you have try search any related issues regarding to your problem....?
  11. Please google next time Try this 'class restriction rathena' Dont be lazy if you want to be a good developer... Otherwise you will not getting any improvement!!
  12. Its have explained very well // Restricted zones - configured by 'restricted <number>' mapflag // 32 - cannot be used in zone 1 maps // 64 - cannot be used in zone 2 maps // 128 - cannot be used in zone 3 maps // 256 - cannot be used in zone 4 maps // 512 - cannot be used in zone 5 maps // 1024 - cannot be used in zone 6 maps // 2048 - cannot be used in zone 7 maps
  13. Because you are using RO files that already encrypted such as yourro.grf. You should make a new one client files.
  14. is that a GM doing the skill test? O_O https://github.com/rathena/rathena/issues/627
  15. prontera,5,5,5 script PCSTATCALC 111,{ end; OnWeaponInfo: set .@M$,.@atcmd_parameters$[0]; if((.@M$ == "")){ if(getequipid(EQI_HAND_R) set .@ei,getiteminfo(getequipid(EQI_HAND_R),11); } else { set .@ei,-1; } switch(.@ei){ case 3: case 6: case 7: case 8: case 9: case 12: set .@M$,"Onslaught"; Break; case 0: case 1: case 16: case 22: set .@M$,"Swiftness"; Break; case 2: case 4: case 5: case -1: set .@M$,"Safegaurd"; Break; case 11: case 13: case 14: case 17: case 18: case 19: case 20: case 21: set .@M$,"Ranged"; Break; case 10: case 15: case 23: case 24: set .@M$,"Mystical"; Break; } } didnt try yet. not on my station right now
  16. This lines for(set .@i,0; .@i<getarraysize(@sold_nameid); set .@i,.@i+1) if (@sold_nameid[.@i] > 4000 && @sold_nameid[.@i] < 4700) { if (.Level) { query_sql("SELECT `LV` FROM `mob_db` WHERE `DropCardid` = "+@sold_nameid[.@i],.@lv); if (.@lv < .Level) { dispbottom getitemname(@sold_nameid[.@i])+" is under the minimum level."; continue; } } change for whatever card you want.
  17. This lines setarray .Points[0],1,5; // Points per <normal card>,<MVP card> set .MVP$, // List of MVP cards. "4121,4123,4128,4131,4132,4134,4135,4137,4142,4143,4144,4145,4146,4147,4148,4168,4236,"+ "4241,4263,4276,4302,4305,4318,4324,4330,4342,4357,4359,4361,4363,4365,4399,4403,4407"; Change to setarray .Points[0],1,10; // Points per <normal card>,<MVP card> set .MVP$, // List of MVP cards. "4121,4123,4128,4131,4132,4134,4135,4137,4142,4143,4144,4145,4146,4147,4148,4168,4236,"+ "4241,4263,4276,4302,4305,4318,4324,4330,4342,4357,4359,4361,4363,4365,4399,4403,4407";
  18. You can start with reading this https://rathena.org/wiki/Basic_Scripting https://github.com/rathena/rathena/blob/master/doc/script_commands.txt https://github.com/rathena/rathena/tree/master/doc
  19. prontera,151,180,6 script +100 Refiner 100,{ for ( .@i = 1; .@i <= 10; .@i++ ) { if ( getequipisequiped(.@i) ) { .@id = getequipid(.@i); .@ref = getequiprefinerycnt(.@i); .@card1 = getequipcardid( .@i, 0 ); .@card2 = getequipcardid( .@i, 1 ); .@card3 = getequipcardid( .@i, 2 ); .@card4 = getequipcardid( .@i, 3 ); delitem2 .@id, 1, 1, .@ref, 0, .@card1, .@card2, .@card3, .@card4; getitem2 .@id, 1, 1, 101, 0, .@card1, .@card2, .@card3, .@card4; equip .@id; } } end; }
  20. more reference for item_db.txt https://github.com/rathena/rathena/blob/master/doc/item_db.txt Item bonus *transform <monster ID>,<duration>,<sc type>{,<val1>,<val2>,<val3>,<val4>}; *transform "<monster name>",<duration>,<sc type>{,<val1>,<val2>,<val3>,<val4>}; This command will turn a player into a monster for a given duration and grants an SC attribute effect while transformed. Note that players cannot be transformed during War of Emperium or if already disguised. Can only be removed when you die or the duration ends.
×
×
  • Create New...