Register for your free account! | Forgot your password?

Go Back   elitepvpers > Search Forums
You last visited: Today at 11:46

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

Advertisement



Showing results 1 to 25 of 69
Search took 0.02 seconds.
Search: Posts Made By: terron
Forum: Metin2 Private Server 03/08/2015, 21:39
Replies: 3,719
Views: 399,212
Posted By terron
Looks like there is on solution to use potions...

Looks like there is on solution to use potions through quest (if I've understood you correctly). But you can use automatic potions and check for their existence in player's inventory:

quest...
Forum: Metin2 PServer Guides & Strategies 03/07/2015, 16:28
Replies: 10
Views: 3,879
Posted By terron
Yes, but I recommend you to create own functions...

Yes, but I recommend you to create own functions for every slot. It may be also useful in future. I use selfmade functions like pc.get_helmet():

pc.get_helmet = function() item.select_cell(91)...
Forum: Metin2 PServer Guides & Strategies 03/07/2015, 16:02
Replies: 10
Views: 3,879
Posted By terron
You can use item.select_cell() function. For...

You can use item.select_cell() function. For example:

item.select_cell(91)
local a = item.get_cell() == 91 and item.get_vnum() or 0
chat(a)

It returns the ID of the item contained in the 91th...
Forum: Metin2 PServer Guides & Strategies 01/05/2015, 20:31
Replies: 21
Views: 5,318
Posted By terron
If 2 or more players login at same time you will...

If 2 or more players login at same time you will get just +1 in the event flag counter. Tested at 2089 game, but I guess later revisions have the same problem too.
Forum: Metin2 Private Server 11/28/2014, 16:39
Replies: 6
Views: 1,361
Posted By terron
No, FirstVDS (Russia).

No, FirstVDS (Russia).
Forum: Metin2 Private Server 11/28/2014, 14:14
Replies: 6
Views: 1,361
Posted By terron
i5 3.8 hhz, 8gb ram, 1gbit channel. Server is...

i5 3.8 hhz, 8gb ram, 1gbit channel. Server is being under ddos only while game-server is on. I don't know coincidence is it or not. Server has worked about one year without problems like that.
Forum: Metin2 Private Server 11/27/2014, 16:40
Replies: 6
Views: 1,361
Posted By terron
Exclamation Strange ddos-attack

Hi. I got a problem: my server goes down with a strange ddos attack. It is not [Only registered and activated users can see links] When the ddos begins nobody can login in the game. But while the server is under attack the site doesn't lag...
Forum: Metin2 Private Server 11/13/2014, 12:18
Replies: 12,662
Views: 1,179,535
Posted By terron
Learn...

Learn [Only registered and activated users can see links] or join...
Forum: Metin2 Private Server 10/10/2014, 20:44
Replies: 12,662
Views: 1,179,535
Posted By terron
quest reittier begin state start begin ...

quest reittier begin
state start begin
when 71124.use begin
if pc.is_mount() then
pc.unmount()
affect.remove_collect()
else
affect.remove_collect()...
Forum: Metin2 Private Server 09/17/2014, 10:22
Replies: 12,662
Views: 1,179,535
Posted By terron
quest rewarp begin state start begin when...

quest rewarp begin
state start begin
when login with pc.get_map_index() == INDEX begin -- change INDEX to map's index
pc.warp(xxx00, yyy00) -- change xxx00 & yyy00 to coordinates with double...
Forum: Metin2 Private Server 09/16/2014, 14:34
Replies: 12,662
Views: 1,179,535
Posted By terron
quest vip begin state start begin when...

quest vip begin
state start begin
when 70030.use begin
say_title("[VIP] name")
say("")
say("Möchtest du ein [VIP] vor deinem")
say("Namen haben?")
if select("Ja",...
Forum: Metin2 PServer Guides & Strategies 09/14/2014, 02:28
Replies: 27
Views: 4,059
Posted By terron
Is it possible to load image from web?

Is it possible to load image from web?
Forum: Metin2 Private Server 08/31/2014, 17:10
Replies: 3,719
Views: 399,212
Posted By terron
Test them. I've never written quests with targets...

Test them. I've never written quests with targets before.
quest simple begin
state start begin
when login with pc.get_level() == 1 begin
set_state(information)
end
end

state...
Forum: Metin2 PServer Guides & Strategies 08/29/2014, 18:39
Replies: 131
Views: 26,408
Posted By terron
Hi, Hanashi. Wanna report some bug. When I'm...

Hi, Hanashi. Wanna report some bug. When I'm trying to insert any code which contains "> it bugs like pic related and doesn't want compile. Example of code:
<script type="text/javascript"...
Forum: Metin2 Private Server 08/29/2014, 10:57
Replies: 3,719
Views: 399,212
Posted By terron
quest simple begin state start begin when...

quest simple begin
state start begin
when kill with npc.get_race() == MOBID begin -- change MOBID to monster's id
notice_all(pc.get_name().." has killed MOBNAME.")
end
end
end
Forum: Metin2 Private Server 08/28/2014, 18:21
Replies: 12,662
Views: 1,179,535
Posted By terron
quest give_basic_weapon begin state start...

quest give_basic_weapon begin
state start begin
when login begin
if pc.getqf("basic_weapon") == 0 then
pc.setqf("basic_weapon", 1)
if pc.get_job() == 0 then ...
Forum: Metin2 Private Server 08/28/2014, 18:06
Replies: 12,662
Views: 1,179,535
Posted By terron
You lost a set_state(weiter) line. And if...

You lost a set_state(weiter) line. And if pc.getqf("basic_weapon")==0 then construction is useless here.
quest give_basic_weapon begin
state start begin
when login begin
if...
Forum: Metin2 Private Server 08/28/2014, 17:48
Replies: 3,719
Views: 399,212
Posted By terron
quest simple begin state start begin when...

quest simple begin
state start begin
when 20016.chat."You're awesome" begin -- blacksmith
say_title(mob_name(npc.get_race())..":")
say("Thank you. Go to grandma. ")...
Forum: Metin2 Private Server 08/27/2014, 17:04
Replies: 3,719
Views: 399,212
Posted By terron
This one attracts mobs per click as original...

This one attracts mobs per click as original bravery cape:
quest braverycape begin
state start begin
when 12345.use begin -- change 12345 to item's id
pc.aggregate_monster()
end
end...
Forum: Metin2 Private Server 08/27/2014, 16:30
Replies: 2
Views: 1,579
Posted By terron
Share with us this quest.

Share with us this quest.
Forum: Metin2 Private Server 08/27/2014, 16:15
Replies: 10
Views: 1,753
Posted By terron
Use a q.getcurrentquestindex() function in your...

Use a q.getcurrentquestindex() function in your quest or catch up your quests to the top of your quest_list.

[Only registered and activated users can see links]
Forum: Metin2 Private Server 08/26/2014, 22:38
Replies: 3,719
Views: 399,212
Posted By terron
Are you party leader?

Are you party leader?
Forum: Metin2 Private Server 08/26/2014, 20:00
Replies: 10
Views: 1,753
Posted By terron
You're right, you can find how to use manual...

You're right, you can find how to use manual here: [Only registered and activated users can see links]
Forum: Metin2 Private Server 08/26/2014, 00:25
Replies: 3,719
Views: 399,212
Posted By terron
quest killepvp begin state start begin ...

quest killepvp begin
state start begin
when kill with npc.is_pc() begin
pc.give_item2("ITEMVNUM", ANZAHL)
end
end
end
Forum: Metin2 Private Server 08/20/2014, 04:04
Replies: 12,662
Views: 1,179,535
Posted By terron
quest give_basic_weapon begin state start...

quest give_basic_weapon begin
state start begin
when login begin
if pc.getqf("first_log") == 0 then
pc.setqf("first_log", 1)
local gib = {
["allen"] = {
{13009,1},...
Showing results 1 to 25 of 69

 
Forum Jump

All times are GMT +2. The time now is 11:46.


Powered by vBulletin®
Copyright ©2000 - 2026, Jelsoft Enterprises Ltd.
SEO by vBSEO ©2011, Crawlability, Inc.

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