Jump to content

LuLu

Members
  • Posts

    398
  • Joined

  • Last visited

  • Days Won

    6

Everything posted by LuLu

  1. if you use iteminfo.lua --[[ Format: [itemID] = { unidentifiedDisplayName = "read the table name", unidentifiedResourceName = "sprite/act/texture filename when unidentified", unidentifiedDescriptionName = { "read", "the", "table", "name", } identifiedDisplayName = "read the table name", identifiedResourceName = "sprite/act/texture filename when identified", identifiedDescriptionName = { "read", "the", "table", "name", } slotCount = 0~4, ClassNum = viewID if headgear/weapon/robes(garment) put 0 if not for headgear's viewID see accessoryid.lua for weapon's viewID see weapontable.lua for garment's viewID see spriterobeid.lua } --]] check ClassNum, viewID for weapon.must match on what you want. ClassNum = 23 //for Rod ClassNum = 10 //for Staff
  2. check its class type/sprite.maybe it shows but uses the wrong sprite in your settings.
  3. try to make a new txt file and transfer my edit to that.i have no errors.tried it. or here test.txt
  4. check you script. there is a "?" in line 2. here. I removed it //================================= //= Created by -SkittleNugget- //= Email : [email protected] //================================= //= Hourly Points Script. //================================= //= Version 1.2 //================================= //= Notes: //= 1.0 - Initial Working Script. //- 1.1 - Removed messages. //- 1.2 - Added Easy Changeable Options as Requested by "Lil Troll~" (rAthena) //================================= - script Hour_Reward_Points -1,{ OnInit: set .TimeInMinutes,5; //Check at 5 Minutes set .WhatRewardHour,1; //Reward at 1 Hour set .ItemIDReward,12103; //Reward ID, 5012 set .ItemRewardAmount,1; //Reward Amount end; OnPCLoginEvent: dispbottom "Premio por Hora Online inicia, no te pognas AFK."; while(1) //Must Leave it run constantly. { sleep2 60000*.TimeInMinutes; //5 Minutes == Will Check Players activity after this time in milliseconds. if ( checkidle() > 300) //Check if player has been active or not. { if ( checkvending() == 2 ) end; //Check if Auto Vending. while ( checkidle() > 1 ) //Pause count while player is inactive, also checks for activity. sleep2 1000; } else { set .@ActiveTime, .@ActiveTime + .TimeInMinutes; //Count Total Time Active Within the hour. if ( .@ActiveTime == .WhatRewardHour ) //Player has been active for .WhatRewardHour throughout the login time. { mes "Por jugar mas de una hora continua has ganado un premio!."; close2; getitem .ItemIDReward,.ItemRewardAmount; //When Player has been active for One Hour set .@ActiveTime,0; //Reset Time Active. } } } OnPCLogoutEvent: end; }
  5. maybe their description is not yet known that's why its not yet translated.
  6. you can add them at item_db2.txt.also make sure that it's ID is viewable. Only specific item numbers for weapons can be viewed.
  7. i think this can be done via diff. just include "allow space on guild name"
  8. why not download the latest svn and just do a rollback?
  9. try this: { bonus bStr,readparam(bStr)/5; } just edit it for other values.
  10. edit orleans glove in item_db.txt (change this to your desired jobs. I'm not good with hex jobs sorry. 0x000FDFFE) 2701,Orleans_Glove,Orleans's Glove,5,20,,100,,0,,1,0x000FDFFE,58,2,136,,90,0,0,{ bonus bDex,2; bonus bMatkRate,3; },{},{} but changing this to 0xFFFFFFFF will make all jobs able to wear it.
  11. Sorry don't have much time to do this npc and to think about the whole script. This is time consuming. Sorry, but I think this can be done via query_sql("INSERT INTO `mail` ("modifications/actions here.........."); just select your sql info and start adding items like query_sql("SELECT account_id,char_id FROM ...... = variables here....") Sorry xD
  12. possible.just make a script that will run once a day per login and write down a mail via sql.
  13. try killing alot.i think it will level up eventually.
  14. in your screenshot, it seems it will still obtain exp because the bar is still on.
  15. I'm using 2013-08-07Ragexe. You can find alot of guides around. Just search.
  16. please use a text box or something. i'm just asking if you edited it?
  17. 2012-04-10 only supports SHOW aura at LVL 150 because that is the max level when that client is released. if you go beyond or over that lvl, you can only see your own aura and not others aura.
  18. LOL.sorry that's for other emulator. xD i mean db\re\job_exp.txt BTW Maria Ozawa. LOL also you exp bar in your screenshot still has the bar?
  19. maybe it's a packet error? what client do you use?
  20. like i said.drop those old schema at mysql. make a new schema and run those main.sql and logs.sql if i'm not mistaken. after that. you need to reconfigure "inter-server.conf" for hercules or "inter_athena.conf" for rAthena. and the login table username and password must must those in the "char_athena.conf" and "map_athena.conf" for rAthena ("char-server.conf" and "map-server.conf" for hercules). think of it as you'll setup the emulator from the start.
  21. yes. mySQL is your database. all save files are there.so drop them and make them again for a fresh start. also you have to reconfigure them
  22. drop those old schema and make a new one and run those sql script again? no need to reinstall mySQL.
×
×
  • Create New...