Jump to content

Dev Blaze

Members
  • Posts

    212
  • Joined

  • Last visited

Everything posted by Dev Blaze

  1. Hi sir i setup already but still nothing happen when i respawn i refer to this issue click LINK
  2. how to fix this problem? Any patch diff??
  3. I try this script its not working any one help me The amount of HP a player will respawn with 50%HP and SP - script Heal -1,{ OnPCDieEvent: sleep2 1300; if(killerrid != getcharid(3)) { dispbottom "50% of Max HP/SP will be restored"; if(HP == 0); percentheal 50,50; } end; }
  4. Player.conf setting // The amount of HP a player will respawn with, 0 is default. // (Unit is in percentage of total HP, 100 is full heal of HP, 0 is respawn with 1HP total.) restart_hp_rate: 50 // The amount of SP a player will respawn with, 0 is default. // (Unit is in percentage of total SP, 100 is full heal of SP, 0 is respawn with 1SP total.) restart_sp_rate: 50 How to set On respawn, 50% of Max HP/SP will be restored.?? When i try to set restart_hp_rate: 50 the formula not working any idea how fix restart_hp_rate & restart_sp_rate? im using old revision thanks
  5. Hello check my message Rianna Ella Skype account thanks

  6. @Emistry i got this error
  7. Hello how much is i will buy this kind of headgear??

    WJXpvYx.png

  8. WJXpvYx.png

    How much your service for this Headgear? thanks advance merry christmas??

  9. WJXpvYx.png  How much your service for this Headgear? thanks advance merry christmas??

  10. Thanks I will try Awesome anti cheat
  11. Hello thanks i wil try this later thumbs UP +9 good for lowrate server
  12. rename your Exe "MyRO.exe" then save it again ConfigEmbeder
  13. Flux CP Design Original from GoRagna View File Design was made by aeroblax servicesv2.1. Original Price 200USD I am the owner and no other. I am selling this for the reason that I am not using it anymore. PSD and all other files you need are here. you can edit to what you want I don't have any problems with it. If you have any question please contact me: https://www.facebook.com/blaze.phyton Compatible: rAthena Emulator Submitter Dev Blaze Submitted 05/09/15 Category Garbage Bin Content Author  
  14. Closed this thanks Fixed
  15. Any idea? Every Hour you get reward points After 8 consecutive hours, rewarding will start all over again Rewards without Voting Events Triggered First Hour: 10 Rewards Points Second Hour: 20 Reward Points Third Hour: 30 Reward Points Fourth Hour: 40 Reward Points Fifth Hour: 50 Reward Points Sixth Hour: 60 Reward Points 7th Hour: 70 Reward Points 8th Hour: 80 Reward Points I thought this is script not working any posible script please help me.. thanks //===== Hourly Points Script ========================================= //===== By: ========================================================== //= GorthexTiger modified by Nibi //===== Current Version: ============================================= //= 1.0 //===== Compatible With: ============================================= //= Any eAthena Version //===== Description: ================================================= //= Get Points every successful hours of gameplay, you cannot get //= the points even if you miss a second or a minute. A player will //= get a very big bonus if they played 3 hours consecutively //= or without logging out of the game. If the player is vending //= the script will then stop. //===== Additional Comments: ========================================= //= You can modify the script to your liking. //= The default points is Kafrapoints change it anyway if you like. //= 1.1 = Check Chatting too //= 1.2 = 5 Minute Idle Check & @at/@autotrade check. //= 1.3 = Corrected the current balance line on 12 Hours Consecutive //==================================================================== - script hourlypoints -1,{ //--Start of the Script OnPCLoginEvent: addtimer .timer,"hourlypoints::OnPointGet"; end; OnPointGet: //while(checkvending() >= 1 || checkchatting() == 1 || checkidle()>=.dlimit) { //sleep2 .delay; //if(.@mes$=="") //dispbottom set(.@mes$,"The hourly points event haulted because you were vending, chatting, or idle."); //} set #KAFRAPOINTS, #KAFRAPOINTS + .point_amt; dispbottom "You received "+.point_amt+" Reward Cash Points by staying ingame for 1 hour"; dispbottom "Current Balance = "+#KAFRAPOINTS+" Reward Cash Points"; set @consecutive_hour, @consecutive_hour + 1; //Check for 2 hours consecutive if(@consecutive_hour == 2) { set @consecutive_hour,0; set #KAFRAPOINTS, #KAFRAPOINTS + .2cpoint_amt; dispbottom "You received "+.2cpoint_amt+" Reward Cash Points due to playing for 2 consecutive hours"; dispbottom "Current Balance = "+#KAFRAPOINTS+" Reward Cash Points"; } addtimer .timer,"hourlypoints::OnPointGet"; end; //Check for 3 hours consecutive if(@consecutive_hour == 3) { set @consecutive_hour,0; set #KAFRAPOINTS, #KAFRAPOINTS + .3cpoint_amt; dispbottom "You received "+.3cpoint_amt+" Reward Cash Points due to playing for 3 consecutive hours"; dispbottom "Current Balance = "+#KAFRAPOINTS+" Reward Cash Points"; } addtimer .timer,"hourlypoints::OnPointGet"; end; //Check for 4 hours consecutive if(@consecutive_hour == 4) { set @consecutive_hour,0; set #KAFRAPOINTS, #KAFRAPOINTS + .4cpoint_amt; dispbottom "You received "+.4cpoint_amt+" Reward Cash Points due to playing for 4 consecutive hours"; dispbottom "Current Balance = "+#KAFRAPOINTS+" Reward Cash Points"; } addtimer .timer,"hourlypoints::OnPointGet"; end; //Check for 5 hours consecutive if(@consecutive_hour == 5) { set @consecutive_hour,0; set #KAFRAPOINTS, #KAFRAPOINTS + .5cpoint_amt; dispbottom "You received "+.5cpoint_amt+" Reward Cash Points due to playing for 5 consecutive hours"; dispbottom "Current Balance = "+#KAFRAPOINTS+" Reward Cash Points"; } addtimer .timer,"hourlypoints::OnPointGet"; end; //Check for 6 hours consecutive if(@consecutive_hour == 6) { set @consecutive_hour,0; set #KAFRAPOINTS, #KAFRAPOINTS + .6cpoint_amt; dispbottom "You received "+.6cpoint_amt+" Reward Cash Points due to playing for 6 consecutive hours"; dispbottom "Current Balance = "+#KAFRAPOINTS+" Reward Cash Points"; } addtimer .timer,"hourlypoints::OnPointGet"; end; //Check for 7 hours consecutive if(@consecutive_hour == 7) { set @consecutive_hour,0; set #KAFRAPOINTS, #KAFRAPOINTS + .7cpoint_amt; dispbottom "You received "+.7cpoint_amt+" Reward Cash Points due to playing for 7 consecutive hours"; dispbottom "Current Balance = "+#KAFRAPOINTS+" Reward Cash Points"; } addtimer .timer,"hourlypoints::OnPointGet"; end; //Check for 8 hours consecutive if(@consecutive_hour == 8) { set @consecutive_hour,0; set #KAFRAPOINTS, #KAFRAPOINTS + .8cpoint_amt; dispbottom "You received "+.8cpoint_amt+" Reward Cash Points due to playing for 8 consecutive hours"; dispbottom "Current Balance = "+#KAFRAPOINTS+" Reward Cash Points"; } addtimer .timer,"hourlypoints::OnPointGet"; end; OnInit: set .timer, 1000*60*60; //Timer in milliseconds. set .2cpoint_amt, 20; //Points gained for consecutive time online. set .3cpoint_amt, 30; //Points gained for consecutive time online. set .4cpoint_amt, 40; //Points gained for consecutive time online. set .5cpoint_amt, 50; //Points gained for consecutive time online. set .6cpoint_amt, 60; //Points gained for consecutive time online. set .7cpoint_amt, 70; //Points gained for consecutive time online. set .8cpoint_amt, 80; //Points gained for consecutive time online. set .point_amt, 10; //Normal points gained. //set .delay, 1000; //Delay for idle re-check check. //set .dlimit, 60*5; //Stop points if afk greater then in seconds. }
  16. Hello Akkarin sorry i forgot i am not used with thenew forum setup new look btw thanks
  17. HP + 400 Reduce 50 HP Every 10 Level Error
  18. thanks Amazing script, thumbsUP for the release. [v1.7B]
  19. do not use s1& s2 same : ragnarok change it then restart your server
  20. Hello Kinkkynippscheck your email thanks
×
×
  • Create New...