Register for your free account! | Forgot your password?

You last visited: Today at 03:19

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

Advertisement



[Release] Bless Skill (LuckyTime)

Discussion on [Release] Bless Skill (LuckyTime) within the CO2 PServer Guides & Releases forum part of the CO2 Private Server category.

Reply
 
Old 10/22/2008, 22:37   #31
 
elite*gold: 0
Join Date: Feb 2008
Posts: 1,590
Received Thanks: 154
Quote:
Originally Posted by Exia13 View Post
Does the fact that i have PowerSource make a difference? I've added everything, but still no luck activating blessing. My stamina doesnt even go down. My mana just flashes and thats it.

I guess i should also mention that my mana doesnt go down when i use spells, same with arrows.
Mana isn't coded to remove when using spells in any LOTF base, that I know of, that is released(Mine has it, it isn't that freaking hard people <.>).
tao4229 is offline  
Old 10/22/2008, 23:19   #32
 
Exia13's Avatar
 
elite*gold: 0
Join Date: May 2008
Posts: 256
Received Thanks: 21
Quote:
Originally Posted by tao4229 View Post
Mana isn't coded to remove when using spells in any LOTF base, that I know of, that is released(Mine has it, it isn't that freaking hard people <.>).
lol....yea....not hard :P. i could code it in my sleep LOL. Just kdding. If i can simply get directions, then i think i can do it, i dont think i want the whole code for that.

But the problem still remains, i was able to input all the code and it builds with absolutley no problem, yet still i cant use the skill (and yes i am 2nd RB).
Exia13 is offline  
Old 10/23/2008, 00:16   #33
 
elite*gold: 0
Join Date: Feb 2008
Posts: 1,590
Received Thanks: 154
Quote:
Originally Posted by Exia13 View Post
lol....yea....not hard :P. i could code it in my sleep LOL. Just kdding. If i can simply get directions, then i think i can do it, i dont think i want the whole code for that.

But the problem still remains, i was able to input all the code and it builds with absolutley no problem, yet still i cant use the skill (and yes i am 2nd RB).
Did you add it into DefineSkills()? Otherwise there's no way in hell it will work


As for the top part -> VitalPacket Type 2 is mana.

Remove the mana upon using a certain skill then send the Vital Packet, not too shabbeh. (Make sure you check if the mana is high enough =P)
tao4229 is offline  
Old 10/23/2008, 03:23   #34
 
Exia13's Avatar
 
elite*gold: 0
Join Date: May 2008
Posts: 256
Received Thanks: 21
Well, i was finally able to add everything to the source, and it builds with absolutely no errors and guess what.....it's still not working. lol.
Just to clarify with Kinshi: the last bit of coding through the database, since i'm using the PowerSource, does the coding go in the external database, or the databse.cs. I have opened both and tried putting the code in both with the same result.

I know it's annoying when i keep posting. Sorry guys, i just wanna see if i can get this to work.

@Kinshi: If you don't mind, can u please add me to MSN for a little more help? You can PM me your email addy (i'd post mine, but then i'd start getting random emails from people i dont know )
Exia13 is offline  
Old 10/23/2008, 03:40   #35
 
elite*gold: 20
Join Date: Apr 2008
Posts: 2,281
Received Thanks: 912
Quote:
Originally Posted by Exia13 View Post
Well, i was finally able to add everything to the source, and it builds with absolutely no errors and guess what.....it's still not working. lol.
Just to clarify with Kinshi: the last bit of coding through the database, since i'm using the PowerSource, does the coding go in the external database, or the databse.cs. I have opened both and tried putting the code in both with the same result.

I know it's annoying when i keep posting. Sorry guys, i just wanna see if i can get this to work.

@Kinshi: If you don't mind, can u please add me to MSN for a little more help? You can PM me your email addy (i'd post mine, but then i'd start getting random emails from people i dont know )
Well, I've never looked at the PowerCo Source, so I don't know which database to add it to. Perhaps someone that uses your source can help you.

kinshi88 is offline  
Old 10/23/2008, 04:52   #36
 
DragonStar's Avatar
 
elite*gold: 0
Join Date: Jun 2007
Posts: 286
Received Thanks: 409
this is all i could find on powersource externaldatabase

DragonStar is offline  
Old 10/23/2008, 14:14   #37
 
Exia13's Avatar
 
