Jump to content

HelloKekette

Members
  • Posts

    36
  • Joined

  • Last visited

Everything posted by HelloKekette

  1. Hello ! I want some help to do this : - open an NPC script if player says in general message "I'm here npcname". - How to play this song (ALL_WEWISH) when player speaks to npc ? Its a skill but i dunno if i can just play song. And the last one ! How script a question with the answer want ? With a check. cause i search in already existing script but a mistake in a word dont cause failed. I didnt find it in the script commands docu :s Thx ! PS : Sorry for my bad english
  2. Some player use autoskill (ifrit's ring with reflect stuff) to drop on mvp's slave or mobs. Add to this equipment/cards wich drops items, it turns into intensive farm while afk. Is there a way to prevent it ? My server have an anti-afk script (noloot after 2min if player afk) but this method bypass it. How to make the slave does not give item (even by cards) ?
  3. Best collection ever seen I have a question. How can i add shop to the 'Hunting Mission' ?
  4. //===== EinherjarRO Scripts ================================== //= Poring Power //===== By: ================================================== //= Stolao //===== Current Version: ===================================== //= 1.00 //===== Compatible With: ===================================== //= rAthena SVN //===== Description: ========================================= //= Porings are more fun~ //===== Comments: ============================================ //= N/A //===== Additional Comments: ================================= //= 1.00 Initial Make //===== Contact Ifo: ========================================= //= [Stolao] //= Email: [email protected] //============================================================ - script porsize -1,{ OnEventPor1: Getmapxy(.@m$,.@x,.@y,0); Areamonster .@m$,.@x+5,.@y+5,.@x-5,.@y-5,"--ja--",.mobid,2,"porsize::OnEventPor2"; End; OnEventPor2: Getmapxy(.@m$,.@x,.@y,0); Areamonster .@m$,.@x+5,.@y+5,.@x-5,.@y-5,"--ja--",.smobid,2,"porsize::OnEventPor3"; End; OnEventPor3: Set .count,.count+1; If(.count == 4){ areamonster .PlayMap$,.Area[0],.Area[1],.Area[2],.Area[3],"--ja--",.bmobid,1,"porsize::OnEventPor1"; Set .count,0; } End; OnInit: Set .TotalBig,100; Set .PlayMap$,"prt_fild08"; setarray .Area,50,50,500,500; Set .mobid,1002; //Spawning Random Sizes Set .bmobid,8000+.mobid; Set .smobid,4000+.mobid; Set .B,rand(.TotalBig)+1; Set .M,rand(.TotalBig-.; Set .S,.TotalBig-.B-.M; areamonster .PlayMap$,.Area[0],.Area[1],.Area[2],.Area[3],"--ja--",.bmobid,.B,"porsize::OnEventPor1"; areamonster .PlayMap$,.Area[0],.Area[1],.Area[2],.Area[3],"--ja--",.mobid,.M*2,"porsize::OnEventPor2"; areamonster .PlayMap$,.Area[0],.Area[1],.Area[2],.Area[3],"--ja--",.smobid,.S*4,"porsize::OnEventPor3"; End; } Thx if you can help me... So hard for me :s
  5. Hi ! Any solution to have an IP restriction on a NPC ? I found for restriction by account, but no ip check. I need a part of script to have : 14h of cooldown per account and IP (or only IP). Thank you !
  6. set .@party_id,getcharid(1); set .@ins_mas,getpartyleader(.@party_id,2); set .@p_name$,getpartyname(.@party_id); set .@p_reader$,strcharinfo(0); set .@md_name$,"Endless Tower"; set .@p_name2$,strcharinfo(0); getpartymember(.@party_id); set .@partymembercount,$@partymembercount; copyarray .@partymembername$[0],$@partymembername$[0],.@partymembercount; set .@etower_timer,checkquest(60200,PLAYTIME); // 1 week set .@dun_lim_time,etower_timer+85400; // 1 week set .@dun_cur_time,gettimetick(2); set .@dun_ent_t,(.@dun_lim_time - .@dun_cur_time); set .@dun_h,(.@dun_ent_t / 3600); set .@dun_m,(.@dun_ent_t - (.@dun_h * 3600)) / 60; set .@dun_s,.@dun_ent_t - ((.@dun_h * 3600) + (.@dun_m * 60)); In my example, you have 24h of cooldown (24x60x60) = 85400 = 24h
  7. http://trac.rathena.org/changeset/17375/rathena What about this ? It seems strange to have 100% safe upgrade (+14 or above for weapon lvl 1/2/3) on an equip which is already overupgrade... Have you got some details/source on this fix ?
  8. How can I switch Cash Point with War Badges with this script ? It runs if i do this : for ( .@i = 0; .@i < .@count; .@i++ ) { if ( attachrid .@account_id[.@i] ) #CASHPOINTS += 30; to for ( .@i = 0; .@i < .@count; .@i++ ) { if ( attachrid .@account_id[.@i] ) getitem 7773,20;
  9. Hi ! I'm looking a script for reward on connection. I looked for little and I just found npc which make that. Here is my little request: Each connexion give a bonus : - By day : 2 Gold - By week : 10 Gold - By Mounth : 35 Gold. I saw stolao and Emistry's script but .... too complicate for me xd I'm newbie in Scripting :s I fund this too : http://rathena.org/board/topic/86980-easy-custom-online-reward/#entry220541 I'm not sure if its a good start to my request... Special thanks to people who helps me Best regards ! ps : sorry for my bad english. im Polish !
×
×
  • Create New...