Edgar
Members-
Content Count
33 -
Joined
-
Last visited
Content Type
Profiles
Forums
Downloads
Staff Applications
Calendar
Everything posted by Edgar
-
La unica ocasion que me sucedio algo similar, es cuando descomprimí la carpeta en lugar de usar el GIT. Cuando lo realizas de esa forma se ponen permisos de solo lectura. Simplemente restaura los permisos. Google Translator: The only occasion that happened to me something similar, is when I unzipped the folder instead of using the GIT. When you do it that way, you get read-only permissions.Simply restores the permissions. Simply restores the permissions.
-
1.) Server name (if Live server) - 2.) Website (if Live server) - 3.) Favorite Script [Add-On] Recent | Favorite Warps (Euphy's Warper) 4.) Least Favorite Script Soul Link Boost: Single Strip bypass FCP 5.) Custom Modifications done to script any Used scripts by Me (for potential updates to current script made) If you feel uncomfortable with sharing your "unique code/idea (cough all you closed source mofos, you know who you are)" simply label "None" to this question. Language 6.) New NPC Script/System/Instance you would like to see from me. Custom BGs
-
iz_ac02 no puedo moverme de hay
Edgar replied to Raslea's question in Soporte y peticiones sobre el Cliente
No soy experto, pero en casos similares he actualizado el mapcache con ayuda del WeeMapCache. No puedo proporcionarte una guía, por que la verdad lo realice empíricamente. Espero al menos te sirva para darte un norte, saludos. -
How to Change BakonawaLake instance cooldown
Edgar replied to rotloso's question in General Server Support
go to db/quest_db.conf find { Id: 12278 Name: "Towards Bakonawa Lake..." TimeLimit: 604800}, change the timelimit to 3600 i think to make it 24 hrs. 3600 = 1hr 86400 = 24hr -
http://herc.ws/board/topic/4383-costume-item-plugins/
-
¿Podrías dar mas datos? ¿Que sistema operativo usas? De momento intenta Click derecho Propiedades Pestaña Compatibilidad Opcion -> Ejecutar este programa en modo de compatibilidad para Menu -> Windows XP (Service Pack 3) Mas abajito... Opcion -> Ejecutar este programa como administrador
-
Thx a lot
-
Problema con el Id de item.
Edgar replied to kira_full's question in Soporte y peticiones sobre Scripts/Bases de Datos
En lo personal uso desde el 26000 y no tengo ningún tipo de problema. -
Problema con el cliente, no muestra los custom.
Edgar replied to kira_full's question in Soporte y peticiones sobre el Cliente
Pues aparentemente esta todo bien declarado, la verdad lo único que resta es que no estén los spr y act acomodados correctamente. Por que no pruebas a usar otro spr y act con el mismo nombre, aunque no seas la imagen que deseas, puede ser cualquier hat; solo para descartar que realmente sirvan tus spr. ¿Puedes poner imagen de como pusiste los GRF en la carpeta sprite? ¿Los declaraste tanto como para Male como para Female? -
Problema con el cliente, no muestra los custom.
Edgar replied to kira_full's question in Soporte y peticiones sobre el Cliente
Puedes agregar al tema las partes correspondientes a : - accname.lua - accessoryid.lua - System/ItemInfo.lub - y de tu DB. ---- Por darte un ejemplo: - accname.lua [ACCESSORY_IDs.ACCESSORY_GREEN_SOCCER_BALL] = "_GREEN_SOCCER_BALL", - accessoryid.lua ACCESSORY_GREEN_SOCCER_BALL = 1201, - System/ItemInfo.lub [26001] = { unidentifiedDisplayName = "", unidentifiedResourceName = "", unidentifiedDescriptionName = { "Unidentified item, can be identified with [Magnifier]." }, identifiedDisplayName = "Green Soccer Ball", identifiedResourceName = "GREEN_SOCCER_BALL", identifiedDescriptionName = { "FootBall" }, slotCount = 0, ClassNum = 1201 }, - En la DB { Id: 26001 AegisName: "green_soccer_ball" Name: "Green Soccer Ball" Type: 5 Buy: 20 Weight: 1 Loc: 256 Refine: false View: 1201}, -
Problema con el cliente, no muestra los custom.
Edgar replied to kira_full's question in Soporte y peticiones sobre el Cliente
¿Que tipo de equipos son? ¿Headgears o armas? -
Exactly the same problem. Please help us. --- NVM... In DB just use: View: 11 and that's it. Custom sprite... and works like a bow.
-
Pedido Material cliente
Edgar replied to Kuroko Sempai's question in Soporte y peticiones sobre el Cliente
Mira, todo junto me es complicado subirlo. Pero te puedo pasar de momento la carpeta Tools, quizás pueda subir lo demás en algún momento del fin de semana. https://mega.co.nz/#!jUZ3XR7L!S_Ncoti1qZzOtDu6EoBvGUTTOrphZUFOKT3glFoEeM0 ---- Bueno, al final fue mas rapido la subida de lo que esperaba. https://mega.co.nz/#!2ZRzzQQS!EREsbQPzXLgu2kFRVlQ_w8_2KcQGa-_0qShSBvjYlJE 2013-12-23_Client_Side_Files El 2013-12-23Ragexe_Full_Client Me sería imposible. -
Script bg_consume mapflag, "Battleground's items" that can only be used in BG
Edgar replied to Hideki's topic in Source Releases
Can someone please fix it to new revision? -
That plugin do what you want. @ line 67 clif->changelook(&sd->bl,LOOK_HEAD_TOP,471); // Change 471 to any headgear view ID you want.
-
Maybe with set @itemid, 471; and later atcommand "@changelook 1 " + @itemid;
-
¿Por que no se ven los items custom al equiparlos?
Edgar replied to kira_full's question in Soporte al Servidor
Saludos, a mi me pasaba algo similar y uno de los errores aparte de los anteriormente mencionados, era que le ponia una ","(coma) al ultimo item, en cuando le quitaba esa "coma", me iba perfecto. (Esto en los LUA/LUB) -
Very good utility. When I use it opens a page, the problem is that it opens minimized. How I can fix this?
-
item_trade.txt @ db/pre-re/ db/re/
-
I have this problem Please, help
-
I have the same problem. Please Help.
-
Is there a way to validate if you have an item in your inventory? if ( !checkvending() && !checkchatting() && !getmapflag( strcharinfo(3), mf_nowarp ) && !getmapflag( strcharinfo(3), mf_nowarpto ) && !getmapflag( strcharinfo(3), mf_noteleport ) && !getgmlevel() && checkidle() < .idle && BaseLevel >= .level ) { // not vendor, not inside an event map and excluding GMs imagine is here, but I do not know how to declare it. ------------- ok i tried these (from wiki) && countitem(512) >= 5 and it seems to work >=)