Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 08/30/22 in all areas

  1. Theres a few section there. find it. if Pre-renewal, it will shows Pre-Renewal part remove all # that highlighted until reach level 255. Change MaxBaseLevel to 255 since that what you want, and insert the jobs that u want to reach that level in 'Insert jobs here'. you can see example in db/pre-re/job_stats.yml originally. Example : Knight: true Same goes to job level, edit MaxJobLevel, insert jobs, uncomment until the level that u want to reach. search until u find for HP and SP and do the same too.
    1 point
  2. prontera,150,188,5 script Color Machine 100,{ cutin "color_machine_0", 2; if ( countitem(7227) < 5 ) { mes "you must have at least 5 TCG to play"; close2; cutin "", 255; end; } mes "how many TCG you want to play ?"; mes "minimum to bet = 5"; next; input .@input, 5, countitem(7227); mes "betting = "+ .@input; mes "choose a color"; next; .@s = select( "Red", "Green", "Blue", "Yellow" ) -1; .@r = rand(4); .@loop = .@r + 4*5 +1; // 4 choices * 10 loops for ( .@i = 0; .@i < .@loop; .@i++ ) { cutin "color_machine_"+( .@i%4 +1 ), 2; sleep2 250; } if ( .@s == .@r ) { mes "Correct !"; getitem 7227, .@input; } else { mes "Wrong"; delitem 7227, .@input; } close2; cutin "", 255; end; }I got a pm regarding this topic, so I want to say somethingin this script request section we supporters only write the system if you want this npc looks more interesting, you have to learn how to edit the dialog like add mes,next,progressbar ... these stuff you have to do it yourself if you edited this script and its not working, feel free to post your edited script in script support section
    1 point
  3. I used to have the following items on a server i ran: 19025, 'levelup_carnation', 'Levelup Carnation', 2, 5000000, 10, 100, NULL, 0, NULL, NULL, 2147483647, 7, 2, NULL, NULL, NULL, NULL, NULL, 'set baselevel,baselevel+1;', NULL, ''; 19026, 'levelup_flower', 'Levlup Flower', 2, 5000000, 10, 100, NULL, NULL, NULL, NULL, 2147483647, 7, 2, NULL, NULL, NULL, NULL, NULL, 'set joblevel,joblevel+1;', NULL, ''; Hope this helps.
    1 point
  4. or like this ? - script panpanlelapin -1,{ OnInit: bindatcmd "randomdisguise",strnpcinfo(3)+"::OnAtcommand",60,60;// your min gmlevel .min_mobid = 1002; .max_mobid = 2000; .blacklist$ = "|1200|1201|1203|";// you don't want these mobs end; OnAtcommand: do .@mobid = rand( .min_mobid,.max_mobid ); while( compare( .blacklist$, ("|"+ .@mobid +"|") ) || getmonsterinfo( .@mobid,MOB_LV ) == -1 ); disguise .@mobid; end; }
    1 point
×
×
  • Create New...