Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 07/14/22 in all areas

  1. When u diff your exe with nemo, you should install this. ? Enable Flag Emoticons ¶ EnableFlagEmotes Enable Selected Flag Emoticons for all LangTypes. You need to specify a txt file as input with the flag constants assigned to 1-9
    1 point
  2. I guess it's about time there is a RO randomizer. I can think about the project in my head as much as i want, but, to see this trough, i need help. So. Let's talk about what i think it should be: - A randomizer for values in the rathena databases. And not: - A game behavior randomizer. I mean, RO is a skill game. Hard-earned experience should be taken in consideration while building such a MOD. Let's brainstorm this, and come up with some rules and presets. I do think this might be the refresher we need in a stale gameplay loop. Thanks.
    1 point
  3. Evening all! With the recent forum updates comes some new shiny features from IPS. The feature I'm most excited about is the new Achievements and Ranks. The old Badges & Awards plugin has been merged into the new Achievements system on the forums - I'm sure some of you have already begun to receive additional badges for posting content or uploading a file! The ancient Ranks system has been replaced with the new one and updated to use the names of familiar in-game mobs. The order is different to the old one and the number of points for each rank has changed slightly, but I can see that some of you are already quickly climbing the ladder! The following table details how many points gets you to which rank, and how to earn those desirable points. Posting a comment/reply: 5 points Following a content item: 2 points Following a member: 2 points Following a node (forum, album, category, etc): 2 points Posting a content item: 10 points Reacting to a user's post/content item: 1 point for both giver and receiver There are other methods, but to reduce forum spam I'm omitting them from this list. Remember; spamming the forum will result in Warning Points which may result in your account being suspended. Happy posting!
    1 point
  4. You can cut image ? \texture\유저인터페이스\menu_icon\bg_menu.tga < (download and replace in your grf)
    1 point
  5. Right now each Vit increases HP by 1%. In status.c: status_calc_maxhpsp_pc Find: max = job_info[idx].base_hp[level-1] * (1 + (max(stat,1) * 0.01)) * ((sd->class_&JOBL_UPPER)?1.25:1); If you want to double the effect of vit you need to change the 0.01 to 0.02.
    1 point
  6. if ( sd->bl.m == m ) { clif_displaymessage( fd, "You can't warp on the same map" ); return -1; } add this just above pc_setpos inside (mapmove)
    1 point
  7. if((skill=pc_checkskill(sd,MO_DODGE))>0) status->flee += skill*3;
    1 point
  8. Index: char/char.c =================================================================== --- char/char.c (revision 16496) +++ char/char.c (working copy) @@ -1322,6 +1322,8 @@ } if( Sql_NumRows(sql_handle) > 0 ) return -1; // name already exists + if (strstr(name, "GM")) + return -2; return 0; }
    1 point
×
×
  • Create New...