Rappelz PRIVATE SERVER Commands

12/01/2011 21:47 Yunchen#346
Quote:
Originally Posted by masaier1 View Post
kennt jmd von allen mounts die id finde nur white lydian

anybody knows from all mounts the id, i only find white lydian
Qilin - 540048
Purple Ornitho - 540102
Red Ornitho - 540026
Red Lydian - 550018
Blue Lydian - 550019
Ash Lydian - 550016
Dark Lydian - 550017
Pure White Lydian - 540100
12/07/2011 00:17 Vincencio#347
with wich programm i can edit Resource date's?
01/07/2012 01:01 conantogo#348
how can i make a pass for HV ??
i mean i wanna enter to the HV by the Teleporter !
^^
01/07/2012 10:03 Xijezu#349
Quote:
Originally Posted by Vincencio View Post
with wich programm i can edit Resource date's?
HEX-Editor.

Quote:
Originally Posted by conantogo View Post
how can i make a pass for HV ??
i mean i wanna enter to the HV by the Teleporter !
^^
Itemcode: 910000 for HV-Pass.

/run insert_item() / #insert_item() ftw.
01/07/2012 23:09 conantogo#350
sorry but my english is not verygood
I know this #insert_item(910000, 1, 1, "name")
but when i run it .. i have the pass but i cannt enter th HV
what r u mean /run insert_item() ??
01/07/2012 23:15 Eclipase#351
Quote:
Originally Posted by conantogo View Post
sorry but my english is not verygood
I know this #insert_item(910000, 1, 1, "name")
but when i run it .. i have the pass but i cannt enter th HV
what r u mean /run insert_item() ??
I can see you have inserted the HV pass for 1 second. :cool:
01/08/2012 12:47 haxti#352
Quote:
Originally Posted by conantogo View Post
sorry but my english is not verygood
I know this #insert_item(910000, 1, 1, "name")
but when i run it .. i have the pass but i cannt enter th HV
what r u mean /run insert_item() ??
it depends which HV pass is defined as the item which grants you premium access.

Go into the ETC Skript Function.lua and look for those lines:
Code:
function is_premium()
	local has_hv_item=find_item(910000)

	local state_level_1 = get_state_level( 9004 )

	if has_hv_item >=1 and state_level_1 == 0 then
	add_state(9004,1,2592000)
	return true
	end
in my case 910000 would be the right HV pass. Maybe there is another item set on your server.

Quote:
Originally Posted by Eclipase View Post
I can see you have inserted the HV pass for 1 second. :cool:
Bullshit. You can't change the item time with the insert_item command. You prolly mixed it up with add_state (even then its not 1sek but rather 1ms)
01/13/2012 03:34 ismokedrow#353
The only two functional hv passes are 910000 and 910023
01/14/2012 22:59 darckistyle#354
Hello,

I have a problem when I connect a character on the server, it does crash when connecting why?
01/15/2012 18:41 ptifou78#355
Quote:
Originally Posted by darckistyle View Post
Hello,

I have a problem when I connect a character on the server, it does crash when connecting why?
I have a problem with my car....


Plz more informations... The GS crash?the client? what client you use?

Morevover is the bad topic go there => [Only registered and activated users can see links. Click Here To Register...]
01/29/2012 02:44 Exterminator-[Fury]#356
I already got the auth server game server working but i dont know how to create a register page anyone can send me those filles ?
i cant register any account to test the game

Thnx,
01/29/2012 20:31 tournier#357
Hi have another question

I've seen a post here where a guy have been make a character with all possible skills (i can't found these post now...), so, i wan't make a GM Asura with Chaos Magician and Warlock skill, but don't know how proceed...

Sorry for my shit english ^^
01/30/2012 11:39 haxti#358
just change to other jobs via /run sv("job",jobid,"name")

be carefull: this is really buggy and it will crash your server, if you learn too many skills.

another way: /run learn_skill(skillid)
01/30/2012 12:43 tournier#359
Quote:
Originally Posted by haxti View Post
just change to other jobs via /run sv("job",jobid,"name")

be carefull: this is really buggy and it will crash your server, if you learn too many skills.

another way: /run learn_skill(skillid)
Hum... Ok, insert command like "/run sv("warlock", "301(not sure)", "myname")" ?
01/30/2012 15:44 haxti#360
no. job stays. just replace jobid or skillid.
here is a snipped of my script. you will get the point

Code:
if job == 111 then class = "Archer" else
if job == 310 then class = "Assassin" else
if job == 113 then class = "Battle_Kahuna" else
if job == 314 then class = "Battle_Summoner" else
if job == 212 then class = "Bishop" else
if job == 203 then class = "Breeder" else
if job == 110 then class = "Champion" else
if job == 302 then class = "Dark_Magician" else
if job == 312 then class = "Chaos_Magician" else
if job == 112 then class = "Druid" else
if job == 114 then class = "Evoker" else
if job == 101 then class = "Fighter" else
if job == 200 then class = "Guide" else
if job == 202 then class = "Cleric" else
if job == 201 then class = "Holywarrior" else
if job == 102 then class = "Kahuna" else
if job == 210 then class = "Knight" else
if job == 213 then class = "Priest" else
if job == 100 then class = "Rogue" else
if job == 311 then class = "Shadowhunter" else
if job == 211 then class = "Soldier" else
if job == 303 then class = "Sorcerer" else
if job == 214 then class = "Soulbreeder" else
if job == 103 then class = "Spellsinger" else
if job == 300 then class = "Stepper" else
if job == 301 then class = "Strider" else
if job == 313 then class = "Warlock" else
if job == 120 then class = "Berserker" else
if job == 121 then class = "Master_Archer" else
if job == 122 then class = "High_Druid" else
if job == 123 then class = "Great_Kahuna" else
if job == 124 then class = "Beast_Master" else
if job == 220 then class = "Crusader" else
if job == 221 then class = "Blader" else
if job == 222 then class = "Arch_Bishop" else
if job == 223 then class = "High_Priest" else
if job == 224 then class = "Master_Breeder" else
if job == 320 then class = "Slayer" else
if job == 321 then class = "Night_Stalker" else
if job == 322 then class = "Lich" else
if job == 323 then class = "Fiend" else
if job == 324 then class = "Necromancer" else