Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 09/25/20 in all areas

  1. Version 1.0.0

    325 downloads

    A while ago I searched for everything for a program that separated all the strings in a file so that I could translate more easily, well I didn't think so I paid a developer to help me create, unfortunately I lost the source code of this incredible editor because of a ransomware, but I managed to find the executable, I hope it helps many people as it helped me! Description: Basically if you want to translate something or just edit the strings of an npc just import your .txt file and it will separate and you can edit / translate as you prefer. Demonstration video: Importar button: you import the.txt file Button "Criar arquivo codificado" :you create a file only with the strings all in line and encoded for windows 1252. button visualizar : you can preview the result. and Finalizar button it saves! obs1: take care not to increase the number of lines and nothing else will be out of order. obs2: You need to press on preview to apply the changes obs3: And be careful also when using it, as it can confuse a string with text, it identifies everything inside a string, so it can have this pattern: "here" ok "here" here OK here I'm sure it will be easier to translate into your language. using it is just a matter of habit, if I find the source code I will post it for free. would you like to donate to this project? paypal: [email protected] thanks!!
    Free
    3 points
  2. Version 2.0.0

    1458 downloads

    Version 2 Information: now support more then 2 iteminfo , you can check line 17 to add as much as you want! IInfo = {"System.import_iteminfo","System.kro_iteminfo5","System.kro_iteminfo4","System.kro_iteminfo3","System.kro_iteminfo2","System.kro_iteminfo1","System.kro_iteminfo"} now it's much much much faster for big files! remove functions.lua move url functions to the iteminfo itself 2 Big files loading test : this test is not loading in the client , but loading in the debugger! If you are new to this > Details: this an example and template on how you Customize your iteminfo read the ReadMe!! file before you ask anything this work as the import folders in rathena (if you don't know what i mean than i suggest you use rathena search or google) ALL THE FILES MUST BE .lua !!! the way it work: you add your custom and edited items in the import iteminfo file you add kro iteminfo file you add the server url in the function file the client will read the iteminfo import first than the kro iteminfo than you can update your kro iteminfo at anytime you need without any edit to it without the need to re-add your custom and edited items to a new kro iteminfo the kro_iteminfo included is from https://github.com/zackdreaver/ROenglishRE (which is old , I suggest you use the one from https://github.com/llchrisll/ROenglishRE) this file is added for example on how you use it I suggest you get the last iteminfo after you make sure there is no error! I would highly suggest you check out his great project every time you want to update your iteminfo! Please report any error in the forum post not in the PM , Thanks.
    Free
    1 point
  3. int64 value = pc_readregistry(sd, reference_uid(add_str("VARIABLE"), 0)); 0 = THE Index if you are using array , if not leave it 0
    1 point
  4. Version 1.1.0

    144 downloads

    This mod allows you to set some conditions to a player can see or interact with a NPC. Command: viewcondition( npc_name, int_variable_name, compare_method, value_1, { value_2 } ); Compara Methods Avaiable: EVC_LESS - If player variable is < value_1 EVC_EQUALS - if player variable is == value_1 EVC_MORE - if player variable is > value_1 EVC_BETWEEN - if player variable is >= value_1 and <= value_2 EVC_DIFFERENT - if player variable is != value_1 You can apply more than one condition to a npc, but if one condition fail, the npc will not be seeing by the player. Script Sample: new_1,55,111,5 Script Lupina#1 10078,{ mes "You can see and talk with me because your @teste variable is less than one!"; next; mes "Now, I will set @teste to 2 and you will no longe see me when goes outsight me or if use @refesh!"; close2; @teste = 2; end; OnInit: viewcondition( strnpcinfo(0), "@teste", EVC_LESS, 1 ); end; }
    Free
    1 point
  5. Version 1.0.1

    189 downloads

    bonus bXDefReturn Add resistances against return damages. ::Structure:: bonus bPhysicalDefReturn,n; +n% damage reduction against physical reflect attack bonus bMagicalDefReturn,n; +n% damage reduction against magical reflect attack ::Video::
    Free
    1 point
×
×
  • Create New...