Jump to content

kerbiii

Members
  • Content Count

    342
  • Joined

  • Last visited

  • Days Won

    1

Reputation Activity

  1. Upvote
    kerbiii reacted to Patskie in help in script   
    if ( BaseClass == Job_Merchant && checkcart() ) { // talk}
  2. Upvote
    kerbiii reacted to Mumbles in how to reset stat and skill POINTS   
    You can set these player variables within your script, like so:
     
     
    SkillPoint = 0;StatusPoint = 42;
  3. Upvote
    kerbiii reacted to kyeme in help fix this script it wont start   
    Try to check the "mapflag nowarp" if you have this command, the warpparty will not work..
  4. Upvote
    kerbiii reacted to Slowpoker in guild checker   
    try it :
     
    if ((BaseLevel == 160) && (getcharid(2) == 1))
  5. Upvote
    kerbiii reacted to Patskie in help with this npc tia   
    I should instead use clearitem commands instead of loops and inventory list comand :
    *clearitem;This command will destroy all items the invoking character has in theirinventory (including equipped items). It will not affect anything else,like storage or cart. Back to business, If you want to delete cart items of an invoking player you need to run a sql query for that ( i think unless there is a command in hercules that deletes cart items ). You can add this to my script.
     
    Change : 
    mes "Where you want to warp?";next;input .@map$;Zeny -= 1000000;warp .@map$,0,0;close; to :
    if ( checkcart() ) { query_sql "SELECT `nameid` FROM `cart_inventory` WHERE `char_id` = '" +getcharid(0)+ "'",.@a; if ( .@a ) end;}mes "Where you want to warp?";next;input .@map$;Zeny -= 1000000;warp .@map$,0,0;close; Be sure next time you are more specific when you are requesting scripts. Not tested!
  6. Upvote
    kerbiii reacted to Uzieal in sc_config   
    // Structure of Database:// SC_NAME, flag//// 1 - SC cannot be removed by death.// 2 - SC cannot be saved.// 4 - SC cannot be reset by dispell.// 8 - SC cannot be reset by clearance.// 16 - SC considered as buff and be removed by Hermode and etc.// 32 - SC considered as debuff and be removed by Gospel and etc.// 64 - SC cannot be reset when MADO Gear is taken off. SC_CHASEWALK2  is currently in the database, you will still need to change the flag to your liking.
    SC_INC_AGI is also currently in the database, you will still need to change the flag to your liking.
     
    The rest are not there and to the best of my knowledge are not current skills and would need to be
    made custom, there are however similar skills which increase these attributes. 
     
    Also if you were going for the full flag it would be 127.
     
    To reload this one way is to save, close & restart your server.
  7. Upvote
    kerbiii reacted to Mumbles in Help with vellum kaltz script   
    Hi @kerbiii,
    It appears there is currently no proper method to execute this effect. I've gone ahead and started a new issue in the tracker regarding the change. Thanks for bringing this to our attention.
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.