|
You last visited: Today at 08:36
Advertisement
Lucky Time ! Bless
Discussion on Lucky Time ! Bless within the CO2 Private Server forum part of the Conquer Online 2 category.
02/16/2009, 21:44
|
#1
|
elite*gold: 0
Join Date: Feb 2009
Posts: 158
Received Thanks: 93
|
Lucky Time ! Bless
I need to know how to put luckytime (bless) in a skill book or in a npc ....
lol ... i am using CoV2 THX
|
|
|
02/16/2009, 22:06
|
#2
|
elite*gold: 0
Join Date: Dec 2006
Posts: 83
Received Thanks: 3
|
CoV2 heve Lucky typ use Command /skill 9876 0
|
|
|
02/17/2009, 00:05
|
#3
|
elite*gold: 0
Join Date: Nov 2008
Posts: 412
Received Thanks: 314
|
noob hes asking for luckytime in a skill book or in a npc
look to the profcenter npcs
|
|
|
02/17/2009, 16:46
|
#4
|
elite*gold: 130
Join Date: Oct 2007
Posts: 1,655
Received Thanks: 705
|
here is a npc for it:
Code:
if (CurrentNPC == 123456)
{
SendPacket(General.MyPackets.NPCSay("Do you wish to learn LuckyTime (Bless), but you have to be lvl 120 atleast. "));
SendPacket(General.MyPackets.NPCLink("Yes I want to learn", 1));
SendPacket(General.MyPackets.NPCLink("No,thx i don't want to learn it.", 255));
SendPacket(General.MyPackets.NPCSetFace(30));
SendPacket(General.MyPackets.NPCFinish());
}
Code:
if (CurrentNPC = 123456)
{
if (Control == 1)
if (MyChar.Level >= 120)
MyChar.LearnSkill(9876, 0);
}
else
{
SendPacket(General.MyPackets.NPCSay("Sorry you are not lvl 120 so you can't learn the skill."));
SendPacket(General.MyPackets.NPCLink("I see", 255));
SendPacket(General.MyPackets.NPCSetFace(30));
SendPacket(General.MyPackets.NPCFinish());
}
}
}
|
|
|
02/17/2009, 18:05
|
#5
|
elite*gold: 0
Join Date: Feb 2009
Posts: 158
Received Thanks: 93
|
Thanks ... i will try it .. and i knew the command of it :S thanks
|
|
|
02/17/2009, 18:19
|
#6
|
elite*gold: 0
Join Date: Feb 2009
Posts: 158
Received Thanks: 93
|
But plz i don't know when i add in database .... Flags ... and direction .. what number i must put in these?
|
|
|
02/17/2009, 18:22
|
#7
|
elite*gold: 0
Join Date: Jan 2008
Posts: 57
Received Thanks: 16
|
flag=2 direction =2
|
|
|
02/17/2009, 18:32
|
#8
|
elite*gold: 0
Join Date: Feb 2009
Posts: 158
Received Thanks: 93
|
Quote:
Originally Posted by unluckyunknown45654554
flag=2 direction =2
|
k ty
|
|
|
02/17/2009, 21:14
|
#9
|
elite*gold: 0
Join Date: Jan 2009
Posts: 1,922
Received Thanks: 491
|
UID = (random number make sure not used) ( need this for coding inside)
TYPE = ( the model of the npc )
Name = ( THE NAME IN THE DATABASE NOT IN THE GAME)
Flags=(2)
Direction=(it can be 0 or 2)
MAPID=( THE MAP YOU WANT IT IN (exa. 1002 = TC , 1036 = MARKET )
XCORD=(THE X CORD (exa. 543,200) 543 is the x cooord
YCORD=( THE Y CORD ( exa. 543,200 ) 200 is the y coord
SUBTYPe = ( i put that at 0, truly i have no clue what its for )
|
|
|
02/23/2009, 01:51
|
#10
|
elite*gold: 0
Join Date: Feb 2009
Posts: 59
Received Thanks: 7
|
Quote:
Originally Posted by turk55
here is a npc for it:
Code:
if (CurrentNPC == 123456)
{
SendPacket(General.MyPackets.NPCSay("Do you wish to learn LuckyTime (Bless), but you have to be lvl 120 atleast. "));
SendPacket(General.MyPackets.NPCLink("Yes I want to learn", 1));
SendPacket(General.MyPackets.NPCLink("No,thx i don't want to learn it.", 255));
SendPacket(General.MyPackets.NPCSetFace(30));
SendPacket(General.MyPackets.NPCFinish());
}
Code:
if (CurrentNPC = 123456)
{
if (Control == 1)
if (MyChar.Level >= 120)
MyChar.LearnSkill(9876, 0);
}
else
{
SendPacket(General.MyPackets.NPCSay("Sorry you are not lvl 120 so you can't learn the skill."));
SendPacket(General.MyPackets.NPCLink("I see", 255));
SendPacket(General.MyPackets.NPCSetFace(30));
SendPacket(General.MyPackets.NPCFinish());
}
}
}
|
Ummm... In which section and where in C# must i add this...?
|
|
|
02/23/2009, 03:06
|
#11
|
elite*gold: 0
Join Date: Jan 2009
Posts: 1,922
Received Thanks: 491
|
just search for if (CurrentNPC == 7500) , find the dialog part put that above it, then search for 7500 do part and put the second part above it
or in a skillbook, in character.cs just find the item Id ( in your sorce, coitems.txt ) search for whatever skill book you dont use and do something like
if (ItemId == 3290) // idk if its itemid im on my sister laptop i dont have anything on here
{
MyChar.LearnSkill(9876, 0) // learns the skill :P
}
|
|
|
02/23/2009, 06:49
|
#12
|
elite*gold: 130
Join Date: Oct 2007
Posts: 1,655
Received Thanks: 705
|
Quote:
Originally Posted by doku66655
Ummm... In which section and where in C# must i add this...?
|
1> you need atleast C#
2> in client.cs
|
|
|
02/28/2009, 14:52
|
#13
|
elite*gold: 0
Join Date: Apr 2008
Posts: 56
Received Thanks: 8
|
Quote:
Originally Posted by turk55
here is a npc for it:
Code:
if (CurrentNPC == 123456)
{
SendPacket(General.MyPackets.NPCSay("Do you wish to learn LuckyTime (Bless), but you have to be lvl 120 atleast. "));
SendPacket(General.MyPackets.NPCLink("Yes I want to learn", 1));
SendPacket(General.MyPackets.NPCLink("No,thx i don't want to learn it.", 255));
SendPacket(General.MyPackets.NPCSetFace(30));
SendPacket(General.MyPackets.NPCFinish());
}
Code:
if (CurrentNPC = 123456)
{
if (Control == 1)
if (MyChar.Level >= 120 && MyChar.RBCount >= 1// =])<<<<<<<<<<<!!! o.o"
MyChar.LearnSkill(9876, 0);
}
else
{
SendPacket(General.MyPackets.NPCSay("Sorry you are not lvl 120 so you can't learn the skill."));
SendPacket(General.MyPackets.NPCLink("I see", 255));
SendPacket(General.MyPackets.NPCSetFace(30));
SendPacket(General.MyPackets.NPCFinish());
}
}
}
|
if (MyChar.Level >= 120 && MyChar.RBCount >= 1// =])
MyChar.LearnSkill(9876, 0);
}
|
|
|
 |
