[Help Thread] Please post your questions here.

01/24/2014 15:07 .Haze.#2926
Quote:
Originally Posted by L3y5on View Post
Help me pless!!

How do I fix this, anyone out there know?

For your error, you must have a Sframe bad, bad launcheur or all just a bad port.
01/24/2014 15:12 Prentis#2927
Quote:
Originally Posted by mmno View Post
how to give player skill ? ( witch command and how to use it )

i got problem with register page , is say successfully create account and there is no account has been added in the SQL at all....


Please Reply

Thanks again
Make sure that all directories/Ports/IP are correct. Maybe it's just that. Or your registration page doesn't have access to the DB. Weirdest thing is that it says successful. Maybe that part is a script error.
01/24/2014 15:48 ThunderNikk#2928
@L3y5on

That is a port error
01/24/2014 17:58 L3y5on#2929
Quote:
Originally Posted by thndr View Post
@L3y5on

That is a port error

how do I fix this friend?
01/24/2014 18:50 Prentis#2930
Quote:
Originally Posted by L3y5on View Post
how do I fix this friend?
Did you restart your pc since you've set up the server?
01/24/2014 19:16 L3y5on#2931
Quote:
Originally Posted by Prentis View Post
Did you restart your pc since you've set up the server?
before yesterday when I setup everything was working perfectly fine, oh yesterday I went to open the server so that a friend could help me, my ip is fixed then had no problems, he usually comes, but after that I could no longer get :(
01/24/2014 19:27 Prentis#2932
Quote:
Originally Posted by L3y5on View Post
before yesterday when I setup everything was working perfectly fine, oh yesterday I went to open the server so that a friend could help me, my ip is fixed then had no problems, he usually comes, but after that I could no longer get :(
Maybe seeing your opt would help.
01/24/2014 19:33 L3y5on#2933
Quote:
Originally Posted by Prentis View Post
Maybe seeing your opt would help.


01/24/2014 20:10 ThunderNikk#2934
S io.auth.ip:10.1.1.12
S io.ip_address:187.5.67.116

What is forwarding your external IP to your local LAN IP server?
01/24/2014 20:29 mmno#2935
Quote:
Originally Posted by Prentis View Post
Make sure that all directories/Ports/IP are correct. Maybe it's just that. Or your registration page doesn't have access to the DB. Weirdest thing is that it says successful. Maybe that part is a script error.
all good , its all good here the script that i use " [Only registered and activated users can see links. Click Here To Register...] "


i'm noobie here may i have some help with this script

function server_buffs()

add_state(1011, 20, 259200000)

add_state(1101, 20, 259200000)

add_state(1013, 20, 259200000)

add_state(9004, 20, 259200000)

add_cstate(1101, 20, 259200000)

add_cstate(1011, 20, 259200000)

add_cstate(1013, 20, 259200000)

add_cstate(9004, 20, 259200000)

end

its for server buff , but when player log-in it don't get the buff ( b4e51c7c6f9cd671cf2bb33b2aa2d263.lua )

any idea how to give player a certain skill ? please teach me how to do it, been searching and testing in game but no use.....
01/24/2014 20:40 L3y5on#2936
Quote:
Originally Posted by thndr View Post
S io.auth.ip:10.1.1.12
S io.ip_address:187.5.67.116

What is forwarding your external IP to your local LAN IP server?
Yes, my ip external is fixed and my ip local!
01/24/2014 20:49 Cyborg2009#2937
Nobody can help me for my script for Guild Ranking?

Here is the Script :
01/24/2014 22:26 Prentis#2938
Quote:
Originally Posted by mmno View Post
all good , its all good here the script that i use " [Only registered and activated users can see links. Click Here To Register...] "


i'm noobie here may i have some help with this script

function server_buffs()

add_state(1011, 20, 259200000)

add_state(1101, 20, 259200000)

add_state(1013, 20, 259200000)

add_state(9004, 20, 259200000)

add_cstate(1101, 20, 259200000)

add_cstate(1011, 20, 259200000)

add_cstate(1013, 20, 259200000)

add_cstate(9004, 20, 259200000)

end

its for server buff , but when player log-in it don't get the buff ( b4e51c7c6f9cd671cf2bb33b2aa2d263.lua )

any idea how to give player a certain skill ? please teach me how to do it, been searching and testing in game but no use.....
Probably didn't do this...

Find this:

Code:
function on_server_init()
	roaming()
	rare_mob()
	guardian_spawn()
	random_respawn()
end
Change it for this:

Code:
function on_server_init()
	roaming()
	rare_mob()
	guardian_spawn()
	random_respawn()
	server_buffs()
end
Basically add this on the function on server init.
server_buffs()

DON'T FORGET TO COMPRESS

And for the skill you mean like this?
/run learn_skill("1002")
01/24/2014 22:30 mmno#2939
Quote:
Originally Posted by Prentis View Post
Probably didn't do this...

Find this:

Code:
function on_server_init()
	roaming()
	rare_mob()
	guardian_spawn()
	random_respawn()
end
Change it for this:

Code:
function on_server_init()
	roaming()
	rare_mob()
	guardian_spawn()
	random_respawn()
	server_buffs()
end
Basically add this on the function on server init.
server_buffs()

DON'T FORGET TO COMPRESS

And for the skill you mean like this?
/run learn_skill("1002")
-----
function on_server_init()
roaming()
rare_mob()
guardian_spawn()
random_respawn()
server_buffs()
end

function server_buffs()
add_state(1011, 20, 259200000)
add_state(1101, 20, 259200000)
add_state(1013, 20, 259200000)
add_state(9004, 20, 259200000)
add_cstate(1101, 20, 259200000)
add_cstate(1011, 20, 259200000)
add_cstate(1013, 20, 259200000)
add_cstate(9004, 20, 259200000)
end

this is what i have alrady.... and not working for me
01/24/2014 22:36 Prentis#2940
Quote:
Originally Posted by mmno View Post
-----
function on_server_init()
roaming()
rare_mob()
guardian_spawn()
random_respawn()
server_buffs()
end

function server_buffs()
add_state(1011, 20, 259200000)
add_state(1101, 20, 259200000)
add_state(1013, 20, 259200000)
add_state(9004, 20, 259200000)
add_cstate(1101, 20, 259200000)
add_cstate(1011, 20, 259200000)
add_cstate(1013, 20, 259200000)
add_cstate(9004, 20, 259200000)
end

this is what i have alrady.... and not working for me
Hmm...

You might want to try this:

Add this to the on_login script (92aaf4ae4ee42eb41693728da93f301a)

Code:
	
        add_state(1011, 20, 259200000)
	add_state(1101, 20, 259200000)
	add_state(1013, 20, 259200000)
	add_state(9004, 20, 259200000)
	add_cstate(1101, 20, 259200000)
	add_cstate(1011, 20, 259200000)
	add_cstate(1013, 20, 259200000)
	add_cstate(9004, 20, 259200000)
Add it right after this line:
Code:
function on_login( name )
P.S. I might be mistaken and this is completely hypothetical, but I think that the server init only takes on the event_states, because the event_states work for me, but the states don't. Maybe just me.