Jump to content

quesoph

Members
  • Content Count

    562
  • Joined

  • Last visited

  • Days Won

    6

Everything posted by quesoph

  1. quesoph

    Where is Ind?

    It's actually something much bigger than that :> Now I am curious.
  2. Maybe it meant cards like this: { Id: 4265 AegisName: "Li_Me_Mang_Ryang_Card" Name: "Jing Guai Card" Type: 6 Buy: 20 Weight: 10 Loc: 136 Script: <" bonus3 bAddMonsterDropItem,12033,RC_Angel,100; ">}, You can adjust drop rate in ../conf/battle/drop.conf and if you want custom drop for thanatos, you can adjust it in ../db/mob_item_ratio.txt
  3. try this fix http://url.ragna-play.com/h0
  4. bat_room,86,227,4 script Lieutenant Ator 4_M_KY_KNT,{ end;OnInit: waitingroom "Battle Station",11,"start#bat_b01::OnReadyCheck",1,0,80; end;OnEnterBG: set $@FlaviusBG1_id1, waitingroom2bg("bat_b01",10,290,"start#bat_b01::OnGuillaumeQuit",""); end;}bat_room,85,204,0 script Lieutenant Thelokus 4_M_CRU_KNT,{ end;OnInit: waitingroom "Battle Station",11,"start#bat_b01::OnReadyCheck",1,0,80; end;OnEnterBG: set $@FlaviusBG1_id2, waitingroom2bg("bat_b01",390,10,"start#bat_b01::OnCroixQuit",""); end;} I think you need to change the "11" there to "6" and these 10s to 5 if( .@Guillaume < 10 || .@Croix < 10 ) end;
  5. 1 SOLD for 60$ so prize will be reduced to 60$ to be fair.
  6. This is a free release. Please do not claim my work as yours. robotgloves.7z
  7. Di pa implemented ang skill ng rebellion.
  8. Try manual leveling. kill MVPs ( depends on your server's rate )
  9. .../src/common/mmo.h change: #define MAX_LEVEL to #define MAX_LEVEL 300 and recompile
  10. why not use something like this switch (select ( #AlootSet1ID1 != 0? "Item ID "+#AlootSet1ID1+" - ("+getitemname(#AlootSet1ID1)+")": "Add Item" ) )
  11. check your ../common/mmo.h 's PACKETVER and your Client Date if it match. #define PACKETVER clientdate
  12. ^ it will cause problem ofcourse. but it wont crash your client afaik.
  13. I haven't tried sakexe before but if you are using xray. you can add monster in monstrosity_tab.
  14. https://github.com/HerculesWS/Hercules/blob/master/src/common/mmo.h#L108 change to #define MAX_LEVEL 255 Renewal: https://github.com/HerculesWS/Hercules/blob/master/db/re/exp.txt Pre-Renewal: https://github.com/HerculesWS/Hercules/blob/master/db/pre-re/exp.txt modify base level here.
  15. ^ I had that idea earlier. /heh
  16. http://herc.ws/board/topic/152-obtaining-hercules/
  17. try to diff you client with CancelToLoginWindow.
  18. - shop dynamicshop -1,501:222new_1-1,45,77,4 script Donation Shop 685,{ mes "Do you want to to Donate?"; next; if(select("Why Donate:Buy Donate") == 1) { mes "Why Donate on our Server?"; mes "We dont force you to donate,it's your free will to donate"; close; } callshop "dynamicshop",1; npcshopattach "dynamicshop"; end;OnBuyItem: for ( set .@j, 0; .@j < getarraysize(.items); set .@j, .@j + 2 ) { for ( set .@k, 0; .@k < getarraysize(@bought_nameid); set .@k, .@k + 1 ) { if ( @bought_nameid[.@k] == .items[.@j] ) { if ( checkweight( @bought_nameid[.@k], @bought_quantity[.@k] ) ) { if ( countitem(.currency) < .items[.@j + 1] ) { mes "You don't have enough " +getitemname(.currency)+ " to purchase this item."; close; } else { delitem .currency, .items[.@j + 1] * @bought_quantity[.@k]; getitem @bought_nameid[.@k], @bought_quantity[.@k]; dispbottom @bought_nameid[.@k]+" "+ .items[.@j + 1]+" "+ .currency; end; } } else dispbottom "You cannot carry out more items with you"; end; } } } deletearray @bought_quantity, getarraysize(@bought_quantity); deletearray @bought_nameid, getarraysize(@bought_nameid); end;OnInit: set .currency, 7179; // pods setarray .items, 1750,1,1766,2; // Usage : <item id>,<price> npcshopitem "dynamicshop",0,0; for ( set .@i, 0; .@i < getarraysize(.items); set .@i, .@i + 2 ) npcshopadditem "dynamicshop",.items[.@i], .items[.@i+1]; waitingroom "Donation Shop",0; end;}
×
×
  • Create New...

Important Information

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