Register for your free account! | Forgot your password?

Go Back   elitepvpers > MMORPGs > Rappelz > Rappelz Private Server
You last visited: Today at 08:01

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

Advertisement



[Release] Heaven's Bazaar

Discussion on [Release] Heaven's Bazaar within the Rappelz Private Server forum part of the Rappelz category.

Reply
 
Old   #1
 
HeavenOnlyWishes's Avatar
 
elite*gold: 0
Join Date: Jul 2011
Posts: 236
Received Thanks: 74
[Release] Heaven's Bazaar

Heaven's Bazaar



Before we get on with this "tell all", let me first say, I do not and will not give support for any of the releases from other developers nor the server files themselves. If you have questions pertaining to either of those two items, please ask the person who developed them. I will however answer any questions that pertain to modification of the databases or any lua scripting questions. I will continue to update this when I have the free time. Updates will include all of my stuff, SQL related and scripts that I had released in the past and any that I decide to make in the future. Many of the things listed here are all based on queries and scripts I designed ages ago, if you weren't around back then, then please save your complaints for someone who cares.

Please note that the following is based on the most current server files (8.1), older versions of the server files may have difficulty operating, unless listed as backwards compatible.

The following will be documented and fully tutorial-ed for your convenience.


SQL Queries:

These queries are designed to help you sift through the massive databases to help find specific articles.

Step 1) Open MSSQL and login.
Step 2) Select New Query from the top menu.
Step 3) Copy and Paste one of the following into the New Query window.
Step 4) Click Execute from the top menu.



LUA Scripts:

The following scripts are my own personal creations, as such anyone can use them, however, I only ask that you give me credit when you do.



Tid-Bits:

This is just a few things I found quite interesting, and thought you might be interested to know.

HeavenOnlyWishes is offline  
Thanks
5 Users
Old 05/12/2013, 12:42   #2
 
Pyrochina's Avatar
 
elite*gold: 0
Join Date: May 2013
Posts: 43
Received Thanks: 1
Hi! Thank you so much for these scripts. I just have a little question, what are the three codes of this: (Codes taken from Stage two)

add_state(164407--> Buff ID,500 --> ???,8640000--> ???) -- Halisha +1000
Pyrochina is offline  
Old 05/12/2013, 14:32   #3
Moderator


 
ThunderNikk's Avatar
 
elite*gold: 1
Join Date: Dec 2012
Posts: 4,780
Received Thanks: 1,461
Quote:
Originally Posted by Pyrochina View Post
Hi! Thank you so much for these scripts. I just have a little question, what are the three codes of this: (Codes taken from Stage two)

add_state(164407--> Buff ID,500 --> ???,8640000--> ???) -- Halisha +1000
Should be add_state(Buff_ID, Buff_Level, Buff_Duration)
ThunderNikk is offline  
Thanks
1 User
Old 05/12/2013, 15:27   #4
 
Pyrochina's Avatar
 
elite*gold: 0
Join Date: May 2013
Posts: 43
Received Thanks: 1
Would this work instead?

add_event_state(Buff ID ,Buff Lvl)
Pyrochina is offline  
Old 05/12/2013, 15:52   #5
Moderator


 
ThunderNikk's Avatar
 
elite*gold: 1
Join Date: Dec 2012
Posts: 4,780
Received Thanks: 1,461
Quote:
Originally Posted by Pyrochina View Post
Would this work instead?

add_event_state(Buff ID ,Buff Lvl)
That should give a server wide buff as an event state it will effect everyone who logs on the same. No time duration.
ThunderNikk is offline  
Thanks
2 Users
Old 05/12/2013, 16:21   #6
 
Pyrochina's Avatar
 
elite*gold: 0
Join Date: May 2013
Posts: 43
Received Thanks: 1
That's what I want thndr can you go on the help thread i have question
Pyrochina is offline  
Old 05/12/2013, 17:56   #7
 
HeavenOnlyWishes's Avatar
 
elite*gold: 0
Join Date: Jul 2011
Posts: 236
Received Thanks: 74
Yes, you can use the add_event_state() and remove_event_state() built in functions instead of add_state(); These scripts were designed before the add_event_state() function was built into the game system.

I'll make a new version of the Automated Buff System here soon that's made for the newest files soon. As well as a Buff NPC script, and post them.
HeavenOnlyWishes is offline  
Thanks
1 User
Old 05/23/2013, 02:02   #8
 
Pyrochina's Avatar
 
elite*gold: 0
Join Date: May 2013
Posts: 43
Received Thanks: 1
Hi! I don't know if you could help me make a simple buff for everyone on log in buff script and set it up to work because none of these work for me. Contact me on Skepy
Pyrochina is offline  
Old 05/23/2013, 02:23   #9
Moderator


 
ThunderNikk's Avatar
 
elite*gold: 1
Join Date: Dec 2012
Posts: 4,780
Received Thanks: 1,461
Add the following to server_init (b4e51c7c6f9cd671cf2bb33b2aa2d263).lua

At the top of the .lua script add this...

Code:
        ServerBuff()
In with what is already there...

Code:
function on_server_init()
	roaming()
	rare_mob()
	guardian_spawn()
	random_respawn()
end
So it looks like this...

Code:
function on_server_init()
	roaming()
	rare_mob()
	guardian_spawn()
	random_respawn()
        ServerBuff()
end
And at the bottom of the script add the buff function...

Code:
function ServerBuff()
        add_event_state(1013,20)
        add_event_state(1007,15)
        add_event_state(1008,15)
        add_event_state(1002,10)
        add_event_state(1001,10)
