[Help Thread] Please post your questions here.

06/17/2013 20:15 Dyson49#1921
Hmm. Are you compressing it?
06/17/2013 20:43 rickske95#1922
yes
06/17/2013 21:09 Dyson49#1923
do you restart captain herlock
06/17/2013 21:48 rickske95#1924
yea
06/17/2013 21:56 tokesbowls#1925
Quote:
Originally Posted by tokesbowls View Post
Hello,
So my server has been running for about 1 month now and the exp seems really high,
Would anyone be able to tell me:
Retail EXP =
100% EXP =
200%EXP =
300% EXP =

Thank you for your time and help, Keep up the good work

Quote:
Originally Posted by Dyson49 View Post
Hi...

x25 = The official x25

...
Could you please explain this more, here is mine. Do i just put 25 in my game.exp_rate?

F game.exp_rate:36
F game.item_drop_rate:289
F game.gold_drop_rate:166.25
F game.chaos_drop_rate:19
F game.party_drop_rate:275.5
F game.party_exp_rate:34.25

Could anyone explain to me how to change a german arcadia to english
06/17/2013 22:32 Minotaurus-Rappelz#1926
Hi! My gameserver.opt says this:

Code:
S game.exp_rate:30
S game.item_drop_rate:40
S game.gold_drop_rate:100
S game.chaos_drop_rate:60
S game.party_drop_rate:120
S game.party_exp_rate:40
06/17/2013 22:36 ThunderNikk#1927
Mine

Code:
S game.exp_rate:10
S game.item_drop_rate:1
S game.gold_drop_rate:1
S game.chaos_drop_rate:1
S game.party_drop_rate:1.25
S game.party_exp_rate:1.25
And how did you get a German Arcadia? Or what makes you think it is German?

As far as I knew all of the server files (databases) have come from the Middle East version.
06/17/2013 23:18 Minotaurus-Rappelz#1928
Quote:
Originally Posted by Dyson49 View Post
Why is this script not working?

Code:
-- Lua ½ºÅ©¸³Æ® ¾ÏÈ£È*
function get_module_name()
             return "on_login"
end




function on_login( name )

 if get_value("permission") > 0 then
  notice(name.' is now connected.');
 end
 end
Yes this code is bugging and I would like to add the function too
06/17/2013 23:47 Azreil#1929
Guys....any resolutions to my three questions ? Really would be greatly appreciated for any help fixing them. Thank you very much guys.
06/17/2013 23:50 ThunderNikk#1930
I do this for a GM only function

Code:
local permission = gv("permission")
	
	if permission == 100 then
        notice("GM Buffs For All")

I use mine for GM only buffs and it works. So I am going to try and blend it with the on_login lua and try and make something work for you.

Code:
function get_module_name()
             return "on_login"
end

function on_login( name )

        local permission = gv("permission")
	
	if permission == 100 then
        notice ("'name' is now connected.")
You could also try with your if permission > 1 but I think it has more to do with the " " on the notice message.

I am not sure if the variable for 'name' will work right or not though

Quote:
Originally Posted by Azreil View Post
Guys....any resolutions to my three questions ? Really would be greatly appreciated for any help fixing them. Thank you very much guys.
Try this for #2

USE Arcadia
UPDATE NPCResource
SET local_flag = -1
WHERE contact_script LIKE '%NPC_event_2012_Xmas%'
06/18/2013 00:05 Minotaurus-Rappelz#1931
It doesn't work :(

I really dont get it


This is the error message

[Only registered and activated users can see links. Click Here To Register...]

Hmm... if the function name doesn't work do you know what will?
06/18/2013 03:33 ThunderNikk#1932
I am trying to figure out how to get the name string to work.

The notice message does work only it posts the notice to the server before your client can log in. So the GM logging in does not see it.

My other connected clients do see it, but I still need to get the name string to work.

I will let you know what I find out.
06/18/2013 10:02 asthos#1933
Quote:
Originally Posted by Dyson49 View Post
Why is this script not working?

Code:
-- Lua ½ºÅ©¸³Æ® ¾ÏÈ£È*
function get_module_name()
             return "on_login"
end

function on_login( name )

 if get_value("permission") > 0 then
  notice(name.' is now connected.');
 end
 end
Ok i have a solution for this Problem (with an additional nice command) and another Question.
And i have find this link:
[Only registered and activated users can see links. Click Here To Register...]

Solution:
[code]
notice("Hey, "..get_value("name").." is online.")
notice(get_value("name").." is online")
notice("<#8501FF>Hey, there are "..get_env("game.user_count").." Player online</#8501FF>")

You will get this:


But notice:

If you will log in with the player "Subject" You couldn't see the notice,
only the other player on the server see this notice.



Question:

How can I Edit the Text in the red Collum?
06/18/2013 11:14 Azreil#1934
Try this for #2

USE Arcadia
UPDATE NPCResource
SET local_flag = -1
WHERE contact_script LIKE '%NPC_event_2012_Xmas%'[/quote]



(Solved question #2)
06/18/2013 12:45 asthos#1935
Ok now another Question about deleting (or hiding) xmas things

I want to hide the xmas objekts (Tree and Gifts)
The Event_NPC's are in the nirvans (local_flag!=0)

but where cani find the tree?