Register for your free account! | Forgot your password?

Go Back   elitepvpers > MMORPGs > Rappelz > Rappelz Private Server
You last visited: Today at 14:34

  • Please register to post and access all features, it's quick, easy and FREE!

Advertisement



[Script]Hybrid Warlock

Discussion on [Script]Hybrid Warlock within the Rappelz Private Server forum part of the Rappelz category.

Reply
 
Old   #1
 
elite*gold: 0
Join Date: Aug 2011
Posts: 185
Received Thanks: 33
[Script]Hybrid Warlock

Hi .

First excuse me for my bad English .

I wrote the script so that the Warlock made ​​the advantage of the characteristics of many Pet .

just past the script in DB (Arcadia).


Quote:
use arcadia
update dbo.SkillTreeDisplay
set skill1_id = '45207'
where (job_id = '313') And (slot_v='4')

use arcadia
update dbo.SkillTreeDisplay
set skill5_id = '45221'
where (job_id = '313') And (slot_v='4')

use arcadia
update dbo.SkillTreeDisplay
set skill2_id = '45207'
where (job_id = '313') And (slot_v='6')

use arcadia
update dbo.SkillTreeDisplay
set skill4_id = '45221'
where (job_id = '313') And (slot_v='6')

use arcadia
update dbo.SkillTreeDisplay
set skill1_id = '45108'
where (job_id = '313') And (slot_v='7')

use arcadia
update dbo.SkillTreeDisplay
set skill3_id = '45115'
where (job_id = '313') And (slot_v='7')

use arcadia
update dbo.SkillTreeDisplay
set skill5_id = '45415'
where (job_id = '313') And (slot_v='7')

use arcadia
update dbo.SkillTreeDisplay
set skill2_id = '45215'
where (job_id = '313') And (slot_v='8')

use arcadia
update dbo.SkillTreeDisplay
set skill4_id = '45515'
where (job_id = '313') And (slot_v='8')

use arcadia
update dbo.SkillTreeDisplay
set skill1_id = '45423'
where (job_id = '313') And (slot_v='9')

use arcadia
update dbo.SkillTreeDisplay
set skill5_id = '45523'
where (job_id = '313') And (slot_v='9')
Don't forget reset the server .

Enjoy
Modamer9 is offline  
Old 12/25/2011, 17:06   #2
 
falkenman's Avatar
 
elite*gold: 0
Join Date: Oct 2011
Posts: 251
Received Thanks: 4
nice work ty.
falkenman is offline  
Old 12/25/2011, 17:13   #3

 
Musta²'s Avatar
 
elite*gold: 1
Join Date: May 2011
Posts: 542
Received Thanks: 421
You can try adding skills you want to "323" (Fiend)

so you won't replace any skills from the basics

but, it will only work with "learn_all_skill" That's why you need a script to skills them to someone at NPC.''i think i'm starting one ^^".

anyway ty for the good work.
Musta² is offline  
Old 12/25/2011, 20:15   #4
 
elite*gold: 0
Join Date: Oct 2011
Posts: 184
Received Thanks: 27
Correct me if I'm wrong, but i assume this is in reference to the skill tree of each class? But if my knowledge serves me right, isn't this client sided? So I don't think making this change to your database will make this work in game.
superiorflame is offline  
Old 12/25/2011, 20:37   #5

 
Musta²'s Avatar
 
elite*gold: 1
Join Date: May 2011
Posts: 542
Received Thanks: 421
Quote:
Originally Posted by superiorflame View Post
Correct me if I'm wrong, but i assume this is in reference to the skill tree of each class? But if my knowledge serves me right, isn't this client sided? So I don't think making this change to your database will make this work in game.
it does need some client mod, so if you learn skill "Fear Trap" and you replaced it with "Angel unity" in database, it will look like Fear Trap in the client , but when you learn it you'll get Angel unity, so the best way to get the skills without effecting is via learning it with learn_skill command, you can script it to an NPC.

hope i made clear :P

MuStA.
Musta² is offline  
Old 12/25/2011, 20:48   #6
 
elite*gold: 0
Join Date: Oct 2011
Posts: 184
Received Thanks: 27
Yes I know all this but I still don't see the point of changing the skills of the skill tree display so yes the learn skill command would be the way to go, y not use the skilltreeresource table, don't see much of a point using the displaytable.
superiorflame is offline  
Old 12/26/2011, 16:03   #7
 
