Jump to content

casteryee

Members
  • Posts

    80
  • Joined

  • Last visited

Everything posted by casteryee

  1. Thanks all of you, my database is missing column. And I have solved the problem.
  2. [Debug]: at c:documents and settingsadministratormy documentsrathena_15725s rccharchar.c:1126 - SELECT `id`, `nameid`, `amount`, `equip`, `identify`, `ref ine`, `attribute`, `expire_time`, `favorite`, `card0`, `card1`, `card2`, `card3` FROM `cart_inventory` WHERE `char_id`=? LIMIT 100 : DB error - Statement not preparedI just got this in char server.
  3. For example, I have created red potion now, after I relog, item within my inventory has gone,
  4. Can anyone tell me if I changed in item_db.txt, then I reloaditemdb in game. Does it changed in MySql too?
  5. As title said, how to disable or enable 3rd job. I can't find any option for that. Revision 15686
  6. Can anyone share the 12 zodiac helm database, want to give it a try and make it into quest item. Thanks for helping me out.
  7. Kagerou and Oboro skills is not fully working since the official formula haven't released. But the sprites for Kagerou and Oboro are ready in Miruku Client and you can test it out with 3CeAM.
  8. @Derceto, thanks for helping me. I think they can't abuse this very much, since my points are for trade poring coins, and the ratio is 5:1. They can afk as much as they want, but of course not for vending and chatroom.
  9. Thanks, I just left the line that checking vending and chatroom. But is that possible to make only some maps available to get hourly point? To prevent afk characters in main town.
  10. I try shadow chaser with normal characters, I have surface paint within inventory. But when I use skill that needed surface paint, its stated "[Paint brush] is 0 are necessary. " How can I fix this problem. Anyone can help with this?
  11. 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; } If the lines above remain, will it check chatroom and vending?
  12. //===== Hourly Points Script ========================================= //===== By: ========================================================== //= nostafu //===== Current Version: ============================================= //= 1.3 //===== 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 12 hours consecutively //= or without logging out of the game. If the player is vending //= the script will then stop. //==================================================================== - script hourlypoints -1,{ //--Start of the Script OnPCLoginEvent: attachnpctimer ""+strcharinfo(0)+""; initnpctimer; end; OnTimer30000: //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; } //Check if Idle getmapxy( .@map$, .@x, .@y, 0 ); if(@map$ == .@map$ && @x == .@x && @y == .@y) { set @afk, @afk + 1; } //If move timer resets else { set @afk, 0; } set @map$, .@map$; set @x, .@x; set @y, .@y; //Idle Check for 5 Minutes if(@afk == 10) { dispbottom "The hourly points event stopped because you were idle for 5 minutes. Please relog if you wish to start again."; stopnpctimer; end; } end; OnTimer60000: set @minute, @minute + 1; //Check for 1 Minute if(@minute == 60){ set @minute,0; set .@point_amt, 1; //Points to get every hour (default: 10) set #KAFRAPOINTS, #KAFRAPOINTS + .@point_amt; dispbottom "You received "+.@point_amt+" Kafrapoints by staying ingame for 1 hour"; dispbottom "Current Balance = "+#KAFRAPOINTS+" Kafrapoints"; set @consecutive_hour, @consecutive_hour + 1; } //Check for 12 hours consecutive if(@consecutive_hour == 12) { set @consecutive_hour,0; set .@cpoint_amt, 10; //Points to get for 12 Consecutive hours (default: 50) set #KAFRAPOINTS, #KAFRAPOINTS + .@cpoint_amt; dispbottom "You receive "+.@cpoint_amt+" Kafrapoints in playing for 12 consecutive hours"; dispbottom "Current Balance = "+#KAFRAPOINTS+" Kafrapoints"; } stopnpctimer; initnpctimer; end; } //--End of the Script I want to ask, how to prevent stop run this script when idle for 5 minutes. I want to change it to if the player is online-ing, but not with @at and @afk command will keep obtain the point.
  13. Now I got rA files, so do I have to replace src folder or whole? ps. My server was opened for public~
  14. Not sure about this, because I'm using Miruku, no tested with others.
  15. You try @item 12622 see got the item or not. And with GM uniform, you cant see the mount sprite.
  16. @Aerie, I had tried to edit data.ini , nothing happened. @Arcenciel, You mean update my revision to latest? but how?
  17. 1) View on own character no problem with color and hairstyle. 2)When the others people look at you, you having different hairstyle and color. I got 2 grf-files with pallets inside, will that cause the problem? follow with attachment: a) View on my sight. b)View on different character
  18. I just found out my revision is without Frost diver formula, I had searched the forum, but there is none out there. Can someone shares about it?
  19. I realized that my server has damage penalty, but the gap is too weird. My archer when 40lv shot on munak did 2k damage, but when I 60lv, I did 4k damge. Is that look like weird or can configure it?
  20. I have a .PSD file with me, but I don't know how to use it. I saw in theme>data folder got a PSD file, so I planned to delete it and rename the PSD file to original 1. But nothing came out. Any people can help me out? sorry for bad english.
×
×
  • Create New...