1 Attachment(s)
[Question] Just got some questions to ask.
Question 1: is it possible to add a new 'Seal'? For example Seal of Light, but at the same time not replace SoS, SoM or SuN , or Magic/rare/legend.
Question 2: Ive attached a screenshot of Alexandria region map. I would like to know which section of the server should i have enabled and disabled to have the following region as is. Whats circled in red is disabled , and whats in green enabled.Attachment 141389
Question 3: In the database , lets say i wanna rename all database names. Does every single procedure needs to be modified with new name , or just some ? If some mind saying which ones before i go crazy searching for them ? :drool:
Question 4: Lets say I am making a new Attack Pet. That pet levels up. If you are doing a level 100+ cap server thats a lot of level data to copy inside the database. Is there any way to import data from a txt file into the database? Like that so it does not have to be done manually by hand ?
Re: [Question] Just got some questions to ask.
Quote:
Originally Posted by
P0kemonMast
Question 1: is it possible to add a new 'Seal'? For example Seal of Light, but at the same time not replace SoS, SoM or SuN , or Magic/rare/legend.
Yes, you can create your own Seal without replacing existing ones.
Question 2: Ive attached a screenshot of Alexandria region map. I would like to know which section of the server should i have enabled and disabled to have the following region as is. Whats circled in red is disabled , and whats in green enabled.
Attachment 141389 If you want to enable the Red area's go to _RefRegionBindAssocServer in your shard database and enable KingsValley, Delta, SD, Pharaoh, Temple.
Question 3: In the database , lets say i wanna rename all database names. Does every single procedure needs to be modified with new name , or just some ? If some mind saying which ones before i go crazy searching for them ? :drool:
Yes you will have to search the procedures and change the database names in them all where its needed, luckily i posted how to search for strings in procedures the other day. Link here [Guide] Search procedures for string values - RaGEZONE forums
Question 4: Lets say I am making a new Attack Pet. That pet levels up. If you are doing a level 100+ cap server thats a lot of level data to copy inside the database. Is there any way to import data from a txt file into the database? Like that so it does not have to be done manually by hand ?
Yes, just grab the level data from other pet's level 1-100 modify the codename of it to your pet your making and change the rest of the data needed and import those to the database. Even a few thousand lines is nothing to import to the database :)
Hope i helped ;)
Re: [Question] Just got some questions to ask.
Question 3 yes i saw that thread of yours yesterday :P . I am still wondering on how question 1 is possible lol. Question 4 how is it possible to import lets say 1000 lines into database automatically in a single try ? lol
Re: [Question] Just got some questions to ask.
For question 1, I'll post a thread in a few days when im not busy and show you how its done. For question 4, You could go to the _RefLevel table for instance and select all the rows and copy and paste them into a new table or txt file. Same goes with copying stuff out of a txt file into the database as long as its formatted correctly.
Re: [Question] Just got some questions to ask.
so lets say i have 100 rows in a txt file all formatted correctly how they should be in the table. If i select all and copy them, then paste them in the table it would paste every single row in its single row in the table ?
Re: [Question] Just got some questions to ask.
yeah, it will put them all in the database if its formatted correctly. Just make sure there's no spaces in the text files use TAB instead.