end
Restart your servers.

You can change the buffs and or buff levels all you want.
ThunderNikk is offline  
Old 05/24/2013, 01:25   #10
 
HeavenOnlyWishes's Avatar
 
elite*gold: 0
Join Date: Jul 2011
Posts: 236
Received Thanks: 74
Or you can just add the add_event_state() statements. LUA in Rappelz doesn't require you to setup a function to run most of it's built in methods. And since on_server_init() is already a setup function, you can just add the statements to that function... rather than using a stacked function.

So it would look like this:

Code:
function on_server_init()
	roaming()
	rare_mob()
	guardian_spawn()
	random_respawn()
        add_event_state(1013,20)
        add_event_state(1007,15)
        add_event_state(1008,15)
        add_event_state(1002,10)
        add_event_state(1001,10)
end
HeavenOnlyWishes is offline  
Thanks
3 Users
Old 05/25/2013, 13:35   #11
 
elite*gold: 0
Join Date: May 2013
Posts: 11
Received Thanks: 0
i just downloaded ABS Stage 3 Full for my 8.1 server i put the line on my own resource
as you said in instruction and i put the lua file but nothing works ?
muhaadiga is offline  
Old 05/25/2013, 17:32   #12
 
HeavenOnlyWishes's Avatar
 
elite*gold: 0
Join Date: Jul 2011
Posts: 236
Received Thanks: 74
Again.... these systems were designed for 6.3/6.4.... not the 8.1 server files, I can't guarantee that they will work with current server versions. The timers certainly wont....

I'll release new ones that are updated for the 8.1 server files probably some time today.
HeavenOnlyWishes is offline  
Old 05/25/2013, 19:31   #13
 
elite*gold: 0
Join Date: May 2013
Posts: 2
Received Thanks: 0
No your way is wrong
just do it like me

function get_module_name()
return "server_init"
end

function on_server_init()
roaming()
rare_mob()
guardian_spawn()
random_respawn()
ServerBuffs()
end

function ServerBuffs()
add_event_state(9948,10)
add_event_state(9947,5)
add_event_state(9946,5)
add_event_state(9945,1)
add_event_state(9944,1)
add_event_state(1101,99)
add_event_state(4553,1)
add_event_state(4003,1)
add_event_state(9923,1)
add_event_state(1013,40)
add_event_state(13423,350)
end

This work in my server 100%
Raigeka is offline  
Old 05/25/2013, 19:36   #14
 
HeavenOnlyWishes's Avatar
 
elite*gold: 0
Join Date: Jul 2011
Posts: 236
Received Thanks: 74
Again.... An unnecessary function.... I'm a professional programmer, and I've been programming with LUA for the past 3 years.... Don't tell me I'm wrong, when I'm the one with 64 Thanks....



P.S. Updated Bazaar btw
HeavenOnlyWishes is offline  
Old 05/25/2013, 19:48   #15
Moderator


 
ThunderNikk's Avatar
 
elite*gold: 1
Join Date: Dec 2012
Posts: 4,780
Received Thanks: 1,461
Quote:
Originally Posted by HeavenOnlyWishes View Post
Again.... An unnecessary function.... I'm a professional programmer, and I've been programming with LUA for the past 3 years.... Don't tell me I'm wrong, when I'm the one with 64 Thanks....



P.S. Updated Bazaar btw
But your script does not work...



according to Pyrochina at least, I did not try it myself but since mine is scripted and mine is working I really had no need to try.
ThunderNikk is offline  
Reply


Similar Threads Similar Threads
Makai's Bazaar
10/21/2012 - Rappelz Private Server - 4 Replies
* Closed * For a complete and current listing go HERE.
[Bazaar]-Bug!
05/18/2012 - WarRock Guides, Tutorials & Modifications - 24 Replies
Heyho Warrock Hacker-Community, hier in dieser Topic möchte ich euch qerne einen Buq vorstellen. Dieser Bug ist simpel! Es ist ein Buq, wie man in die Treppen laufen kann! How-To: 1. Geht zu dieser Treppe. http://imgur.com/UfRah.jpg. 2. Stellt euch qenau so an diese Treppe. http://imgur.com/jmQSy.jpg 3. Dann lauft ihr mit der "A" Taste qeqen die Treppe und drückt abwechselnd "c" und Leertaste. 4. Dann müsste das so aussehen:http://i.imgur.com/Qnmw2.jpg Ihr habt es geschafft!
Bazaar hack, any still work?
07/14/2006 - Final Fantasy XI - 0 Replies
I've asked some friends to help me find them and they said mastly all of them are taken down because they don't work. also SE flags you when you use it.....but I don't care lol
Vendor/Bazaar Stealing
10/27/2003 - General Gaming Discussion - 1 Replies
1. öffnet n Bazaar Terminal mit /ui action terminalAuctionUse 2. geht zu nem Bank Terminal und öffnet es.. (lasst beide terminals offen, bazaar&bank) 3. jetzt legt ihr euer geld(alles) in die bank und lasst den withdraw screen offen 4. wählt euer item aus das ihr kaufen wollt-> es kommt ne bestätigungs frage diese müsst ihr vorerst offen lassen wie alles andere 5. nu highlighted euer bank terminal und fährt mit eurem cursor über den bestätigungs button der withdraw funktion (noch nicht...



All times are GMT +2. The time now is 08:01.


Powered by vBulletin®
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
SEO by vBSEO ©2011, Crawlability, Inc.
This site is protected by reCAPTCHA and the Google Privacy Policy and Terms of Service apply.

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