Jump to content

crazyarashi

Developer
  • Posts

    776
  • Joined

  • Last visited

  • Days Won

    22

Everything posted by crazyarashi

  1. Adding it in the item_combo_db would simplify it. :))
  2. I Believe the 3950+ above is free since most of those are jRO Mobs. Not really being used unless needed or so
  3. That's why you add every possible combination of your item in item_combo_db, please do read the guides :)) Ex. HATID:GLASSESID:RLEAFID:,{ bonus bStr,1; } CAPID:GLASSESID:RLEAFID:,{ bonus bStr,1; } HELMID:GLASSESID:RLEAFID:,{ bonus bStr,1; }
  4. HATID:GLASSESID:RLEAFID:,{ bonus bStr,1; } //Bonus stat not specified Just add every combination of your item id in item_combo_db.
  5. Yeah im currently working on the new boards ?
  6. Did you add it correctly to your mob_db? :))
  7. Just go interested on patcher design a week ago and tried to make one as a test ? I like simple stuffs so it ended up very simple. Feel free to rate and give suggestions!
  8. I believe that is not a rA script, so here. 1@gef_in,74,144,3 script Casino Employee 109,{ .@EXT = 7539; mes "[Casino Employee]"; mes "Welcome to Jazeera Casino."; mes "Casino entry cost: ^0000FF3 "+getitemname(7539)+"^000000."; next; if(select("Enter Casino:Cancel") == 1){ if(countitem(.@EXT) < 3){ mes "[Casino Employee]"; mes "You don't have enough ^0000FF"+getitemname(.@EXT)+"^000000."; close; } mes "[Casino Employee]"; mes "Let's go!"; delitem .@EXT,3; warp "1@gef_in",68,170; end; } mes "[Casino Employee]"; mes "Okay, have a nice day."; close; }
  9. make sure the ID you added in the clientinfo is the same as the Admin Account you're using. <aid> <admin>2000000</admin> <admin>2000001</admin> </aid>
  10. I think he patched the remove GM sprites in nemo. You need to repatch your client again without adding the remove gm sprite patch :))
  11. The way you explained it is very confusing. please do elaborate it :))
  12. //= To Define Client Version //= #define PACKETVER 20151104 [Client Date] Ex. #define PACKETVER 20170517 //= To Define Packet Obfusction #define PACKET_OBFUSCATION //= Disable Packet Obfusction //#define PACKET_OBFUSCATION you don't need to add this anymore just add your client date to the #define PACKETVER and be sure to recompile.
  13. you are lvl 500 with 600+ flee try to increase the hit of your ifrit.
  14. There is no packet_db_ver anymore, to edit the packet version you can find it at src/config/packets.h and make sure you diff it to match your configuration (Packet Obfuscation)
  15. I believe that Food buffs/negative status always go to the last part of your status :))
  16. atcommand.cpp ACMD_FUNC(storage) { nullpo_retr(-1, sd); if (sd->npc_id || sd->state.vending || sd->state.buyingstore || sd->state.trading || sd->state.storage_flag || pc_isdead(sd)) // Add pc_isdead(sd) ACMD_FUNC(go) { if (status_isdead(&sd->bl)){ // Add this line to your @go atcmd clif_displaymessage(sd->fd,"You can not use this command while dead."); return 0;
  17. Firstly you need to make your own grf, i suggest using this translation files Zackdreaver Translation Files. and you know to download a client client and Diff it with Nemo. 2015-11-04a is suggested, it's a stable client.
  18. OnSellItem: set .@TotalEarn,0; for(set .@j,0; .@j < getarraysize( .bitem ); set .@j,.@j+1) if( @sold_nameid[.@i] == .bitem[.@j] ) { set .@TotalEarn,.@TotalEarn + ( .bprice[.@j] * @sold_quantity[.@i] ); set Zeny,Zeny + .@TotalEarn; for(set .@i,0; .@i < getarraysize( @sold_nameid ); set .@i,.@i+1) delitem @sold_nameid[.@i],@sold_quantity[.@i]; close; } else { mes "Sorry I dont buy that kind of item"; close; } setarray .bitem[0],501,502; //== Item setarray .bprice[0],1000,2000; //== Item Price [Sell] A Simple One. :))
  19. crazyarashi

    ASPD

    That's because of the ASPD penalty of weapons..
  20. All the cases above odins power will be affected by the effect. SR_GENTLETOUCH_ENERGYGAIN: case SR_GENTLETOUCH_CHANGE: case SR_GENTLETOUCH_REVITALIZE: case GN_CARTBOOST: case ALL_ODINS_POWER:
  21. Why not just use the channels for the main chat ?
  22. Since you're from Australia. I suggest using OVH. Currently they have promo for your region. OVH Australia
×
×
  • Create New...