Jump to content

Mr BrycE

Members
  • Posts

    595
  • Joined

  • Last visited

Everything posted by Mr BrycE

  1. Lo mejor que puedes hacer es encontrar sprites de secciones de descarga de rathena, hércules, etc .. o también en: spriterepository.com y ponerlo en la carpeta de datos propia.
  2. try to create another new grf. or a new map_cache.
  3. i think you can still patch it. Well, that is if your using SecureGRF not sure about the others.
  4. when you create your patcher your specifying the .grf file to be merged with. just create another thor patcher with different config.
  5. do you mean the guild title is above the name? did you try '/showname' ?
  6. upon buying asurahosting services they email you all the details. check your mail.
  7. Read here: Custom Items / Iteminfo
  8. what client date are you using? how about those files. idnum2itemdesctable idnum2itemdisplaynametable idnum2itemresnametable or this iteminfo.lua
  9. Mr BrycE

    GM Sprite

    Use Unbollox you can download it from here Clicky as for the location sprite/인간족/몸통/남 < Male sprite/인간족/몸통/여 < Female If you already convert it with Unbollox sprite/Àΰ£Á·/¸öÅë/³² < Male sprite/Àΰ£Á·/¸öÅë/¿© < Female
  10. i tested it working fine for me. the only thing i did not add is to delete the example requirement.(well i added it now to the previous post) by any chance did you change the example item? because that's only an apple. xD
  11. maybe your low in disk space, or something else. check your status logs
  12. try mo to sir. meron dyan. 2012WeeDiffPatch.rar
  13. better use item_db2.txt pra ma locate mo custom ng mas mabilis
  14. sa git ka na po kumuha pra sure, ititigil na po ata nila yung svn,
  15. gamit ka po sa susunod ng code box. bka nmn po sa sa job_exp.txt kayo may prob.
  16. the stringtable lulu gave still has the Equipment name. you better do it manually Ctrl+F find the ' Equipment ' change it to a smaller word like 'Eq' or simply E. then just do it again
  17. di mo po ba pwede ulitin nlng pagkakalagay sa sql files? mas ok nmn un kaysa maghanap ka pa ng needle sa haystack (not sure if that's your problem tho)
  18. Hi,ill try to help // ------------------------------------------------------------------------------- // Script Name : Headgear to Costume converter >> Costume to Headgear converter // ------------------------------------------------------------------------------- // Description : // - Allows a user to convert the equipped headgear (on Top, Mid or Low) into a // costume item. It will remove any card and refine of the Item. // - Allows a user to restore the equipped costume headgear (on Top, Mid or Low) // into its original form. It will not return any card or refine of the item. // ------------------------------------------------------------------------------- - script Costume Clown -1,{ if (countitem(512) >= 1) goto L_Clown; // you need 1 apple to use the clown mes "[Clown]"; mes "You don't have any requirements to use this"; close; L_Clown: mes "[Clown]"; mes "Here you can convert your headgears into a Costume Headgear or restore to its Original form."; switch(select("I want to convert.:I want to restore.:No thanks.")) { case 1: next; mes "Please, select what to convert."; mes "Remember, cards and refine will be removed."; next; setarray .@Position$[1],"Top","Mid","Low"; setarray .@Position[1], 1, 9, 10; set .@Menu$,""; for( set .@i, 1; .@i < 5; set .@i, .@i + 1 ) { if( getequipisequiped(.@Position[.@i]) ) set .@Menu$, .@Menu$ + .@Position$[.@i] + "-" + "[" + getequipname(.@Position[.@i]) + "]"; set .@Menu$, .@Menu$ + ":"; } set .@Part, .@Position[ select(.@Menu$) ]; if( !getequipisequiped(.@Part) ) { mes "[Clown]"; mes "Your not wearing anything there..."; close; } mes "[Clown]"; mes "You want to Costume your " + getitemname(getequipid(.@Part)) + "?"; next; if( select("Yes, proceed:No, I am sorry.") == 2 ) { mes "[Clown]"; mes "Need some time to think about it, huh?"; mes "Alright, I can understand."; close; } costume .@Part; // Convert the Headgear mes "[Clown]"; mes "Done, enjoy your costume headgear."; close; case 2: next; mes "Please, select what to restore."; mes "Remember, I will only restore it back without refine and cards."; next; setarray .@Position$[1],"Top","Mid","Low"; setarray .@Position[1], 13, 12, 11; set .@Menu$,""; for( set .@i, 1; .@i < 5; set .@i, .@i + 1 ) { if( getequipisequiped(.@Position[.@i]) ) set .@Menu$, .@Menu$ + .@Position$[.@i] + "-" + "[" + getequipname(.@Position[.@i]) + "]"; set .@Menu$, .@Menu$ + ":"; } set .@Part, .@Position[ select(.@Menu$) ]; if( !getequipisequiped(.@Part) ) { mes "[Clown]"; mes "Your not wearing anything there..."; close; } mes "[Clown]"; mes "You want to restore your " + getitemname(getequipid(.@Part)) + "?"; next; if( select("Yes, proceed:No, I am sorry.") == 2 ) { mes "[Clown]"; mes "Need some time to think about it, huh?"; mes "Alright, I can understand."; close; } a = getequipid(.@Part); delitem a,1; getitem a,1; delitem 512,1; mes "[Clown]"; mes "Done, enjoy your restored headgear."; close; case 3: mes "[Clown]"; mes "Very well. Return at once if you seek my services."; close; } } // -------------------------------------------------------------------------- // Use duplicates to put your npc on different cities // -------------------------------------------------------------------------- trinity,83,97,4 duplicate(Costume Clown) Costume Clown#1 715
  19. check table, then at the bottom there's a menu named 'with selected' choose repair table
  20. did you try the repair option?
  21. now.. i didn't try it with -1sak1 thing, ill make sure i edit this post after doing what you said.
  22. already did that. the client is not opening
  23. nope i'm still trying to figure out how to do that. and hoping that it's possible.
×
×
  • Create New...