Jump to content

MasterToma

Members
  • Posts

    158
  • Credits

  • Joined

  • Last visited

  • Days Won

    5
  • Feedback

    100%

Community Answers

  1. MasterToma's post in Custom Drop spoil additional info in target window was marked as the answer   
    You need to edit
    npcgrp.dat skillgrp.dat skillname-e.dat  
    Take a look at those files, and see how skills are described there (e.g. x2 skill, which you can see into the mob's description). 
     
    I believe, there are should be some tools for this.
  2. MasterToma's post in Toma's C1 script compile problem was marked as the answer   
    You need to use python 2.7, and looks like you are using python 3.+
  3. MasterToma's post in L2OFF Exp loss formula was marked as the answer   
    double __cdecl GetExpDiePenalty(int level) { double levelFactor; // st7@1 levelFactor = 10.0 - (double)(level - 1) * 0.125; if ( levelFactor <= 4.0 ) { levelFactor = 4.0; } return -((double)(g_expPenalty[level + 1] - g_expPenalty[level]) * (levelFactor * 0.01)); } int g_expPenalty = { 0, // 0 0, // 1 68, // 2 363, // 3 1168, // 4 2884, // 5 6038, // 6 11287, // 7 19423, // 8 31378, // 9 48229, // 10 71202, // 11 101677, // 12 141193, // 13 191454, // 14 254330, // 15 331867, // 16 426288, // 17 540000, // 18 675596, // 19 835862, // 20 1023784, // 21 1242546, // 22 1495543, // 23 1786379, // 24 2118876, // 25 2497077, // 26 2925250, // 27 3407897, // 28 3949754, // 29 4555796, // 30 5231246, // 31 5981576, // 32 6812513, // 33 7730044, // 34 8740422, // 35 9850166, // 36 11066072, // 37 12395215, // 38 13844951, // 39 15422929, // 40 17137087, // 41 18995665, // 42 21007203, // 43 23180550, // 44 25524868, // 45 28049635, // 46 30764654, // 47 33680052, // 48 36806289, // 49 40154162, // 50 45525133, // 51 51262490, // 52 57383988, // 53 63907911, // 54 70853089, // 55 80700831, // 56 91162654, // 57 102265881, // 58 114038596, // 59 126509653, // 60 146308200, // 61 167244337, // 62 189364894, // 63 212717908, // 64 237352644, // 65 271975263, // 66 308443198, // 67 346827154, // 68 387199547, // 69 429634523, // 70 474207979, // 71 532694979, // 72 606322775, // 73 696381369, // 74 804225364, // 75 931275828, // 76 1108571463, // 77 1309482881, // 78 1535687304, // 79 1788937098, // 80 2071061777, // 81 0, // 82 }; C1 code right from IDA, for PvE. For PvP/PK/Sieges it's 1/4 of calculated value
  4. MasterToma's post in L2AuthD 40504 was marked as the answer   
    Why does it ask for l2comm... Write lin2db after cleaning the registry.
×
×
  • Create New...