Jump to content

Akbare

Members
  • Posts

    491
  • Joined

  • Last visited

  • Days Won

    4

Posts posted by Akbare

  1. thanks for read my thread

    i want to ask about custom weapon

    server : 3CeAM r659

    script db use from JUR item

    1250,Jur,Jur,4,19500,,800,125,,1,2,0x00001000,7,2,34,2,18,1,16,{},{},{}

    error2.png

    db.

    30014,twosword,twosword,4,19500,,800,125,,1,2,0x00001000,7,2,34,2,18,1,30014,{},{},{}

    30015,1onesword,1onesword,4,0,,0,100,,1,2,0x00001000,7,2,34,2,18,1,30015,{},{},{}

    error1.png

    error is Aspd

    if i change the view of these custom items ASPD can be normal and equal to the jur

    What can anybody help me solve this problem?

    thanks for advance /no1

    Hi, I believe its with the view id.. :)

    What i did with my custom weapons are use the same id of the same kind of weapon..

    So with your example, using a 2-hand sword, use two hand sword's id.. and i believe its 3

    Sprite of the weapons are read in the sprite folder for each jobs using the jobname(in korean)_ID#

    thanks for reply my thread /ok

    can give me an example

  2. thanks for read my thread

    i want to ask about custom weapon

    server : 3CeAM r659

    script db use from JUR item

    1250,Jur,Jur,4,19500,,800,125,,1,2,0x00001000,7,2,34,2,18,1,16,{},{},{}

    error2.png

    db.

    30014,twosword,twosword,4,19500,,800,125,,1,2,0x00001000,7,2,34,2,18,1,30014,{},{},{}

    30015,1onesword,1onesword,4,0,,0,100,,1,2,0x00001000,7,2,34,2,18,1,30015,{},{},{}

    error1.png

    error is Aspd

    if i change the view of these custom items ASPD can be normal and equal to the jur

    What can anybody help me solve this problem?

    thanks for advance /no1

  3. when the log in the game why some items not in kafra??

    but the item is in the table storage

    Did you increase MAX_STORAGE larger than 731 ?

    There was a change in r14503 "Too large client packets, which would otherwise cause the client to crash, are

    now dropped and reported. bugreport:4391"

    Possible solutions:

    - paged storage mod

    - decrease MAX_STORAGE to something smaller than 731

    yes my source storage UP to 731

    #define MAX_STORAGE 1000
    #define MAX_GUILD_STORAGE 1000
    

    oke thanks to reply, try it /no1

  4. thanks for reading my thread :)

    I would like to ask for help about the missing items in kafra

    SQL = ok there is no error [was in Optimize, repair]

    when the log in the game why some items not in kafra??

    but the item is in the table storage

    This error only occurs initially in an ID

    but on his way found another ID with similar problems

    SVN: r650 3CeAM

    Hexed: 2010-07-30

    error.png

    Thank you for helping /swt

  5. I want to create a custom script for the Alchemist class, but without a homunculus to enter the room, how to know??

    //====Masuk
    prontera,164,174,3 script Creation NPC 81,{
    if (zeny < 1000000) goto N_Zeny;
    if ( gethominfo(0) != 0 )goto N_homun;
    warp "ordeal_2-1",149,150;
    
    N_Zeny:
    mes "[Creation NPC]";
    mes "Maaf Zeny kamu tidak cukup untuk memasuki ruangan ini";
    close;
    N_homun:
    mes "[Creation NPC]";
    mes "Maaf kamu tidak boleh membawa homunculus";
    close;
    }
    //====Keluar
    ordeal_2-1,150,158,3 script Creation#exitctr 81,{
    warp "prontera",155,180;
    close;
    OnInit:
    waitingroom "Exit",0;
    end;
    }
    

    Ok works

    thanks for advance

×
×
  • Create New...