[Help Thread] Please post your questions here.

02/09/2014 17:53 malaysiawap#3046
Hello,

Just want to know, how to add_state(1501,1, 360000) via PHP ?. i tried but i didnt getting any buff.


PHP Code:
$sql "INSERT INTO dbo.State ( [owner_id] ,[summon_id] ,[code] ,[level] ,[duration] ,[remain_time] ,[base_damage] ,[remain_fire_time] ,[state_value] ,[state_string_value] ,[enable] ) VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)";

$params = array(101502136000036000000001); 
02/09/2014 18:22 ismokedrow#3047
Via php is gonna be pretty sucky for you mate, if you want such a thing you're best going to C# (ASPX) and coding a telnet client who issues game commands
02/09/2014 22:59 Cha0sEmp3ror#3048
Quote:
Can someone help me ?:S after i made this update iam getting error : client requested higher version than the latest version known to server! about to exploit?: [contents: 22, module: SR_Client, requested ver: 212, latest ver: 0
02/09/2014 23:06 ThunderNikk#3049
Would help if you listed what update process you were using.
02/10/2014 01:39 speedkaka13#3050
guys can you help me with removing wrath please ?
i did use the #remove_state code in my game server but didn't work..
my wrath is lvl 3 (8 hours) and my character name is "Newbie" wrath id is : 5997
#remove_state(5997, get_state_level(5997), "Newbie")
and
#remove_state(5997, 3, "Newbie")
still not working, please help

ow and btw i used google to find some good results but nothing.. as always :P
thanks in advance people
02/10/2014 11:00 malaysiawap#3051
Quote:
Originally Posted by speedkaka13 View Post
guys can you help me with removing wrath please ?
i did use the #remove_state code in my game server but didn't work..
my wrath is lvl 3 (8 hours) and my character name is "Newbie" wrath id is : 5997
#remove_state(5997, get_state_level(5997), "Newbie")
and
#remove_state(5997, 3, "Newbie")
still not working, please help

ow and btw i used google to find some good results but nothing.. as always :P
thanks in advance people

try this ..

/run remove_state(2031, get_state_level(2031), "Char Name") -- Wrath Boost

/run remove_state(5997, get_state_level(5997), "Char Name") -- Wrath Auto

/run remove_state(5999, get_state_level(5999), "Char Name") -- Wrath

/run remove_state(201025, get_state_level(201025), "Char Name") -- Wrath Auto

/run remove_state(201027, get_state_level(201027), "Char Name") -- Wrath Auto
02/10/2014 23:46 eziorav#3052
Quote:
Originally Posted by speedkaka13 View Post
guys can you help me with removing wrath please ?
i did use the #remove_state code in my game server but didn't work..
my wrath is lvl 3 (8 hours) and my character name is "Newbie" wrath id is : 5997
#remove_state(5997, get_state_level(5997), "Newbie")
and
#remove_state(5997, 3, "Newbie")
still not working, please help

ow and btw i used google to find some good results but nothing.. as always :P
thanks in advance people
you better use this way it's easy because usually remove state doesn't not work or i think it is not a valid command
#add_state(5997, 999,0, "Newbie")
PS:
999: the power of the state
0: the time left to auto-remove state from player
02/11/2014 01:38 speedkaka13#3053
Quote:
Originally Posted by malaysiawap View Post
try this ..

/run remove_state(2031, get_state_level(2031), "Char Name") -- Wrath Boost

/run remove_state(5997, get_state_level(5997), "Char Name") -- Wrath Auto

/run remove_state(5999, get_state_level(5999), "Char Name") -- Wrath

/run remove_state(201025, get_state_level(201025), "Char Name") -- Wrath Auto

/run remove_state(201027, get_state_level(201027), "Char Name") -- Wrath Auto
Thank you so much the middle one worked for me
Code:
/run remove_state(5999, get_state_level(5999), "Char Name") -- Wrath
Quote:
Originally Posted by eziorav View Post
you better use this way it's easy because usually remove state doesn't not work or i think it is not a valid command
#add_state(5997, 999,0, "Newbie")
PS:
999: the power of the state
0: the time left to auto-remove state from player
thanks for your help, i tried to do this with a GM tool earlier but didn't work

Appreciate your help guys god bless you :)
02/11/2014 02:22 KirieZ#3054
Can you guys tell me more about the server? something about the dev or source?
02/11/2014 03:45 L3y5on#3055
Hello again,

I wonder of you, if anyone here has the updated ACRE tool that works with the RDBs 8.2, please if anyone has and can provide me will be very grateful :)
02/11/2014 07:11 sona998#3056
Updating/hashing existing skill icon images works fine, I can update for example existing icons with the same name, i.e. icon_creature_active3_0003(ascii).tga, just save whatever tga icon I like, hash it and put it in the resource folder.

But when I make my own skill icon name, it doesn't work. i.e. I name my skill icon image whatever I like, hash it, put it in the resource foldier, and update the skill db to use the skill icon name but when I start the game up, the skill icon is just empty ( has no image ).

What is causing this?
02/11/2014 07:30 .BlackCat.#3057
Quote:
Originally Posted by sona998 View Post
Updating/hashing existing skill icon images works fine, I can update for example existing icons with the same name, i.e. icon_creature_active3_0003(ascii).tga, just save whatever tga icon I like, hash it and put it in the resource folder.

But when I make my own skill icon name, it doesn't work. i.e. I name my skill icon image whatever I like, hash it, put it in the resource foldier, and update the skill db to use the skill icon name but when I start the game up, the skill icon is just empty ( has no image ).

What is causing this?
Make sure to add your icone on 02_item.spr file like that :

Code:
IconName
1
IconName.jpg
34,34
0
02/11/2014 11:00 sona998#3058
Quote:
Originally Posted by .BlackCat. View Post
Make sure to add your icone on 02_item.spr file like that :

Code:
IconName
1
IconName.jpg
34,34
0
Thanks for the reply. I've got sprite_icon(ascii).spr, and added a new entry at the end using a text editor. Then hashed this spr file and placed it in the resource folder, but still the icon is empty...
02/11/2014 12:37 ThunderNikk#3059
02_item.spr
02/11/2014 14:26 Sherock#3060
i had some problem with " Dantenbank Manager 2013 "

when i open "petresource" 8.2

its gives me errors

how can i open "petresource" ???