Jump to content

Snap

Members
  • Posts

    186
  • Joined

  • Last visited

Posts posted by Snap

  1. Okay so it will be like this.

    I will make folder naming data?

    put my idnum2itemresnametable.txt inside it?

    Add to the GRF Factory?

    Repack and then put 2012-04-17-data-j1.gpf at the patch list?

    UP!

    Uppp.

    up

    up

  2. Ok when i tried to patch my

    idnum2itemresnametable.txt

    First i wrote it on my patchlist.txt

    100 1 GRF idnum2itemresnametable.txt

    and then i tried to upload the idnum2itemresnametable.txt on my patcher folder in the website

    and then when i click my patcher it patches but doesn't change my idnum2itemresnametable.txt

  3. 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;
    }

    Can i add more requirements?

×
×
  • Create New...