Jump to content

dave23

Members
  • Posts

    99
  • Joined

  • Last visited

1 Follower

Profile Information

  • Gender
    Male

Recent Profile Visitors

2488 profile views

dave23's Achievements

Poring

Poring (1/15)

  • Week One Done
  • One Month Later
  • One Year In

Recent Badges

0

Reputation

  1. dave23

    Mob DB SQL

    Yeah but the problem is, it's hard to add items in DB thru SQL since it's slow. My problem is that, hunting mission is not working fine and having a lot of script arguments. My concerns right now are: 1. How to add items easily in item_db? 2. Is it more secure to use SQL DB than TXT?
  2. dave23

    Mob DB SQL

    Hi, May I know if there's a way where I use mob db sql only instead of running all database?
  3. Hi, I have a hourly points npc but I want to put "You stayed in game for 1 minute" and so on so that players can monitor their playing time. How can I do it? //===== 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 #CASHPOINTS, #CASHPOINTS + .point_amt; dispbottom "You received "+.point_amt+" Kafrapoints by staying ingame for 1 hour"; dispbottom "Current Balance = "+#CASHPOINTS+" Kafrapoints"; set @consecutive_hour, @consecutive_hour + 1; //Check for 3 hours consecutive if(@consecutive_hour == 3) { set @consecutive_hour,0; set #CASHPOINTS, #CASHPOINTS + .cpoint_amt; dispbottom "You receive "+.cpoint_amt+" Kafrapoints in playing for 12 consecutive hours"; dispbottom "Current Balance = "+#CASHPOINTS+" Kafrapoints"; } addtimer .timer,"hourlypoints::OnPointGet"; end; OnInit: set .timer, 1000*60*60; //Timer in milliseconds. set .cpoint_amt, 10; //Points gained for consecutive time online. set .point_amt, 1; //Normal points gained. set .delay, 1000; //Delay for idle re-check check. set .dlimit, 60*5; //Stop points if afk greater then in seconds. } - script check -1,{ OnInit: bindatcmd "check",strnpcinfo(3)+"::OnCheck"; end; OnCheck: dispbottom "You have " +#CASHPOINTS+ " cash points."; end; }
  4. dave23

    Freebie NPC

    Hi, May I request a freebie npc wherein he will give item per account and if same account and other character, it will give item but lesser than previous one. Thank you.
  5. Hi, May I request for an Atcommand that gives cash points to all players in a certain map? Thanks!
  6. Need these. Thanks. up. need ragexe not ragexeRE for cash shop use.
  7. Hi Emistry, Thanks for answering my question. I can't even walk nor click any buttons on my client. I'm wondering if it's because of I diff my client using NEMO in windows 10.
  8. Here's my issue. 1. I can't even walk or click anything on my client. I used 2012-04-10 now. 2. I diffed my own client. I used data folder v4.0. 3. My chatbox are in gibberish up
  9. I tried to hex my client using that diff site but its not working. What happen was it does not open. It takes too long to open.
  10. Hi, I was able to retrieve my previous RO Client from my server. It is perfectly working which has 2010 07 30 version of client. I wonder why it doesn't work when I try to diff same client version on a windows 10 OS. Please help me thanks.
  11. Hi, I badly needed 2010 07 30 client and data that is fully working. I tried all my best in using search, download everything needed but still not working. Willing to pay here if it's working. Thankyou Regards, Dave 23
  12. I will try to test the lua files. I downloaded the data folder v 2.0 but it's not translated. BTW, I tried to diff my client by using NEMO patcher. Still I;m getting full screen even I change my resolution and after I close the client, the resolution in setup got blank.
  13. Hi, Anyone have working setup.exe for this client 2010-07-30? Also, does anyone have data folder and lua files compatible for 2010-07-30? I used Data v2.0 Thanks!
×
×
  • Create New...