You last visited: Today at 16:12
Advertisement
[Help Thread] Please post your questions here.
Discussion on [Help Thread] Please post your questions here. within the Rappelz Private Server forum part of the Rappelz category.
04/13/2018, 02:45
#7066
elite*gold: 0
Join Date: Dec 2017
Posts: 217
Received Thanks: 26
[help] where is the itemshop script for rappelz9.4?
my mean:when i buy a itme on webmall how to send to character?
thanks ...
04/13/2018, 02:50
#7067
elite*gold: 0
Join Date: Jun 2014
Posts: 88
Received Thanks: 12
Quote:
Originally Posted by
12sky2Server
[help] where is the itemshop script for rappelz9.4?
my mean:when i buy a itme on webmall how to send to character?
thanks ...
Here :
04/13/2018, 10:16
#7068
elite*gold: 0
Join Date: Feb 2018
Posts: 21
Received Thanks: 0
Quote:
Originally Posted by
ThunderNikk
Nothing new about Ursa though...and what files are you working with that don't have ursa?
Is the boss bear at the end a big PINK bear?
If so it is Ursa and you access it with the selection under the menu button next to death match.
here is this dungeon (cave) files which I am asking you have
D
04/13/2018, 12:46
#7069
elite*gold: 0
Join Date: Nov 2010
Posts: 68
Received Thanks: 5
Regi Page
Quote:
Originally Posted by
lilnani
Please feel free to ask any question related to Rappelz PServer creation in this topic.
Hi iam looking for an Registration Page for 9.4 Files
04/13/2018, 16:18
#7070
elite*gold: 0
Join Date: Sep 2015
Posts: 604
Received Thanks: 1,204
Quote:
Originally Posted by
Skolko
here is this dungeon (cave) files which I am asking you have
D
That's 9.5 Dungeon Devildome.
Don't know if anyone wants to share that yet.
but anyway: If you want to have that dungeon, ask for Devildome or 9.5 Dungeon xD
04/13/2018, 18:19
#7071
elite*gold: 50
Join Date: Mar 2012
Posts: 1,045
Received Thanks: 450
Quote:
Originally Posted by
Skolko
here is this dungeon (cave) files which I am asking you have
D
Quote:
Originally Posted by
InkDevil
That's 9.5 Dungeon Devildome.
Don't know if anyone wants to share that yet.
but anyway: If you want to have that dungeon, ask for Devildome or 9.5 Dungeon xD
As far i know somebody extract this and release map files for it
04/14/2018, 04:58
#7072
elite*gold: 0
Join Date: Sep 2015
Posts: 604
Received Thanks: 1,204
Quote:
Originally Posted by
アルカード
As far i know somebody extract this and release map files for it
Okay, that's correct, but if he wants the complete dungeon-script/system/etc, he won't find it there
04/14/2018, 14:48
#7073
elite*gold: 0
Join Date: Apr 2018
Posts: 3
Received Thanks: 0
i want to add news tools to server like Weapons , Wings , Clothing Accessories....... , i can creat tools but i dont know how to add them in server
04/14/2018, 21:07
#7074
elite*gold: 0
Join Date: Jun 2014
Posts: 88
Received Thanks: 12
Quote:
Originally Posted by
InkDevil
Okay, that's correct, but if he wants the complete dungeon-script/system/etc, he won't find it there
So...how can we do it ?! xD
04/15/2018, 00:17
#7075
elite*gold: 50
Join Date: Mar 2012
Posts: 1,045
Received Thanks: 450
Quote:
Originally Posted by
Min@to
So...how can we do it ?! xD
learn SQL database and lua
04/15/2018, 03:27
#7076
elite*gold: 0
Join Date: Jun 2014
Posts: 88
Received Thanks: 12
Quote:
Originally Posted by
アルカード
learn SQL database and lua
LOL'z
04/16/2018, 03:48
#7077
elite*gold: 465
Join Date: Nov 2011
Posts: 97
Received Thanks: 23
hey guys
I wanna make an event in my server so I create a new item(box) but I just wanna know how can i make it drop from any Monster the player kill
04/16/2018, 14:27
#7078
elite*gold: 0
Join Date: Nov 2012
Posts: 948
Received Thanks: 259
Quote:
Originally Posted by
Wael™
hey guys
I wanna make an event in my server so I create a new item(box) but I just wanna know how can i make it drop from any Monster the player kill
there has been a lot of codes to do that i personally use this one
PHP Code:
function drob_the_box ( monster_level , monster_type )
local player_level = gv ( "lv" )
if player_level >= monster_level - 15 and player_level <= monster_level + 15 then
local persentage = math . random ( 1 , 100 )
local needed_persentage
if monster_type == 1 then
needed_persentage = 60
elseif monster_type == 2 then
needed_persentage = 70
elseif monster_type == 3 then
needed_persentage = 70
elseif monster_type == 4 then
needed_persentage = 80
elseif monster_type == 5 then
needed_persentage = 70
elseif monster_type == 6 then
needed_persentage = 75
elseif monster_type == 7 then
needed_persentage = 70
elseif monster_type == 8 then
needed_persentage = 75
elseif monster_type == 9 then
needed_persentage = 78
elseif monster_type == 10 then
needed_persentage = 70
elseif monster_type == 11 then
needed_persentage = 65
elseif monster_type == 12 then
needed_persentage = 60
elseif monster_type == 13 then
needed_persentage = 70
elseif monster_type == 14 then
needed_persentage = 70
elseif monster_type == 15 then
needed_persentage = 75
end
if persentage >= needed_persentage then
-- add the id instead of the xxx --
drop_item ( math . random ( gv ( "x" )- 25 , gv ( "x" )+ 25 ), math . random ( gv ( "y" )- 25 , gv ( "y" )+ 25 ), gv ( "layer" ), xxx , 1 )
end
end
end
04/21/2018, 18:33
#7079
elite*gold: 0
Join Date: Nov 2016
Posts: 50
Received Thanks: 1
i got this little probleme with my server idon't know if only with me or everyone
any way i have Server 9.4 (revolution) when i try to equippe emblem and unequippe it it won't removed from the character name on the screen even though it removed normally from the inventory any idea how can i fix it
04/22/2018, 10:51
#7080
elite*gold: 465
Join Date: Nov 2011
Posts: 97
Received Thanks: 23
hey there
I have the same issue so it's not on your end
good luck
Similar Threads
[Helping Topic] 24/7 Helping Services!
08/27/2008 - EO PServer Hosting - 31 Replies
stucked on anything while setuping your server?
post your problem here and you will get answer as fast as possible better than spamming with posts :cool:
first of all try reading Ahmedpotop's Pserver All thing guide.
if your couldn't solve it out post your problem down here
""That includes PHP rankings pages / registrations pages / Status pages""
All times are GMT +2. The time now is 16:12 .