|
You last visited: Today at 03:07
Advertisement
How to change spawn location and other questions
Discussion on How to change spawn location and other questions within the Rappelz Private Server forum part of the Rappelz category.
07/19/2020, 01:47
|
#1
|
elite*gold: 0
Join Date: Jul 2020
Posts: 22
Received Thanks: 0
|
How to change spawn location and other questions
Nevermind I worked this bit out
So I'm using the files from  to run a 9.5.2 server. New characters are spawning in Horizon instead of on trainee island. How do I change it? I'm assuming it's a .lua in the game server resource folder but I have no clue which one nor how to modify it if I did.
I overlooked a line at the end of the first login .lua.
How do I create a NPC to sell loot pets and permanent mounts on trainee island? The guide  no longer has a video tutorial. So far I have
function mounts_and_lootpets()
dlg_title("Loot and Mount")
dlg_text("Free Lootpet and Perma Mounts")
dlg_menu("Loot Pets","loot_market()")
dlg_menu("Permanent Mounts","pmount_market()")
dlg_show()
end
function loot_market()
open_market ( 'loot_pets' )
end
function pmount_market()
open_market ( 'pmounts' )
end
But no clue how to make a market and the market tool doesn't run. Would this script
USE [Arcadia]
GO
INSERT INTO [dbo].[MarketResource]
([sort_id]
,[name]
,[code]
,[price_ratio]
,[huntaholic_ratio]
,[arena_ratio])
VALUES ('1', 'loot_market', '690542', '0', '0', '0')
GO
be the correct way to manually create a market?
Sorry to come on here as a total noob with no clue and keep asking all these questions but what I can find is either outdated or too hard for me to understand. I need An idiots guide to private servers
|
|
|
07/19/2020, 05:14
|
#2
|
Moderator
elite*gold: 1
Join Date: Dec 2012
Posts: 4,913
Received Thanks: 1,491
|
Yes that script should work then just add entries for more items in your market.
|
|
|
07/19/2020, 06:35
|
#3
|
elite*gold: 0
Join Date: Jul 2020
Posts: 22
Received Thanks: 0
|
Thank you. That's the market at least worked out. Now I just have to figure out if the NPC script
function get_module_name()
return "Mounts and Lootpets"
end
function NPC_Mounts and Lootpets()
dlg_title("Lootpets and Mounts")
dlg_text("Free Lootpet and Perma Mounts")
dlg_menu("Loot Pets","loot_market()")
dlg_menu("Permanent Mounts","pmount_market()")
dlg_show()
end
function loot_market()
dlg_title("Loot Pets")
dlg_menu("Loot Pets", "open_market('loot_pets')")
dlg_show()
end
function pmount_market()
dlg_title("Permanent Mounts")
dlg_menu("Permanent Mount, "open_market('pmounts')")
dlg_show()
end
will work . EDIT:It doesn't work crashes herlock. Doesn't hang about long enough to read error. I'm assuming last two functions are written wrong.
|
|
|
07/19/2020, 15:45
|
#4
|
Moderator
elite*gold: 1
Join Date: Dec 2012
Posts: 4,913
Received Thanks: 1,491
|
I have been using this since epic 7. It was written by a group that called themselves stars online and released with the Epic 7.4 files so credit is not mine but it will help you out with the NPC contact script...
function get_module_name()
return "StarsOnlineShop"
end
function StarsOnlineShop_contact()
dlg_title("StarsOnline")
dlg_text("Welcome to the rappelz free convenient mart")
dlg_menu("Passes to the Hidden Village", "open_market( 'HV_Passes' )" )
dlg_menu("Cash shop items list 1", "open_market( 'StarsDaily()' )" ) --10765
dlg_menu("Cash shop items list 2", "open_market( 'shop_mo3dat' )" )
dlg_menu("Armor and weapon supplies", "StarsOnline_tools()" )
dlg_menu("Decorative Items", "open_market( 'shop_zeena' )" )
dlg_menu("Wings", "open_market('starsnew()')" )
dlg_menu("Tear Drop Soul Stones", "open_market( 'StarsSoulstone' )" )
dlg_menu("Loot pets", "open_market( 'stars_pet' )" )
dlg_menu("+3 Skill Cards", "Stars_cards()" )
dlg_menu("Goodbye", '' )
dlg_show()
end
function StarsOnline_tools()
dlg_title("StarsOnline")
dlg_text("What type of equipment are you looking for")
dlg_menu("Rank 4", "Rank4()")
dlg_menu("Rank 5", "Rank5()")
dlg_menu("Rank 6", "Rank6()")
dlg_menu("Rank 7", "Rank7()")
dlg_menu("Helmets and cloaks", "open_market('shop_armor_others_1')" )
dlg_menu("Previous choices", "StarsOnlineShop_contact()" )
dlg_menu("Goodbye", '' )
dlg_show()
end
function Rank4()
dlg_title("StarsOnline")
dlg_text("All your rank 4 equipment needs")
dlg_menu("Rank 4 armor body", "open_market('shop_armor_body_4')" )
dlg_menu("Rank 4 belts", "open_market('shop_armor_belt_4')" )
dlg_menu("Rank 4 gloves", "open_market('shop_armor_gloves_4')" )
dlg_menu("Rank 4 boots", "open_market('shop_armor_shoes_4')" )
dlg_menu("Rank 4 one handed weapons", "open_market('shop_weapon_1hand_4')" )
dlg_menu("Rank 4 two handed weapons", "open_market('shop_weapon_2hand_4')" )
dlg_menu("Previous choices", "StarsOnline_tools()" )
dlg_menu("Goodbye", '' )
dlg_show()
end
function Rank5()
dlg_title("StarsOnline")
dlg_text("All your rank 5 equipment needs")
dlg_menu("Rank 5 armor body", "open_market('shop_armor_body_5')" )
dlg_menu("Rank 5 belts", "open_market('shop_armor_belt_5')" )
dlg_menu("Rank 5 gloves", "open_market('shop_armor_gloves_5')" )
dlg_menu("Rank 5 boots", "open_market('shop_armor_shoes_5')" )
dlg_menu("Rank 5 one handed weapons", "open_market('shop_weapon_1hand_5')" )
dlg_menu("Rank 5 two handed weapons", "open_market('shop_weapon_2hand_5')" )
dlg_menu("Previous choices", "StarsOnline_tools()" )
dlg_menu("Goodbye", '' )
dlg_show()
end
function Rank6()
dlg_title("StarsOnline")
dlg_text("All your rank 6 equipment needs")
dlg_menu("Rank 6 armor body", "open_market('shop_armor_body_6')" )
dlg_menu("Rank 6 belts", "open_market('shop_armor_belt_6')" )
dlg_menu("Rank 6 gloves", "open_market('shop_armor_gloves_6')" )
dlg_menu("Rank 6 boots", "open_market('shop_armor_shoes_6')" )
dlg_menu("Rank 6 one handed weapons", "open_market( 'shop_weapon_1hand_6' )" )
dlg_menu("Rank 6 two handed weapons", "open_market( 'shop_weapon_2hand_6' ) " )
dlg_menu("Previous choices", "StarsOnline_tools()" )
dlg_menu("Goodbye", '' )
dlg_show()
end
function Rank7()
dlg_title("StarsOnline")
dlg_text("All your rank 7 equipment needs")
dlg_menu("Rank 7 armor body", "open_market('shop_armor_body_7')" )
dlg_menu("Rank 7 belts", "open_market('shop_armor_belt_7')" )
dlg_menu("Rank 7 gloves", "open_market('shop_armor_gloves_7')" )
dlg_menu("Rank 7 boots", "open_market('shop_armor_shoes_7')" )
dlg_menu("Rank 7 one handed weapons", "open_market('shop_weapon_1hand_7')" )
dlg_menu("Rank 7 two handed weapons", "open_market('shop_weapon_2hand_7')" )
dlg_menu("Rank 7 accessory sets Epic 7.4", "open_market('KickAss7.4set')" )
dlg_menu("Previous choices", "StarsOnline_tools()" )
dlg_menu("Goodbye", '' )
dlg_show()
end
function Stars_cards()
dlg_title( "StarsOnline" )
dlg_text( "We carry +3 skill cards for all races and classes" )
dlg_menu( "Cards common to all races and classes", "open_market( 'shop_skill_all' )" )
dlg_menu( "Cards for the Deva classes", "open_market( 'shop_skill_deva' )" )
dlg_menu( "Cards for the Asura classes", "open_market( 'shop_skill_asura' )" )
dlg_menu( "Cards for the Gaia classes", "open_market( 'shop_skill_gaia' )" )
dlg_menu("Master class cards", "open_market( 'shop_skill_tp' )" )
dlg_menu("Previous choices", "StarsOnlineShop_contact()" )
dlg_menu( "Goodbye", '' )
dlg_show()
end
|
|
|
07/20/2020, 00:28
|
#5
|
elite*gold: 0
Join Date: Jul 2020
Posts: 22
Received Thanks: 0
|
I've been using that. I found it another post that you put up. It was thanks to that I was able to get the NPC in the game. I just don't seem to be able to work out the contact script. Probably something simple like I'm missing a space or something. Once again thanks for the help much appreciated.
EDIT: Got it all working in the end.
|
|
|
 |
Similar Threads
|
How to change mobs spawn location?
04/03/2015 - SRO Private Server - 0 Replies
Hello
Anyone can write me a working query or a small release to change mobs spot?
eg. lvl 90-100 mobs to samarkand
thank you
|
[Selling] Best Arma 3 Money spawn - Gear spawn - Vehicles spawn *ON EVERY SERVER*
12/26/2014 - ArmA Trading - 0 Replies
bojkastros Arma 3 Shop ist offen - Geld Spawn - Ausrüstungs Spawn- Fahrzeuge spawnen * auf jedem Server *
Geld
2 mil = 1,50 euro
4 mil = 2,50 euro
So viel geld wie ihr wollt = 8 euro
|
[Guide/releae - How to Change new Char spawn location!]
04/13/2011 - EO PServer Guides & Releases - 10 Replies
Well, this is my first release so dont flame at me lol
Ok well On my server you probs been wondering how i figured it out how to change the spawn location of a Char when making a new one, There is 2 ways to this The first one is.
Server Files ---> AccServer ----> GetConfig.ini
Ok you will find a info within this note pad you will find Alot if info like this...
KeepConnectTimeOut=60000
|
All times are GMT +1. The time now is 03:07.
|
|