Jump to content

Emistry

Forum Moderator
  • Posts

    10018
  • Joined

  • Days Won

    408

Everything posted by Emistry

  1. could it be your script problem? like your script failed to hide the npc ? wrong scripting way to hide your npc ?
  2. if( Class == NinjaID || Class == StarID || Class == TaekwonID ) bonus bMaxHPrate,30; put it inside the V.Armor script in the item_db.txt and edit the Class ID at your own
  3. i dont think this is possible through NPC... but maybe there is chances for you if you try do some SRC Mod ..( not sure ) if you know client hexing...maybe you can try hex it to create another button to link to another website like what the "register" button in the client
  4. 1774 =='' Gepard also ....not only me... just try to fulfill what is this topic for...
  5. LOL...of course the script got problem and the error will surely disappear if you unload the script @justin just make sure you show the script if your script got problem.. if we dunno how you script is build..we wont know how to help you solve it
  6. change if( rand(100) < .@Rates[.@i] ){ getitem .@RareID[.@i],1; mes "Done, congratz."; }else{ mes "But Failed."; } to this if( rand(100) < .@Rates[.@i] ){ getitem .@RareID[.@i],1; mes "Done, congratz."; announce "Wow.."+strcharinfo(0)+" has successfully Refine the "+getitemname( .@OriID[.@i] )+" to "+getitemname( .@RareID[.@i] ),0; }else{ mes "But Failed."; announce strcharinfo(0)+" has broke "+getitemname( .@OriID[.@i] ),0; }
  7. change all dyn_shop"+.a$, into dyn_shop1 and learn to use Codebox please
  8. perhap you should ask Harmony about this ? ask your member to redownload your client and reinstall
  9. are you using Dynamic NPC ? the LunarCast Dynamic NPC ? is yes the search around the script section..it has been answered several times...
  10. how about checking if they are not a Baby Class since they going to change into Baby Class ? if( Upper != 2 && Upper != 6 ){ mes "You can change to Baby Class"; close; } if( Upper == 2 || Upper ==6 ){ mes "You are Baby Class"; close; } mes "You current Class ID : "+Class;
  11. Emistry

    weird problem

    if you are using the SQL...then make sure all these item db is inside your SQL if not..then load the item_db / item_db2 SQL script into your SQL there.. you can find both of it at the sql folder
  12. http://supportmii.com/ro1/Clients/ found 2010-11-24
  13. you can try this *gettime(<type>) This function will return specified information about the current system time. 1 - Seconds (of a minute) 2 - Minutes (of an hour) 3 - Hour (of a day) 4 - Week day (0 for Sunday, 6 is Saturday) 5 - Day of the month. 6 - Number of the month. 7 - Year. 8 - Day of the year. It will only return numbers. if (gettime(4)==6) mes "It's a Saturday. I don't work on Saturdays.";
  14. thx for the suggestion kaito...but i already fixed that ... i just dont want to use multiple array xP jus a simply calculation is needed to make sure it warp to the correct location
  15. is your client using custom font ? then diff a new client use default font... and if you want to use custom font.. make sure you find some font type that doesnt have small font size
  16. i just updated it a minute ago....refer the the post again.... it is just another variable name typo
  17. at here if(cash < getarg(@i)) { next; mes "You do not have enough cash."; mes "Please obtain ^FF0000" + (getarg(@i)-cash) + " more cash^000000."; close; } change all cash to #CASHPOINTS
  18. ops....several variable name wrong... find all .OriID .RareID and change to .@OriID .@RareID
  19. try this bonus2 bMagicAddSize,1,50; if( isequipped( 4365,4441 ) ) bonus2 bMagicAddSize,1,-30; while( isequipped( EquipID ) ){ sc_end SC_DOUBLECAST; sleep2 1000; }; edit the Equipment ID while( isequipped( EquipID ) ){ sc_end SC_DOUBLECAST; sleep2 1000; };
×
×
  • Create New...