Jump to content

Emistry

Forum Moderator
  • Posts

    10018
  • Joined

  • Days Won

    408

Everything posted by Emistry

  1. http://pastebin.com/raw.php?i=s1cd4EYf
  2. OnPCLoginEvent: while( 1 ){ //code.......... sleep2 ( 30 * 60000 ); } end; remove the end after the FOR-LOOP in above script.
  3. read inside the script ... //Check if Vending (normal or @at) if(checkvending() >= 1 || checkchatting() == 1) { dispbottom "The hourly points event stopped because you were vending / chatting. Please relog if you wish to start again."; stopnpctimer; end; }
  4. try this. OnTimer60000: set @minute, @minute + 1; //Check for 1 Minute if(@minute == 60){ set @minute,0; set #consecutive_hour, #consecutive_hour + 1; // Every 2 Hours if( #consecutive_hour % 2 == 0 ){ getitem 7227,1; dispbottom "Gain 1 TCG for every 2 Hours online."; } if( #consecutive_hour % 24 == 0 ){ announce "You have online for 24 hours.",bc_self; set #CASHPOINTS,#CASHPOINTS + 100; dispbottom "Gain 100 Cash Points. Total : "+#CASHPOINTS; } } stopnpctimer; initnpctimer
  5. Emistry

    Vote NPC

    how you load the script ? are you using rAthena ? if you are not using rAthena, you have to restart or @reloadscript because, by default rAthena will load the OnInit part even though you load the npc using @loadnpc
  6. Emistry

    PVP Room :D

    everything you want can be limit / disable through the scripts......
  7. where you get your svn ... like i mentioned... rAthena dont have this.. and i do believe eAthena also dont have this... 3ceam ? same i bet it dont have.. ..... what mod did you apply ...? if you cant really provide sufficient informations, you will most probable get nothing as nobody know how they going to help you.
  8. are you sure with this variable ? a variable with "@" as prefix will be removed upon relog / logout ... i think a proper way should be look like this.. create a new SQL table , update the IP Address into the table.. and NPC will refer to this table before giving away the items.. or .. just make the item untradeable + permanent account variable... just to inform you that players are able to change the IP at anytime they want if they know how....
  9. http://pastebin.com/raw.php?i=2dmwAr0B http://rathena.org/board/topic/56440-bio-lab-card-trader/#entry65393
  10. please use search next time http://rathena.org/board/topic/66207-rathena-after-killed-mvp-client-crashes/ http://rathena.org/board/topic/68357-help-error-on-killing-mvp/page__p__124858__hl__tomb#entry124858
  11. monster ......................strnpcinfo(0)+"::OnMobDead";
  12. we dont have this enabled in rAthena.... https://rathena.svn....tle/battle.conf. i dont think you will get a proper support for this on here.
  13. try get a hint from this http://rathena.org/wiki/@go_delay_when_hit
  14. input .@Amount,0,#Points; if( .@Amount >= 1000 ){ mes "You cant input more than 1000"; close; }
  15. you can just find a similar type of item and edit the script .... in this case..you can copy it from Yggdrasilberry and edit the heal rate ............,0,5000,,300,,,,,0xFFFFFFFF,7,2,,,,,,{ percentheal 15,15; },{},{}
×
×
  • Create New...