elite*gold: 0
Join Date: May 2008
Posts: 256
Received Thanks: 21
Like kinshi said, he's never worked with PowerCo, but i go the same problem as you Dragon. But i noticed why it's not working, when i add the coding to my external database, it builds, but then when i close c# then come back later, it's gone. So the problem is that the external database doesnt save any code added to it. That's the problem.
Exia13 is offline  
Old 10/23/2008, 16:11   #38
 
elite*gold: 0
Join Date: Oct 2008
Posts: 342
Received Thanks: 66
Have the same prob.... non working with PowerSource not working with my own one....
µ~Xero~µ is offline  
Old 10/25/2008, 12:07   #39
 
Calabaza1's Avatar
 
elite*gold: 0
Join Date: Jul 2008
Posts: 39
Received Thanks: 0
SkillAttributes[9876] = new ushort[1][];
SkillAttributes[9876][0] = new ushort[6] { 7, 0, 0, 0, 0, 0 };
SkillsDone.Add(9876, 1);

this bit in database.cs stops my server starting and just shuts down wen i start any ideas?
Calabaza1 is offline  
Old 10/25/2008, 15:16   #40
 
elite*gold: 0
Join Date: Feb 2008
Posts: 1,590
Received Thanks: 154
Quote:
Originally Posted by Calabaza1 View Post
SkillAttributes[9876] = new ushort[1][];
SkillAttributes[9876][0] = new ushort[6] { 7, 0, 0, 0, 0, 0 };
SkillsDone.Add(9876, 1);

this bit in database.cs stops my server starting and just shuts down wen i start any ideas?
The initialization of the array doesn't allow for values above 9000(which you're doing with 9876), so change it.
tao4229 is offline  
Thanks
1 User
Old 10/25/2008, 16:08   #41
 
Calabaza1's Avatar
 
elite*gold: 0
Join Date: Jul 2008
Posts: 39
Received Thanks: 0
K thx

The skill dont work tho..(Or isnt it meant to as it is the base code )
Calabaza1 is offline  
Old 10/27/2008, 21:43   #42
 
elite*gold: 0
Join Date: Dec 2006
Posts: 133
Received Thanks: 16
Good job! it is explained very good, and the way you did it are also great! thank's!
martoon is offline  
Old 10/28/2008, 00:30   #43
 
boonhood3's Avatar
 
elite*gold: 0
Join Date: Jun 2008
Posts: 70
Received Thanks: 3
Please Any one Help me With TeamViwer i Can`t Do THis

i Dont Have MSN any One Help me With TeamViwer

My Hamachi Room SilenceCo Pass 123 Please

i Dont Have Fun
boonhood3 is offline  
Old 10/29/2008, 20:45   #44
 
elite*gold: 0
Join Date: Nov 2007
Posts: 35
Received Thanks: 9
This code increases my cpu process.

operaopera is offline  
Old 10/29/2008, 20:50   #45
 
Tw3ak's Avatar
 
elite*gold: 20
Join Date: Jun 2005
Posts: 1,489
Received Thanks: 301
Quote:
Originally Posted by operaopera View Post
This code increases my cpu process.

wow!! 84% cpu ?? lol i doubt that is caused by just this,And if it is you have a pretty weak machine.
Tw3ak is offline  
Reply


Similar Threads Similar Threads
Annoying Luckytime & Heav.Bless Bug
02/25/2010 - CO2 Private Server - 0 Replies
Morning Every1 I've got some annyoing bugs. First of all my Luckytime is Spamming, means it changes its value every some sec's to any other value, still if i just log in and don't store Luckytime. Here a Pic; http://protagco.game-server.cc/copatches/LT%20Bug .png Don't know how that happened, also don't know how to solve it >.< My next bug is that my HeavenBless doesnt save. When i log on i've got the HeavenBless button, but not the Online Training one. Causes of this i can't enter...
[RELEASE]2nd reborn NPC With bless skill
11/14/2009 - CO2 PServer Guides & Releases - 35 Replies
#REMOVED
[Release]NPC that learns you bless skill
11/14/2009 - CO2 PServer Guides & Releases - 21 Replies
#REMOVED FOR FLAMING
[RELEASE]2nd reborn NPC With bless skill
10/14/2009 - CO2 PServer Guides & Releases - 5 Replies
#REMOVED READ!!! NPC dialog: #REMOVED CAuSE OF BUGS It only worked in the source im using, so i will release it later :) NPC control:



All times are GMT +2. The time now is 03:19.


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.