Similar Threads
|
[HELP]How do u put lucky time when u 2nd rb?
02/07/2009 - CO2 Private Server - 3 Replies
i use the coV2 source n i want to know how do u put the luckytime so that normal players can get it.
they can get luckt time any where, but they can get rb guard from npc.
any help?
|
Lucky Time TG Bug
09/23/2008 - CO2 Guides & Templates - 40 Replies
to use lucky time in TG just cast it and sit really fast, it won't work by just casting it.
start lucky time next to a fire using firecircle and sit immediately after starting. You might need to do it more than once, but firecircle casting will stop. I seen someone stop a water from stigging their main . this is simular to being shielded in TG. It seems like the new rage in pissing peeps off in TG so BEWARE!!!! or enjoy
|
Lucky TIME!!
02/25/2007 - CO2 Exploits, Hacks & Tools - 4 Replies
Don't you hate when double reborn characters are done in luckytime and you still need more time. Well I found a glitch in the game, so you can stay in luckytime for up to 2 hours.
Step 1) You need to be in luckytime.
Step 2) You can ask or get another character to sit on you.(Note: You have to sit on him just right.)
Step 3) When luckytime is over you can see that there is still something over you and your counter should still go up.
This should work because it always works for me.
|
Lucky Time HACK, for when u get lucky time
10/24/2006 - CO2 Exploits, Hacks & Tools - 6 Replies
when u go sit in guys thing given lucky time, light off firecracker to do another emotion becuse when doing it, it wont let, so lightfirecracker, then sit, when he leaves, ull still be getting lucky time
|
Lucky time
10/22/2006 - CO2 Exploits, Hacks & Tools - 3 Replies
This might only be a small exploit, if even. But if someone is charging bless and you keep sitting there without moving, you wont stop getting lucky time when the 2nd rb leaves...
|
All times are GMT +1. The time now is 08:36.
|
|