Jump to content

Emistry

Forum Moderator
  • Posts

    10018
  • Joined

  • Days Won

    408

Everything posted by Emistry

  1. use older client .... ex. 2010-07-30 http://rathena.sourceforge.net/tools/diff_patcher.php?client=2010-07-30aRagexeRE
  2. OnMinute00: .event_timer++; if( .event_timer % 8 == 0 ) end;
  3. basically it's work the same... probably mine will be resource saving i guess.. ? you dont have to keep checking for this part isequippedcnt( 4357,4359,4361,4363,4365,4367,4457,4463,4462,4459,4456,4458,4441,4408,4430,4263,4403,4419,4376,4399,4407,4451 ) it's the behaviour of rAthena that it will run all the stuff inside the if( .... ) conditions. since you dont need to check that part...so just avoid from running it.
  4. @GMOcean i see .... addrid ...didnt noticed this..because rarely use this command. xP for your method about adding item to inventory / storage .... it's actually a bad idea sometime. ( at least i think so ) because .. what will happen ? if their storage / inventory full ? =) beside, storage might get bugged since someone alway store tons of equipment in storage. ( current bug that not yet solved in any emulator when storage capacity above 600 ) but i think it would be good to insert the rewards into MAILBOX ... there could be several way to do this too xD since nobody trying to do it..so i just show a simple example, perhap this could help them to try starting to learn an try it too.. ** i leave the IP check part let other member to try it. =) if anyone feel free to try it...go on ... it would be kinda boring if everytime also same members/mods who do all these script supports .... hope to see some new face pop out somewhere in the forum ... hehe
  5. function script Sample { if( !agitcheck() && !agitcheck2() ) // <--------- ADD THIS if( isequippedcnt( .......... ) > 2 ){ mes "....."; } return; }
  6. refer Custom_Items edit the Loc part. (2^10) 1024 = Styles Upper headgear (2^11) 2048 = Styles Middle headgear (2^12) 4096 = Styles Lower headgear
  7. it's npc name.....search through the whole npc folder.
  8. else if( Zeny < .zeny_req ) { next; mes "[Bidder]"; mes "You don't have enough Zeny."; close; } Zeny -= .zeny_req; change to else if( #CASHPOINTS < .zeny_req ) { next; mes "[Bidder]"; mes "You don't have enough Cashpoint."; close; } #CASHPOINTS -= .zeny_req;
  9. like this ? http://upaste.me/r/028018 db/re/item_db.txt // ......{ callfunc "GuildReward"; },{},{}
  10. http://subversion.assembla.com/svn/ClientSide/Lua_Project/System/itemInfo.lua
  11. set #Points,#Points + 1; if you want to use random point...refer rand
  12. monster .Map$,0,0,"NAME",1906,1,strnpcinfo(0)+"::OnKilled";
  13. something like this?? https://rathena.org/board/index.php?/files/file/2498-%7B?%7D/
  14. monster .Map$,0,0,"NAME",1906,1,strnpcinfo(0)+"::OnKilled";
  15. compare the item in inventory with the equipment you wearing at your equipment window.
  16. i didnt saw any part in the script that change your characters into swordman .... probably you have other script that caused this ??
  17. should be OnKilled: set #Points,#Points + rand(1); monster .Map$,0,0,1906,1,strnpcinfo(0)+"::OnKilled"; dispbottom "You Currently Have " +#Points +" Greedy Points"; end; guild_vs5,0,0,0,0 monster Greedy Barricade 1906,10,0,0,"Points Manager::OnKilled"
  18. this ? http://subversion.assembla.com/svn/ClientSide/Translation_Project/
  19. conf/battle/misc.conf#L102 // Set this to the amount of minutes autotrade chars will be kicked from the server. at_timeout: 0
  20. renewal drop rate adjust the droprate of monster based on player's level and monster's level gap.
  21. i think it's because they didnt set the Default Browser as Google Chrome.
  22. player_point++; if( player_point == 5 ){ getitem 999,1; mes "Get item."; }else{ mes ""+player_point; } close; like this ?
  23. you mean something like this ?? http://upaste.me/r/972671
  24. it's using the same map with this.. http://ratemyserver.net/npc_shop_warp.php?map=gef_dun03&re_mob=1&small=1 you can just simply duplicate this map ....
×
×
  • Create New...