Jump to content

Emistry

Forum Moderator
  • Posts

    10018
  • Joined

  • Days Won

    408

Everything posted by Emistry

  1. db/item_noequip.txt //Examples: //1201,1 you can't use KNIFE(ID 1201) on normal maps //608,4 you can't use Yggdrasil Seed(ID 608) on both GvG and WoE Castles //4174,6 Forbid Deviling Card in every PVP or GVG map, and during woes. //501,32 you can't use Red Potion on map marked as 'restricted zone 1' //502,64 you can't use Orange Potion on map marked as 'restricted zone 2' //503,128 you can't use Yellow Potion on map marked as 'restricted zone 3' // you can even mix modes //519,322 (256+64+2) you can't use Milk on PVP, and maps marked as 'restricted zone 2' and 'restricted zone 4' add the corresppond mapflag to your map....
  2. the input is limited here... /conf/script_athena.conf // Default value of the 'max' argument of the script command 'input'. // When the 'max' argument isn't provided, this value is used instead. // Defaults to INT_MAX. //input_max_value: 2147483647 input_max_value: 10000000
  3. http://emistry.googlecode.com/files/Class%20Swapper.txt
  4. http://rathena.org/board/topic/53320-%e2%99%a5-e-m-i-s-t-r-y-s-s-c-r-i-p-t-s-%e2%99%a5/page__view__findpost__p__65699
  5. No matter Indonesian / Melayu .....both just feel like the same.. as long as they use the proper spelling..everything will be fine.... Otherwise.....who the **** know what is he writing.... O.O ~
  6. Emistry

    Anime & Manga

    Well....i was King Of Fighter Fans before this ^^ Kyo Kusanagi !!! and Iori Yagami !!!! Just remember there was "Athena" inside it
  7. just wish those new pioneer from these country could pay some effect on this if they really willing to bring this up... ^^ i can see there is alot of users in ROCrew999 before..... just i dont like the way they posting xD wish they could improve it when they get her ^^ other thing ?? i think it is fine so far hahah
  8. In LucarCast's Script... the value come before "SZeny" is the Zeny Required....... in your case...you only put the Zeny as item requirement for that items.....
  9. yeah..i dont mind if they use shortform....but....they use too much..until sometime we cant even understand what they trying to said in their posts.... and..it is truely wasting time when come to this.... =='' i feel like they making a Puzzle and ask those other who trying to help them to Solve the Puzzle then ...only solve their problems..... they ....posting a "Encryted" message xD and ask to to "Decrypte" it before we can start solve it hahaha LOL
  10. case 1: callsub OnBuyItem,50,"SZeny",501,1,"announce"; i guess this should be the problems.... coz... there is no ItemID with 50.. i know that it is because you just wanna to sell that item using Zeny... but..Why not just using a Simple Zeny NPC Script ??? beside.. are you sure with this line ?? it work ? compare(""getarg(@i,0),...... perhaps it should be like this compare(""+getarg(@i,0),...... not sure is this what you try to achieve~
  11. I guess you should post it in english..even though you try to suggest for a new section for Malaysian / Indonesian / etc users .... the decide / suggest suppose to made together with other member as well.. not just users from those country ...>.<
  12. Erm..after i review back this script....i wonder i have forget something in this script...>.< the item is not...removed....>.< add this 2 line around the warp line there.... for( set .@i,0; .@i < getarraysize( .Item ) - 1; set .@i,.@i + 2 ) delitem .Item[ .@i ],.Item[ .@i + 1 ];
  13. try this prontera,155,181,5 script Sample 757,{ // What Item you want to Make ? set .GiveItem,5001; // Item Requirements + Amounts setarray .Item[0], 607,100, 608,50, 512,200; for( set .@i,0; .@i < getarraysize( .Item ) - 1; set .@i,.@i + 2 ) if( countitem( .Item[.@i] ) < .Item[.@i + 1] ){ for( set .@i,0; .@i < getarraysize( .Item ) - 1; set .@i,.@i + 2 ) mes "Need "+.Item[.@i + 1]+" x "+getitemname( .Item[.@i] ); close; } if( select("Make ^FF0000"+getitemname( .GiveItem )+"^000000:Cancel") == 2 ) close; for( set .@i,0; .@i < getarraysize( .Item ) - 1; set .@i,.@i + 2 ) delitem .Item[ .@i ],.Item[ .@i + 1 ]; getitem .GiveItem,1; mes "You have Make ^FF0000"+getitemname( .GiveItem )+"^000000"; announce "["+strcharinfo(0)+"] has made ["+getitemname( .GiveItem )+"]",0; close; }
×
×
  • Create New...