elite*gold: 0
Join Date: Oct 2011
Posts: 6
Received Thanks: 1
Sounds like a good way to screw up and mangle your database
xXLĝG4nXx is offline  
Thanks
1 User
Old 12/26/2011, 19:02   #8
 
urusendayo's Avatar
 
elite*gold: 0
Join Date: Jan 2009
Posts: 250
Received Thanks: 145
Yeah, the skill will not show up unless you mod the client. You can, however, use an lua work around. The skills still wont show up in the skill tree, but, you can use level triggers to give specific classes new skills.
Here's a little example:

Code:
function learn_learn_skill_example()
	local maxlvl = gv( "max_reached_level" )
	local class = gv("job")
		if class == *** and maxlvl == *** and permission == 0 then
			set_value("permission",  1)
			learn_skill("xxxx")
			set_value("permission",  0)
end
end
The "learn_skill" function will give one level to any skill. This works best with the max_rached_level trigger and in the on_player_level_up.lua. This is also the function we use at Montes Rappelz to give level 3 creature control to all non-summoner classes and level 6 to summoners. Using this script would eliminate the need to mod the skill tree, however, if you wanted to replace the skills, you'd probably be best off going with MuSTA's suggestion. Hope it helps.
urusendayo is offline  
Thanks
1 User
Old 12/26/2011, 19:13   #9
 
elite*gold: 0
Join Date: Oct 2011
Posts: 184
Received Thanks: 27
That is a similar code I'm working on atm ursendayo, having remembered I saw this feature somewhere else been working to implement it on mine. I have it working just using a diff set up.
superiorflame is offline  
Old 12/27/2011, 07:42   #10
 
urusendayo's Avatar
 
elite*gold: 0
Join Date: Jan 2009
Posts: 250
Received Thanks: 145
Quote:
Originally Posted by superiorflame View Post
That is a similar code I'm working on atm ursendayo, having remembered I saw this feature somewhere else been working to implement it on mine. I have it working just using a diff set up.
Send me a pm. I'd be more than glad to help you out with your script, if you need.
urusendayo is offline  
Reply


Similar Threads Similar Threads
WARLOCK full int or hybrid?
12/11/2019 - SRO Private Server - 16 Replies
I started a warlock on ESRO, it very cool build indeed, but i cant decide should i stay pure int, or mby i need to make a hybrid? And as a hybrid which ratio ppl mostly use i mean is it 9:1 or 8:1 or 7:1 or .... ? I was also planing to use Light Armor cuz my 2nd is cleric? As warlock/cleric with light armor pure int or hybrid thats the question? Tnx
Hybrid warlock?
02/03/2011 - Silkroad Online - 14 Replies
Hello, there are many topics that hybrid warlock is way better than pure int, but I never saw any hybrid, so I really don't know if it really works. If anyone know any good video or something can you pls post link to it... Next question is how much str I should add on my warlock (65 currently pure int)??? Ty for sharing you'r knowledge.;)
Warlock hybrid ( 35 str points), not enough mp ?
01/31/2011 - Silkroad Online - 9 Replies
Hi, I am making a warlock/cleric hybrid with 35 str points, now i've heard that i'll got problems with the MP usage of the 110 skills, is this true?
WTS warlock cleric FF 100 and hybrid int lvl 94
04/14/2010 - Silkroad Online Trading - 36 Replies
Ok, so my char got deleted from ebay which was stupid. How can ebay.de still sell things and gold companys? -.- Current offers: $160 (bmugix) (epvp), $140 (SPIDER_NET), 150$ (Alex_Magno), 2.3 bill gold (Tokuya) on Alps. here's the pics again for my warlock on alps: ImageShack Album - 25 images The warlock has 3 avatars with extra parts for the back and head. Devil spirit B on there. A pet pick up pig. 122k sp left! Edit:
Warlock/cleric hybrid?
11/02/2009 - Silkroad Online - 27 Replies
Hey guys I was messing with char builder and thought I should share my ideas Lv.100 no hp/int = 119 str 119 int 297 Statpoints Phy 51% Mag 27%



All times are GMT +2. The time now is 14:34.


Powered by vBulletin®
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
SEO by vBSEO ©2011, Crawlability, Inc.
This site is protected by reCAPTCHA and the Google Privacy Policy and Terms of Service apply.

Support | Contact Us | FAQ | Advertising | Privacy Policy | Terms of Service | Abuse
Copyright ©2024 elitepvpers All Rights Reserved.