-
Content Count
592 -
Joined
-
Last visited
-
Days Won
23
Kuya Jeo last won the day on March 27
Kuya Jeo had the most liked content!
About Kuya Jeo
-
Rank
Advanced Member
Profile Information
-
Emulator
Hercules
-
Try to use updated english translation file.
-
How about disable endless tower script and make a custom endless tower
-
You can do it thru src edits
-
Option 0 is the answer When you relogin(character select then login again) the CD of EC will remove.
-
2018 Client crashed when clicking <ITEM> LINK in ItemInfo.lua
Kuya Jeo replied to Hadeszeus's question in Client-Side Requests
use <ITEMLINK> instead of <ITEM> Sample mes "<ITEMLINK>"+getitemname(512)+"<INFO>512</INFO></ITEMLINK>"; -
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
-
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
-
Currently working with a Server with this features. you can check it on my FACEBOOK Page
-
-
are you using updated hercules trunk? https://github.com/HerculesWS/Hercules
-
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
-
Try to update your LUA Files
-
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
-
Update Video Tutorial on the first post
-
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..
-
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; } }