Jump to content

sader1992

Content Moderator
  • Posts

    1677
  • Joined

  • Last visited

  • Days Won

    71

Community Answers

  1. sader1992's post in Cash Point and Free Cash Clash data was marked as the answer   
    i didn't understand what the problem really
    but
    i would say at the line 154
    this line
    set #CASHPOINTS, @Donation_Code$; this will replace all the cash points you have with the value from the npc
    so it should be 
    set #CASHPOINTS, #CASHPOINTS + @Donation_Code$; this will add the value from the script to the cash points
  2. sader1992's post in Need Client 2016-12-07 was marked as the answer   
    2016-12-07eRagexeRE.zip
  3. sader1992's post in Item description was marked as the answer   
    if .lub edit it using visual code not notepad++
     
    i would remove the one you edit and add new one 
     
    in visual code go to setting > user settings
    add those lines
    { "files.encoding": "utf8", "files.autoGuessEncoding": true } and restart it and open your new iteminfo.lub with it and edit it as much as you want
  4. sader1992's post in Force disable autoloot when enter certain map was marked as the answer   
    - script autoloot_checker -1,{ OnPCLoadMapEvent: getmapxy .@ma$,.@ax,.@ay,0; if(.@ma$ == "payon") { atcommand "@autoloot 0"; } end; } payon mapflag loadevent  
  5. sader1992's post in Any basic tutorials out there? Teleport NPC. was marked as the answer   
    rAthena\npc\scripts_custom.conf
    open it and you will find there npcs
    search for //npc: npc/custom/warper.txt
    remove the // from the start
    npc: npc/custom/warper.txt
    and if you wanna add any npc just add the path in this file and it would be added to the server
    inside the game type @reloadscript to reload the npc files and it will show inside the game
  6. sader1992's post in Achievement Bar was marked as the answer   
    do you have this ?
     
  7. sader1992's post in Random Portals was marked as the answer   
    prontera,155,174,4 script script_name 45,2,2,{ switch(rand(5)) { case 0: warp "prontera",50,10; end; case 1: warp "prontera",40,20; end; case 2: warp "prontera",30,30; end; case 3: warp "prontera",20,40; end; case 4: warp "prontera",10,50; end; } }  
  8. sader1992's post in Lua Decompiling from kRO Grf? was marked as the answer   
    go file info >> Raw view >> save as >> lua or lub if you want 
     
     
     
  9. sader1992's post in A filter of bad words! was marked as the answer   
    inside your grf or data folder named manner.txt
  10. sader1992's post in Custom Box was marked as the answer   
    i tested it and it work with the last revision
    however
    you can give it a different id
    by don't this for example in itemdb.h
    IG_BLESSED_CUBE = 500,
    this will make it id 500
  11. sader1992's post in @request freebies used commands was marked as the answer   
    - script s_freebies_npc -1,{ OnInit: bindatcmd "freebies",strnpcinfo(0)+"::ONfreebies"; end; ONfreebies: if(!#Freebies){ getitem 7227,100; getitem 7539,10; set #Freebies,1; }else{ dispbottom "You already got your free prizes!"; } end; }  
  12. sader1992's post in New Prontera was marked as the answer   
    i can't find the files hopefully you find them or someone upload them to you
    after you add the map on the server side you only need to make the players download the new map
    i would suggest you upload them the grf and the ini cuz thor patcher need a host
    so you open your data.ini in your server files and edit it
    you will find it in your game folder DATA.ini
    open it you will see something like this
    [Data] 1=myserverinfo.grf 2=rdata.grf 3=data.grf not the same but it's like it
    so you add the name of your new prontera grf in there let's say your new prontera grf named prontera.grf
    [Data] 0=myserverinfo.grf 1=prontera.grf 2=rdata.grf 3=data.grf and you upload your prontera.grf and your data.ini to the players after they download the files they put them in the game folder if everything went perfectly everything should work without any problem
  13. sader1992's post in Client 2015-11-04 wont run because netbaking apps was marked as the answer   
    if the game wont run the first thing i would see is if they have c++ 2008 32bit / c++ 2010 32bit or not ,DirectX End-User Runtime 2010 ,and .net framework 3.5
    (c++ library is about your program not your system so ragnarok is 32bit ,even if your system is 64 you will need c++ 32bit for ragnarok)
    if they have it then i would change the game setting , screen resolution and disable the sound from setup.exe
    then i would disable the antivirus at the last >>(not every antivirus is antivirus  some are viruses them self lol)
    if it work after disable the antivirus i would change it (or the firewall program i would suggest the default one from microsoft if you have windows 10 last update)
    URLS:
    DirectX End-User Runtime Web Installer OR DirectX End-User Runtimes (June 2010)
    Microsoft .NET Framework 3.5
    Microsoft Visual C++ 2008 Redistributable Package (x86)
    Microsoft Visual C++ 2010 Redistributable Package (x86)
  14. sader1992's post in 2014-10-22 crach on feeding pets was marked as the answer   
    Fixed
    thanks for https://github.com/aleos89
  15. sader1992's post in Guild Package Script was marked as the answer   
    this with guild level
    prontera,154,95,4 script test 50,{ query_sql "SELECT `guild_lv` FROM `guild` WHERE `guild_id`="+getcharid(2)+"",@glvl; if(@glvl == 50 ){ if( !#GuildPackage3 ){ set #GuildPackage3,1; getitem 512,10; }else{ mes "You can't get it twice!"; } close; }else{ mes"your guild level too low"; close; } } getitem item,amount;
    getitem item,amount;
    getitem item,amount;
    getitem item,amount;
     
     
    you can do this script with any and more then one from the guild sql
    name char_id master guild_lv connect_member max_member average_lv exp next_exp skill_point mes1 mes2 emblem_len emblem_id emblem_data just edit this like the Example on connect_member
     
    query_sql "SELECT `guild_lv`,`connect_member` FROM `guild` WHERE `guild_id`="+getcharid(2)+"",@glvl,@cmember; and edit the if 
    if(@glvl == 50 || @cmember == 10 ) i hope i helped you 
  16. sader1992's post in RessourceError can't find file À¯ÀúÀÎÅÍÆäÀ̽º\item\.bmp was marked as the answer   
    try the bmp in here

     

    http://www.mediafire.com/download/ffcxs7r86iexyx5/data_v4.0.rar

     

    or the item info from here

     

    https://raw.githubusercontent.com/ROClientSide/Translation/master/System/itemInfo.lua

×
×
  • Create New...