Jump to content

Jedzkie

Script Developers
  • Content Count

    632
  • Joined

  • Days Won

    4

Everything posted by Jedzkie

  1. Thank you annie.. Working Great!
  2. Jedzkie

    map change

    just search guild_vs and change it to the name of your desired map.
  3. OnPCLoadMapEvent: while( getd( ".map_"+strcharinfo(3) ) ){ sc_end SC_ASSUMPTIO; message strcharinfo(0),"The assumption buff are disable in GvG/WoE maps."; end; } end; }
  4. Does Hercules supports also UDP?
  5. in db/re/mob_db.txt // Mechanic Fixed Autonomous Weapon Platforms 2042,SILVERSNIPER,Silver Sniper,Silver Sniper,100,4500,0,0,0,9,390,0,80,10,10,60,10,10,120,10,10,12,1,0,20,0x84,2000,504,1020,360,0,0,0,0,0,0,0,999,1000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 2043,MAGICDECOY_FIRE,Magic Decoy,Magic Decoy,100,2500,0,0,0,7,195,0,16,60,10,10,10,100,60,10,10,12,1,0,23,0x84,2000,504,1020,360,0,0,0,0,0,0,0,999,1000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 2044,MAGICDECOY_WATER,Magic Decoy,Magic Decoy,100,2500,0,0,0,7,195,0,16,60,10,10,10,100,60,10,10,12,1,0,21,0x84,2000,504,1020,360,0,0,0,0,0,0,0,999,1000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 2045,MAGICDECOY_EARTH,Magic Decoy,Magic Decoy,100,2500,0,0,0,7,195,0,16,60,10,10,10,100,60,10,10,12,1,0,22,0x84,2000,504,1020,360,0,0,0,0,0,0,0,999,1000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 2046,MAGICDECOY_WIND,Magic Decoy,Magic Decoy,100,2500,0,0,0,7,195,0,16,60,10,10,10,100,60,10,10,12,1,0,24,0x84,2000,504,1020,360,0,0,0,0,0,0,0,999,1000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
  6. I hope someone make a patch for it. Bump? Bump?!?!!? Bump!
  7. Hi! is it possible to make the quest system of Ragnarok is checking the level gap of the party members? for example.. i have a level 10 and joined a party of lvl 99, the kill of level 99 will not add kill of quest of level 10 unless they are not 10 levels gap. some of my players abuse this settings.. thanks! and i hope you can help me on this problem! specially AnnieRuru
  8. Hi! i already tried changing this: // High Jobs, Babies and Third for( i = JOB_NOVICE_HIGH; i < JOB_MAX && !found; i++ ){ if (strncmpi(message, pc->job_name(i), 16) == 0) { job = i; found = true; } } to this: // High Jobs, Babies and Third for( i = JOB_NOVICE_HIGH; i < JOB_MAX && !found; i++ ){ if (strncmpi(message, pc->job_name(i), 16) == 0) { job = i; found = true; } } Now, my problem is, i can still do job change to 3rd jobs.
  9. Hi annie.. how can i change the announce color?
  10. Jedzkie

    Stock NPC

    Hi GMOcean, thanks for your time... the settings are ok, but i want like this, starting amount for buy is 30000.. selling is 0.. if i sell 1 Red Potion, the buy amount will deduct and the sell amount will increase.. vise versa.
  11. Jedzkie

    Stock NPC

    challenge accepted; prontera,150,160,6 script HaiMarket 4_F_EDEN_OFFICER,{if(!$lock && !$stock) set $stock,30000;set $lock,1;set .item,512;set .price,10;if($stock){mes "I can sell "+ $stock +", how many do you wanna buy?";next; while(input(.@guess, 1, $stock)) { mes "[Woman]"; mes "Didn't you listen before? i can only sell up to "+ $stock; next; } mes "[Woman]"; { .@cost = .@guess * .price; if (Zeny<.@cost) {mes "you don't have enaf zeny"; close;} set Zeny,Zeny-.@cost; set $stock,$stock-.@guess; getitem .item,.@guess; mes "Well done."; } close;} else { mes "no more"; close;}} is this what you want? Nope. Mainly because I think he actually wants to have the NPC with a shop interface. And he also wants the NPC to be able to buy your items and place them on stock, and the script doesn't do that. I don't know if you can call a trader via the callshop script command. In that case you could call it with both the buy and sell buttons and know exactly whatever you've sold or bought from him (see docs). In case you can't, it's not possible to the best of my knowledge to have it all in one NPC because of not being able to call the trader. I haven't attempted yet to call a trader shop, but won't test it right now. Could someone else please? Thanks for the replies but i want no a NPC Shop, only a npc with a dialog..
  12. Jedzkie

    Stock NPC

    i already tried it but it does not fit my needs.. i want it buy and sell.. no time needed.
  13. Jedzkie

    Stock NPC

    Hi! can i request a stock npc? for example, the maximum stocks is 30000 if i buy a 1 Red potion worth 100z, the stocks will become 29999, then i will sell it by 50z. the stocks will become 30000 again.. thanks!
  14. Hi! which part of the source if every refine of a weapon adds a matk? thanks!
  15. But you can click the npc? what client are you using?
  16. please be specific on the word 'Nothing Happens'.
  17. LOL! as you can see, you disabled the script arug_cas01 in scripts_guild.conf. that's why the script not reads it.
  18. The server only supports upto ID#32767
  19. Yes hanged by id does not work. Have an example What does this npc? /* demonstrates Market Trader */prontera,150,160,6 trader HaiMarket 4_F_EDEN_OFFICER,{OnInit: tradertype(NST_MARKET); sellitem Red_Potion,-1,49; end;OnClock0000://resupplies red potions on midnightOnMyResupply: if( shopcount(Red_Potion) < 20 ) sellitem Red_Potion,-1,49; end;} What do you mean it does not work? you cannot click the npc?
×
×
  • Create New...

Important Information

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