-
Newb Questions
Hello there,
I'm new on ragezone and I started today on flyff server development.
I'm learning c++ to work with sources soon :blushing:
But from now i'm using/testing some resources.
And I have some newb questions:
♦How to change the penya rate?
I mean,the exactly penya drop from an specific mob/boss,because i changed the penya rate to 400x but the trazeia/elliun/bahara mobs drops penya sucks.
♦How to change the drop[Not the drop rate]?
Ex:I want to make Mutant Yetti drops FLY/FOR/FUN.
♦How to increase/add/remove spawn of mobs and decrease the time of respawn?
Ex:I have a custom map,how to add mobs on my map and increase the amount of spawn and decrease the time of respawn?
Ex²:On my custom map,there's a spawn of Drakul,how to remove it?
♦How to edit the effect of any item?
Ex:I want to change the effect of angel axe from dex+7/crit+20% to hp + 20%,how to do it?
♦How to fix/edit it?
http://i44.tinypic.com/10pdl3l.jpg
It happens when i go to everyplace,normally it would appear Collecting Area(i guess)
♦How to edit the collector field and the chance to collect items?
♦Can i add Colosseum using resource?
♦How to edit the siege?
Ex: I want to change the siege day/time to 3pm and 4 days per week
♦How to fix the crash at Basilisk?
When i go to Basilisk,my client crash,i'm missing any file? '-'
Well,That's all for now :love:
Please answer clearly because i'm newb :D:
Another question... *-*
To work with source,should i just start learning only c++? or i need to learn another?
Thanks :love:
-
Re: Newb Questions
Sir...
I've searched it for you... goodluck and enjoy reading :)
-http://forum.ragezone.com/f724/official-source-snippets-compilation-785509/
-http://forum.ragezone.com/f724/resource-files-756664/
-
Re: Newb Questions
Well, these questions are a bit different than the usual stuff in here.
♦How to change the penya rate?
♦How to change the drop[Not the drop rate]?
Both the above questions have to do with PropMoverEtc.txt
To find the correct monster, find the name in PropMover.txt.txt and get the code next to it.
Search for that code in PropMover.txt to get the monster ID at the beginning of the line that you find the code in (or, if viewing in Excel, the first cell in that row).
Search for that monster ID in PropMoverEtc.txt and there you have that specific monster's drops and behavior.
♦How to increase/add/remove spawn of mobs and decrease the time of respawn?
You need to find Flyff Beast - World editor, and learn how to use it.
♦How to edit the effect of any item?
This would be in PropItem.txt or, for v16 and above, SpecItem.txt
Find the correct columns for the bonuses and the values that go with them
♦How to fix/edit it?
That would be in the .txt.txt file for whatever 'world area' you were in. For example, most of the game is WdMadrigal. So find that in the world folder, and open the file ending in .txt.txt
♦How to edit the collector field and the chance to collect items?
I don't know how to edit the field itself, but the items in the collector are handled in s.txt
♦Can i add Colosseum using resource?
Absolutely not. You need source editing, although there is a step by step guide for adding it that requires no C++ knowledge.
♦How to edit the siege?
Guildcombat.txt
It's not hard to figure out if you look at it.
♦How to fix the crash at Basilisk?
2 ways to fix that, one easier than the other. The model itself has too many vertices for normal coding to handle. You either modify the source to handle more, or modify the model to remove some vertices. The model has over 4200 vertices (I forget the exact number) and the coding is setup for 4096.
To work with source,should i just start learning only c++? or i need to learn another?
The source is completely in C++. Running an actual server though, requires a website, which is HTML, PHP, etc. depending on what you want to use.
-
U can find some tutorial for few of ur questions w/ the search button.
Someone a few a go made a thread where explain so many things about resource, there i can find How to chang awks I think.