Jump to content

Veracious

Members
  • Posts

    179
  • Joined

Everything posted by Veracious

  1. No grf support on rAthena, nice one Najara Previous topic I wonder if he's making a server or a grf. @SemperFidelis Well, if you want any help related to GRF, you can message me. I have some cool customized GRFs, had one with SPP removed just need to search it.
  2. Schwartzwald Pine Jubilee - Item ID# 12320 Box of Drowsiness - Item ID# 12031 Box of Resentment - Item ID# 12030 All these items are not functioning properly, even these and these too are not working as they should. These are some of the core WOE/BG/PVP items, i hope it gets solved at the earliest. SVN - 17704 - https://rathena.svn.sourceforge.net/svnroot/rathena/trunk/
  3. Go to trunk\db\pre-re open skill_unit_db.txt Search for 2317,0x86, , -1, 0, -1,enemy, 0x010 //LG_OVERBRAND Replace with //2317,0x86, , -1, 0, -1,enemy, 0x010 //LG_OVERBRAND Do the same inside trunk\db\re\skill_unit_db.txt
  4. http://rathena.org/board/topic/70962-recommended-client-setup/
  5. [sharpienero] How to: Make a ragnarok online private server [Part 1 - 2012] [sharpienero] How to: Make a client and get in-game [Part 2 - 2012] [sharpienero] How to: Assign Admins/Work w/ Groups.conf [Part 3 - 2012] [sharpienero] How to: Adding NPCs [Part 4 - 2012] I recommend these even if they're outdated, as video guides/tutorials are always better for starters.
  6. https://rathena.svn.sourceforge.net/svnroot/rathena/trunk/ disable 3rd jobs - http://rathena.org/board/topic/94757-instant-cast-not-working/?p=254224
  7. Hello! I wanted to know whether changing the guild capacity(click this) will affect the maximum BG Red/Blue team members too? For Example :- In BG Red team vs Blue team wont have members over 30 in each team if i set guild capacity to 30 or below?
  8. try - http://rathena.org/board/topic/94785-failed-to-connect-to-server/#entry254378
  9. Script from Toast of Doom's topic - http://www.eathena.ws/board/lofiversion/index.php/t186284.html //============================================================ //= Preview Item Script //===== By: ================================================== //= iHeart //===== Current Version: ===================================== //= 1.0 //===== Description: ========================================= //= A method to allow headgear sprites to be previewed without //= being 'stolen' //============================================================ prontera,155,156,5 script PreviewStuff 813,{ //save current look for later set @bottomview, getlook(3); set @topview, getlook(4); set @midview, getlook(5); //doesn't actually execute until just before a 'close' statement, or when the char leaves the npc's control addtimer 1000, "PreviewStuffGlobal::On_Leave"; INTRO: mes "Welcome to the preview NPC"; mes "Please input an itemID you would like to preview"; input @itemid; //modifies char's look based on item set @equip, getiteminfo(@itemid, 5); set @view, getiteminfo(@itemid, 11); if(@equip != -1 && @view > 0) { //note: yes...i'm using atcommand here cause for some reason // 'setlook' has permanent effects...last time i checked at least if(@equip & 1) atcommand "@changelook 3 " + @view; if(@equip & 256) atcommand "@changelook 1 " + @view; if(@equip & 512) atcommand "@changelook 2 " + @view; } next; mes "Would to like to preview something else?"; if(select("Yes", "No") == 1) { goto INTRO; } //*preview wears off automatically here due to delayed timer*// close; } - script PreviewStuffGlobal ,{ On_Leave: atcommand "@changelook 1 " + @topview; atcommand "@changelook 2 " + @midview; atcommand "@changelook 3 " + @bottomview; close; } One more similar script - http://rathena.org/board/topic/94401-just-need-a-item-preview-script/
  10. Hi, did you do these changes already? - http://rathena.org/board/topic/94785-failed-to-connect-to-server/#entry254378
  11. Hello! I tried to search where we can remove the delay between two guild skills casted at the same time. At the moment, its like when i use Emergency Call, i can't use Battle Orders, Restore, Regeneration, etc I want to keep 5 minute delay for all guild skills, but i want to remove the delay between two different guild skills usage. So, that i can cast all guild skills at one time and all will have 5 minute delay. I hope i have provided sufficient details for you to understand what i actually want. I think need to do some changes here :- // Blocks all guild skills which have a common delay time. void guild_block_skill(struct map_session_data *sd, int time) { uint16 skill_id[] = { GD_BATTLEORDER, GD_REGENERATION, GD_RESTORE, GD_EMERGENCYCALL }; int i; for (i = 0; i < 4; i++) skill_blockpc_start(sd, skill_id[i], time); } I tried to change these skills to passive guild skills, but doing this made the delay of these skills 0 like i could spam 100 skills(no cooldown). How do i make these skills trigger seperately? like each of these skills will have their own cooldown, not like 4 skills = 1 cooldown. How can i make it like 1 skill = 1 cooldown? so that players can use all guild skills seperately with cooldown.
  12. try ring_red.tga ring_blue.tga ring_yellow.tga there are more files just search for ring_ just check your customized grf, if it has these and its all white color/transparent in them, then its confirmed that the effect is removed because of your customized grf, so u just need to extract these files from data grf and replace them on your customized grf.
  13. Hello! I can create guild successfully already, please check my last post i've said twice what i actually want.
  14. have you added any customized GRF? mostly it should show those effects, those effects wont show only when you add a grf which includes those effects removed and place it above data rdata and your server grf.
  15. you need to turn on the effects using /effect if you wish to see the color.
  16. /guild and alt+g always give the message "That Guild Name already exists." even if i dont use space while creating guild, this is why i am using @guild. I also edited client by hexing to allow space usage while creating guild. So, now the only problem is @guild emperium requirement, let me clarify - if emperium is in inventory - it gets consumed and guild is created, if emperium is not in inventory - still players are able to make guild, i want them to make guild only when they have emperium using @guild.
  17. Hello! Since, /guild and alt+g guild create shows messages like "That Guild Name already exists." I've given @guild command to group level 0(normal characters). When they use @guild and have an emperium in their inventory, the emperium gets consumed. But, they're also able to create guild using @guild without the need of an emperium. I dont want them to create a guild without emperium. Anyone knows how to change this?
  18. #item "<char_name>" <item_id>
  19. I suggest you to use these grf tools GRF Editor - Many great features, i recommend this. Click the link to see the features and download. GRF Tool - Best GRF extractor around. Allow filter out directories and specify which filename format to choose when extracted. GRF Builder - GRF tool that works well when creating, merging or repacking grf. Go togrfbuilder.com for latest version or preview features.
  20. Wow, such a silly mistake, dint notice this for a week. My loading screens were loading00.jpg and at clientinfo it was loadingscreen00.jpg, hehe thanks for replying instantly its solved!
  21. Hello! I made some custom loading screens (loading00.jpg,.....,loading10.jpg). They are 1024x768 type JPEG. When i first added them they din't work, so later i had to edit the etcinfo.txt to :- loadingscreen# 11# It started showing the loading screens but i have a problem here :- loading screens only show up from @go 1 to @go 11(when you teleport to 10 different maps) later on it shows all black(no loading screen). Once all screens are done showing, they never repeat and instead nothing is showed i.e. full black. I've searched many different topics and tried doing what they said but it doesnt seem to work for me. If anyone knows more regarding this please help! I'm using 2012-04-10 client. My clientinfo looks like :- <?xml version="1.0" encoding="euc-kr" ?> <clientinfo> <servicetype>india</servicetype> <servertype>primary</servertype> <connection> <display>Welcome to Veracious Ragnarok Online!</display> <balloon>Enjoy your stay!</balloon> <desc>description</desc> <address>xxx.xxx.xxx.xxx</address> <port>6900</port> <version>30</version> <langtype>1</langtype> <registrationweb></registrationweb> <aid> <admin>2000000</admin> <admin>2000001</admin> <admin>2000002</admin> </aid> <loading> <image>loadingscreen00.jpg</image> <image>loadingscreen01.jpg</image> <image>loadingscreen02.jpg</image> <image>loadingscreen03.jpg</image> <image>loadingscreen04.jpg</image> <image>loadingscreen05.jpg</image> <image>loadingscreen06.jpg</image> <image>loadingscreen07.jpg</image> <image>loadingscreen08.jpg</image> <image>loadingscreen09.jpg</image> <image>loadingscreen10.jpg</image> </loading> </connection> </clientinfo>
  22. search for questid2display.txt in your grf
×
×
  • Create New...