|
You last visited: Today at 09:18
Advertisement
[Release]enter/exit TG
Discussion on [Release]enter/exit TG within the CO2 PServer Guides & Releases forum part of the CO2 Private Server category.
04/23/2011, 04:47
|
#1
|
elite*gold: 0
Join Date: Jun 2009
Posts: 143
Received Thanks: 155
|
[Release]enter/exit TG
Adds Boxer in tc, adds script to BoxerHuang inside TG to let you out.
Paste code in NPCTalk.cs
Code:
#region TC Boxer
case 600076:
{
switch (LinkBack)
{
case 0:
{
Text("If you are level 20 or above you may train the the training ground. Would youlike me to teleport you there for 1000 silver?", Client);
Link("Yes, please.", 1, Client);
Link("No, thanks.", 255, Client);
Finish(Client);
return;
}
case 1:
{
Teleport(Client, 217, 215, 1039);
}
return;
}
return;
}
#endregion
#region Leave TG
case 600075:
{
switch (LinkBack)
{
case 0:
{
Text("Although nothing will be consumed here, you cannot level up as fast as slaying the monsters. Shall I teleport you out?", Client);
Link("Yes, please.", 1, Client);
Link("No, thanks.", 255, Client);
Finish(Client);
return;
}
case 1:
{
Teleport(Client, 430, 380, 1002);
}
return;
}
return;
}
#endregion
Intert into database:
Code:
600076 600076 6440 Boxer 1002 350 335 1 2
kinda useless since im pretty sure tg dummies arent added but w.e its all I can do for practise atm.
|
|
|
04/23/2011, 05:39
|
#2
|
elite*gold: 0
Join Date: Nov 2009
Posts: 380
Received Thanks: 58
|
In my opinion that is a useless release and other people can do that.I'm sorry for this reply but that is true..
|
|
|
04/23/2011, 05:54
|
#3
|
elite*gold: 0
Join Date: Oct 2009
Posts: 125
Received Thanks: 21
|
Quote:
Originally Posted by Jay10291
Adds Boxer in tc, adds script to BoxerHuang inside TG to let you out.
Paste code in NPCTalk.cs
Code:
#region TC Boxer
case 600076:
{
switch (LinkBack)
{
case 0:
{
Text("If you are level 20 or above you may train the the training ground. Would youlike me to teleport you there for 1000 silver?", Client);
Link("Yes, please.", 1, Client);
Link("No, thanks.", 255, Client);
Finish(Client);
return;
}
case 1:
{
Teleport(Client, 217, 215, 1039);
}
return;
}
return;
}
#endregion
#region Leave TG
case 600075:
{
switch (LinkBack)
{
case 0:
{
Text("Although nothing will be consumed here, you cannot level up as fast as slaying the monsters. Shall I teleport you out?", Client);
Link("Yes, please.", 1, Client);
Link("No, thanks.", 255, Client);
Finish(Client);
return;
}
case 1:
{
Teleport(Client, 430, 380, 1002);
}
return;
}
return;
}
#endregion
Intert into database:
Code:
600076 600076 6440 Boxer 1002 350 335 1 2
kinda useless since im pretty sure tg dummies arent added but w.e its all I can do for practise atm.
|
only teleport?
|
|
|
04/23/2011, 16:19
|
#4
|
elite*gold: 0
Join Date: Apr 2007
Posts: 142
Received Thanks: 15
|
Quote:
Originally Posted by thesamuraivega
only teleport?
|
Why you are facepalming? "only teleport" At least he made something, just to get better at coding. And that ain't so bad as for his first attempt/release.
So, nice job, Jay.
|
|
|
04/23/2011, 19:10
|
#5
|
elite*gold: 0
Join Date: Apr 2011
Posts: 73
Received Thanks: 12
|
Quote:
Originally Posted by thesamuraivega
only teleport?
|
Did you expect a quest before teleporting into TG?
|
|
|
04/27/2011, 18:37
|
#6
|
elite*gold: 0
Join Date: Oct 2009
Posts: 125
Received Thanks: 21
|
Quote:
Originally Posted by Secrets-man
Why you are facepalming? "only teleport" At least he made something, just to get better at coding. And that ain't so bad as for his first attempt/release.
So, nice job, Jay.
|
Quote:
Originally Posted by Secured
Did you expect a quest before teleporting into TG?
|
Code:
#region Enter TG NPCs
case 101602://TwinCity
case 101616://BirdMan
case 101614://DesertCity
case 101620://PheonixCity
case 101618://ApeCity
{
switch (LinkBack)
{
case 0:
{
Text("Want to go to training grounds? You need to pay me 1000 silvers to do that.", Client);
Link("Yeah.", 1, Client);
Link("Just passing by", 255, Client);
Finish(Client);
}
return;
case 1:
{
if (Client.Money >= 1000)
{
Client.Money -= 1000;
Teleport(215, 215, 1039, Client);
Text("Ok. Here you are. You can only hit dummies that are of your level or lower.", Client);
Link("Ok then.", 255, Client);
Finish(Client);
}
else
{
Text("As i said... you need 1000 silvers. Why do i need to repeat myself?", Client);
Link("Alright alright.", 255, Client);
Finish(Client);
}
}
return;
}
return;
}
#endregion
Leave TG:
Code:
#region Leave TG
case 600075:
{
switch (LinkBack)
{
case 0:
{
Text("Do you want to leave this place?", Client);
Link("Yeah.", 1, Client);
Link("No, I'll stay here.", 255, Client);
Finish(Client);
}
return;
case 1:
{
if (Client.PrevMap == 1002) Teleport(Client, 430, 380, 1002);//TwinCity
else if (Client.PrevMap == 1015) Teleport(Client, 717, 571, 1015);//BirdMan
else if (Client.PrevMap == 1000) Teleport(Client, 500, 650, 1000);//DesertCity
else if (Client.PrevMap == 1011) Teleport(Client, 188, 264, 1011);//PheonixCity
else if (Client.PrevMap == 1020) Teleport(Client, 565, 562, 1020);//ApeCity
}
return;
}
}
return;
#endregion
|
|
|
|
Similar Threads
|
[Release] Metin2 Render Enter Page FL3Me
05/05/2012 - Metin2 PServer Guides & Strategies - 35 Replies
Hi all,
We add graphics do metin2
I hope you like :)
Demo:
Enter Page v10 Demo
Enter Page v11 Demo
Download Link:
|
[Release]Another Labyrinth NPC Code Pay with CPs to Enter Lab 1-4
03/10/2010 - CO2 PServer Guides & Releases - 8 Replies
This NPC let enter you to Lab 1-4 for CPs
I added a Guide how to change the Price´s
case 1152:
{
if (Control == 0)
{
GC.AddSend(Packets.NPCSay("Hey do you wish to Teleport to Labyrinth ? It will Cost you for Lab 1 ( 20 CPs ) Lab 2 ( 100 CPs ) Lab 3 ( 200 CPs) Lab 4 ( 500 CPs )."));
GC.AddSend(Packets.NPCLink("Lab 1", 1));
|
[Release]enter and exit guild arena
07/14/2009 - CO2 PServer Guides & Releases - 2 Replies
just open up npc talk and put the code on top of a code
yes i named it niggerislands you can change the text
|
Exit sometimes... Didnt write anithing just exit... PLS HELP
11/23/2007 - Silkroad Online - 1 Replies
The problem is :
I can play for a few minutes and after just exit Didnt write out anithnig...
What can i do?
What will be the problem ?
Pls help For me!
TY
|
All times are GMT +1. The time now is 09:18.
|
|