problem HV teleport

03/16/2013 04:42 ThunderNikk#16
Move it to another location and see if it creates a new file first.

If it does see if it fixes your hot keys.

If it does not create a new file then delete all of the duplicate character data. (You must not use the brackets in names though or it will just rewrite what you delete)

Move it to another location and see if it creates a new file first.

If it does see if it fixes your hot keys.

If it does not create a new file then delete all of the duplicate character data. (You must not use the brackets in names though or it will just rewrite what you delete) Then put the file back and see what happens.
03/18/2013 04:46 bigfoot129012#17
hi all
Can anyone let me have the script to fix the hv teleporter guy so he does not go away and where i can buy the hv ticket to go to hv or a code to give everyone it on login and the hotkey bar so i can bring skills down to it and it will stay there and when i log back in it will still be there lol Please and Thanks
03/18/2013 04:58 [GA]Sharingan#18
@ Bigfoot..

1. Open The "etc_scripts_funktion.lua"
2. Scroll Down to "function is_premium()"
3. Under this Insert this:

local hv_ticket = find_item(910023) -- this is the backticket change to your favorit..^^

if hv_ticket >= 1 then
sv("premium",1)
else
end
4. Fixxed.
5 Not Fixxed? Open Gameserver.opt and change cash_usable_server:1 to 0
6 Then Fixxed.
03/18/2013 05:25 bigfoot129012#19
ok i have changed the game.server part and i have changed the script, but when i changed the game.server to a "0" all the HV npc dissappears and half the guys in HV does to but when i change - 0 back to 1 , all the npc come back but the hot keys dont work

can anyone tell me a code and formula to take stuff out of my inventory that i can't delete or sell plzz help thanks
03/18/2013 21:50 [GA]Sharingan#20
In your script. look under what you insert and you see the error..
03/19/2013 02:10 bigfoot129012#21
the npc would dissappear before i edited my script when i only changed the game.server op

the npc would dissappear before i edited my script when i only changed the game.server op
03/19/2013 03:24 ThunderNikk#22
Changing the script to set Premium as true should keep the NPCs from disappearing when you set the cash_usable_server from 1 to a 0.
03/24/2013 01:23 opie1225#23
here is the entire script with the inputed info that all of yall have told me to in put and still no HV guys and here is what my gs looks like .. T:game.cash_usable_server:0 please tell me if i done anything wrong ================================================== =======================
-- �����̾� ���� üũ
--================================================== =======================
function is_premium()
return true
end

-- ���� �ڵ� �о����
-- get_local_info()�� ��ȯ����
--LOCAL_INFO_KOREA = 1
--LOCAL_INFO_HONGKONG = 2
--LOCAL_INFO_AMERICA = 4
--LOCAL_INFO_GERMANY = 8
--LOCAL_INFO_JAPAN = 16
--LOCAL_INFO_TAIWAN = 32
--LOCAL_INFO_CHINA = 64
--LOCAL_INFO_FRANCE = 128
--LOCAL_INFO_RUSSIA = 256
--�����̽þ� 512, �̰��� 1024, ��Ʈ�� 2048, �±� 4096, �ߵ� 8192, ��Ű 16384

local state_code = get_local_info()

-- �ѱ��� ��� ����/�׼� ��� ��ũ��Ʈ �����н��� ������ true
if state_code == 1 and gv( "premium" ) == 1 then
return true
end
-- ��ũ��Ʈ �����н��� ������ true
if gv( "premium" ) == 1 and scf_is_official_server( get_server_category() ) then
return true
end

-- �׽�Ʈ �����̸� ������ true
if scf_is_official_server( get_server_category() ) == false then
-- return true
end
03/24/2013 02:12 ThunderNikk#24
All you need is what Xijezu told you to put in and that is the entire Function is_premium()

This...

function is_premium()
return true
end

All of this is now unnecessary and not needed anymore...

-- ���� �ڵ� �о����
-- get_local_info()�� ��ȯ����
--LOCAL_INFO_KOREA = 1
--LOCAL_INFO_HONGKONG = 2
--LOCAL_INFO_AMERICA = 4
--LOCAL_INFO_GERMANY = 8
--LOCAL_INFO_JAPAN = 16
--LOCAL_INFO_TAIWAN = 32
--LOCAL_INFO_CHINA = 64
--LOCAL_INFO_FRANCE = 128
--LOCAL_INFO_RUSSIA = 256
--�����̽þ� 512, �̰��� 1024, ��Ʈ�� 2048, �±� 4096, �ߵ� 8192, ��Ű 16384

local state_code = get_local_info()

-- �ѱ��� ��� ����/�׼� ��� ��ũ��Ʈ �����н��� ������ true
if state_code == 1 and gv( "premium" ) == 1 then
return true
end
-- ��ũ��Ʈ �����н��� ������ true
if gv( "premium" ) == 1 and scf_is_official_server( get_server_category() ) then
return true
end

-- �׽�Ʈ �����̸� ������ true
if scf_is_official_server( get_server_category() ) == false then
-- return true
end

Comment everything out with --

Or remove it.
03/24/2013 03:06 opie1225#25
i am at a loss i took all the rest out and still no HV npc dang it
03/24/2013 03:07 ThunderNikk#26
Let me take a look at the NPCs from the tables

Change Spawn_type to 0

It is a 4 now and the 4 probably only spawns them when it is a cash server.

0 should spawn them no matter what and if you have HV pass with Premium being true they should function.
03/24/2013 04:13 opie1225#27
ok they are all a 4 so thank you will will work on changing them to a '0'

thank you so much guys i feel stupid knowing it was that easy as the sql lol
03/24/2013 13:14 ThunderNikk#28
Quote:
Originally Posted by opie1225 View Post
ok they are all a 4 so thank you will will work on changing them to a '0'

thank you so much guys i feel stupid knowing it was that easy as the sql lol
I dont know if it was that easy. You need to try it and let me know if it works.
03/24/2013 16:00 opie1225#29
Oh yea it worked all missing NPCs are back thnk you again guys
03/24/2013 16:05 ThunderNikk#30
You are welcome, glad it worked out for you.