Jump to content

Freecz

Members
  • Posts

    28
  • Joined

  • Last visited

Everything posted by Freecz

  1. can you elaborate your question more?
  2. http://supportmii.com/ro1/JudasBible.pdf
  3. how to add like. [Hourly Rewards]: you gain 2 hourly points. [ TOTAL POINTS = ? ]
  4. sa grf mo meron yan default na yan.
  5. Hi mga sir i have a problem po na i hindi ko alam kung ano ang mali ko. 1st = Yung currently Client po na nasa server ko na working is 2015-11-04a 2nd = yung diffed client ko po na bago is same 2015-11-04a din. ( i used nemo patcher sa pag didiff ) ( so ginawa ko after ma apply patch dinrag ko lang ung patched file sa folder ) pero kapag iniistart ko po ung server nakalagay ay " attempt to call a nil value " 3rd = eto po ung ginawa ko sa diff • i clicked recommended • fade in fade out = 0 • iteminfo.lua pa help lang po sa mga nakakaalam kuing bakit ganun mga sir ty.
  6. Objective: Gusto ko lang sana gumawa ng custom bloody branch na ang pangalan ay Mystic Branch na kung san mga piling rare mvp monsters lang ang nasa summon doon. Hi mga repa sinubukan ko i follow yung steps dito sa article na ito kaso ang problema parang outdated na sya hindi tugma ang guide sa laman ng folders ko. halimbawa naka lagay jaan na baguhin ko ung : const char* mobfile[] = { DBPATH"mob_branch.txt", DBPATH"mob_poring.txt", DBPATH"mob_boss.txt", "mob_pouch.txt", "mob_classchange.txt"}; pero wala sya di ko sya makita sa mob.cpp ko. ito ung lumalabas na error kapag sinubukan ko mag summon sa mystic branch. eto naman yung mga steps na ginawa ko nung ininstall ko ung mystic branch. 1. pumunta ako sa src>map>mob.cpp - dinagdagan ko ito mob_rare_boss.txt 2. pumunta naman akosa src>map>mob.hpp tapos ay dinagdag ko naman to 3. after nyan mga boss ni recompile ko kasi SRC file sya. 4. pumunta ako sa db>pre-re then dinagdag ko dito ung mob_rare_boss.txt eto yung nasa loob nya 5. ginawa ko ay nag type ako ng @reloadmobdb at sinubukan ko na din i restart ang server pero hindi pa din ito gumagana. hanggang sa napansin ko na sa putty ay ganito ang lumabas note: alam ko mga boss sasabihin nyo sakin hanapin ko sa google dahil marami. Pero nag hanap na ako mga boss wala talaga ako mahanap kasi parang outdated na lahat ng guide. paki tulungan naman po ako sa nakakalam kung pano lutasin itong problemang ito maraming salamat!.
  7. this one willl help you http://supportmii.com/ro1/JudasBible.pdf
  8. oo alam ko yan. napalitan ko yung iba. yun lang talaga hindi ko mapalitan.
  9. uu kasi yung mga iba like win_login ok na sya sakin na edit ko sya pero yan lang ang hindi ko mahanap.
  10. mga sir pahingi naman ng tulong kung paano babaguhin ang nasa picture na ito ( hindi yung (Celestial :RO 1) ang tinutukoy ko) sinubukan ko sya hanapin sa: texture > À¯ÀúÀÎÅÍÆäÀ̽º > login_interface pero wala hindi ko sya makita. kung alam nyo po kung san ito binabago maari po ba na paki turuan ako? maraming salamat mga sir.
  11. Change: [ACCESSORY_IDs.ACCESSORY_CAT_BELL] = "_°í¾çÀ̹æ¿ï", To: [ACCESSORY_IDs.ACCESSORY_CAT_BELL] = "CAT_BELL", if : ACCESSORY_CAT_BELL = 135, item_db.txt: 30000,CAT_BELL,CAT BELL,4,1,1,1,0,5,0,1,0xFFFFFFFF,63,2,1,,1,1,135,{},{},{}
  12. Check in your grf using GRF EDITOR then click Animation Preview. If its not doing what you wanted probably it's the sprite.
  13. hi mga sir. gusto ko lang sana humingi ng tulong about sa costume npc na meron ako. Ang nangyayari kasi imbis na headgear yung ma detect nya mga accessories yung na nadedetect nya na iconvert as costume. // ------------------------------------------------------------------------------- // 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. // ------------------------------------------------------------------------------- firstcity,187,69,4 script Costume Clown 715,{ 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], 256, 512, 1; 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], 256, 512, 1; 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; 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 // -------------------------------------------------------------------------- //prontera,155,181,4 duplicate(Costume Clown) Costume Clown#1 715 if you guys have a better script please kindly share it with me thanks!
  14. Data>Luafiles514>lua files>signboardlist.lub then ito ung loob ng file. {"townname",150,150,height from 0-10,IT_BMP or IT_SIGNBOARD,location ng file mo,namengfile.bmp","#fontcolor"}, done! wag mo kakalimutan i save ang grf after.
×
×
  • Create New...