Jump to content

Kuya Jeo

Members
  • Content Count

    596
  • Joined

  • Last visited

  • Days Won

    24

Everything posted by Kuya Jeo

  1. use @unloadnpc then @loadnpc again. but its not recommended.
  2. Check your group.conf and find skill_unconditional this must be FALSE { id: 99 name: "Admin" level: 99 inherit: ( "Support", "Law Enforcement" ) commands: { /* not necessary due to all_commands: true */ } log_commands: true permissions: { can_trade: true can_trade_bound: false can_party: true all_skill: false all_equipment: false skill_unconditional: false use_check: true use_changemaptype: true all_commands: true hchsys_admin: true use_macro_interface: true } }
  3. Check the error in your map-server. if no error will pop-up, possible reason is, your GRF files is incomplete or not compatible with the client version, tried to used the English version of data files, you can download it here.
  4. Is there something wrong with getitembound? I kinda feel wierd.. All item are like normal without any restrictions.
  5. Try to use updated english translation file.
  6. How about disable endless tower script and make a custom endless tower
  7. Option 0 is the answer When you relogin(character select then login again) the CD of EC will remove.
  8. use <ITEMLINK> instead of <ITEM> Sample mes "<ITEMLINK>"+getitemname(512)+"<INFO>512</INFO></ITEMLINK>";
  9. If you're using clean trunk, you can find the jobmaster in the trunk/npc/custom/jobmaster.txt Link : https://github.com/HerculesWS/Hercules/tree/stable/npc/custom
  10. This is because the bmp file from item folder is not there GRF Path : data/texture/À¯ÀúÀÎÅÍÆäÀ̽º/item EDIT : sprite and act name must be the same with bmp file in collection and item folder
  11. Currently working with a Server with this features. you can check it on my FACEBOOK Page
  12. are you using updated hercules trunk? https://github.com/HerculesWS/Hercules
  13. The error is your header, you need to use <tab> Try this code and check it if still have the error sec_in01,170,159,0 script Saida#VIP1 WARPNPC,3,3,{ fim; OnTouch: urdidura "prontera", 160, 176; fim; } sec_in01,167,159,0 script Saída # VIP2 45,3,3, { fim; OnTouch: urdidura "prontera", 160, 176; fim; } prontera, 152.184,6 script SalaVIP # 01 :: VIPman 873, { if (getgmlevel () <1) { mes "-Para ser VIP é muito simples."; mes "Doando a partir de ^ FF00002 reais ^ 000000 você já pode ter acesso aos comandos e NPCs VIP!"; mes "Acesse http://www.ragnamemories.com/ para mais informações.-"; fechar; } mes "[Sala VIP]"; mes "Deseja ir para uma sala VIP?"; query_sql "SELECT` diasvip` FROM `login` ONDE` account_id` = '"+ getcharid (3) +"' AND `level` = '1' AND` diasvip`> '0' ",. @ DIASVIP; mes "^ FF0000Você possui ^ 0000CD" +. @ DIASVIP + "^ FF0000dia (s) de VIP. ^ 000000"; Próximo; if (selecione ("Sim: Não") == 2) fechar; close2; urdidura "sec_in01", 169, 164; fim; } sec_in01,0,0,0 script CheckVIP -1.500.500, { fim; OnPCLoadMapEvent: if (getgmlevel () <1 && strcharinfo (3) == "sec_in01") warp getsavepoint (0), getsavepoint (1), getsavepoint (2); fim; } sec_in01 mapflag nobranch sec_in01 mapflag noicewall sec_in01 mapflag nomemo sec_in01 mapflag nopenalty sec_in01 mapflag noreturn sec_in01 mapflag nosave sec_in01 mapflag noskill sec_in01 mapflag noteleport sec_in01 mapflag novending sec_in01 mapflag nowarp sec_in01 mapflag nowarpto sec_in01 mapflag loadevent
  14. Try to update your LUA Files
  15. Update your lua files If you are using RENEWAL : https://github.com/zackdreaver/ROenglishRE If you are using PRE-RENEWAL : https://github.com/zackdreaver/ROenglishPRE
  16. Update Video Tutorial on the first post
  17. As of now, any admin account from your server will have this kind of access but this project is not yet finish and it has many revision..
  18. try this one, i didnt test it yet but i think you are looking something like this.. hopefully prontera,100,100,4 script BUFFER 4_M_MAYOR,{ // Normal Player can get the buff // Filter with group_id.conf (Lv : 0) if(getgmlevel() < 1){ specialeffect(EF_INCAGILITY, AREA, playerattached()); sc_start SC_INC_AGI,240000,10; specialeffect(EF_BLESSING, AREA, playerattached()); sc_start SC_BLESSING,240000,10; end; } // VIP Player can get the additional HEAL // Filter with group_id.conf (Lv : 5) else if(getgmlevel() == 5){ percentheal 100,100; specialeffect(EF_INCAGILITY, AREA, playerattached()); sc_start SC_INC_AGI,240000,10; specialeffect(EF_BLESSING, AREA, playerattached()); sc_start SC_BLESSING,240000,10; end; } // GM Account with Lv : 99 on group_id.conf else if(getgmlevel() >= 9){ mes "[ HEALER ]"; mes "You are an Admin."; // You can put any condition here or content if you want close; } else{ mes "[ HEALER ]"; mes "Error"; close; } }
  19. Im currently working with a New Project but this project is not yet finish Progress : 30% to 35% as of March 21, 2021 I start this project because of innovation and challenging myself again haha You can watch the video, the Features are in the video description, I will add more features since I done with other stuff on this project.
  20. If you want to have invisible npc just use HIDDEN_NPC Sample prontera,100,100<tab>script<tab>I am invisible<tab>HIDDEN_NPC,{ content here }
  21. You cant connect into your client if you have gepard when you use robrowser.
  22. Closed. I already figured it out
  23. Is there someone has a source code like Loki Launcher that you can login thru Launcher. Thank you
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.