i don't know what i did but i can't move using a s d w in my server @@
Check the key binds for WASD check the hot key settings it sounds like you may have set Epic 5 instead of default.Quote:
i did and i saw that "wasd" is enabled ... but i cat move only like this
alt + "wasd"
gonna bumb it (first and final time) - since maybe the ones who know the answer probably didn't see it back there :)Quote:
Hey, I've got two questions. I did search but couldn't find an answer.
First: I've seen that there are Pets that can buff you - but i can't find it here ( atm i used server event buffs on server start but those don't apply to pets and if I add cstate to the buffs they wont get applied at serverstart)
Second: My cards seem off - i.e. Unity of Force is +60 str with a +10 card - other buff cards are off as well (compared to live server +5 i need +12 on my pserver) where can i look to fix that?
PS:
Third: Any idea why energy of gold is not working (ID: 2013204)
I'm using the 9.1 files from the how to topic
my goal is to get the server as close to the original 9.1
Thank you
cheers
Quote:
gonna bumb it (first and final time) - since maybe the ones who know the answer probably didn't see it back there :)
The Command you mean is cast_world_state.Quote:
First: I've seen that there are Pets that can buff you - but i can't find it here ( atm i used server event buffs on server start but those don't apply to pets and if I add cstate to the buffs they wont get applied at serverstart)
All skillcard enhancements are stored in the Skillresource / Skillstage.Quote:
Second: My cards seem off - i.e. Unity of Force is +60 str with a +10 card - other buff cards are off as well (compared to live server +5 i need +12 on my pserver) where can i look to fix that?
The script_text of this Item is on_use_item.Quote:
Third: Any idea why energy of gold is not working (ID: 2013204)
if ID == 2012832 then --some code what this item should do. end
thank you raskim !Quote:
The Command you mean is cast_world_state.
Execute it with these Param's. /run cast_world_state(state_id,level,time,block_time)
[block_time means, like the Blessing Buffs from CS. They are only useable every 30 minutes i think.]
All skillcard enhancements are stored in the Skillresource / Skillstage.
The script_text of this Item is on_use_item.
This Function is stored in the DarkMarket.lua
But in the Repack of Revolution, there is no specific function for the Item ID - 2013204
you should add a block like this:
Code:if ID == 2012832 then --some code what this item should do. end
on server_init.lua wont work - only added manually once logged in in game (with /run .... - is there another way to make it on login for all chars and pets (and pet summons) ?Quote:
add_event_state(9004,1) - ok
add_event_state(164407,25) - ok
add_event_state(1013,15) - ok
cast_world_state(2506, 100, 999999999, 0) - not working
cast_world_state(2508, 100, 999999999, 1) - not working
cast_world_state(2605, 100, 999999999, 100) - not working
Nope, since this command only works on runtime. On Server init does, like the name says, execute it just 1 time on startup of the Server. And you should know that on startup, nobody can be online ^^Quote:
thank you raskim !
on server_init.lua wont work - only added manually once logged in in game (with /run .... - is there another way to make it on login for all chars and pets (and pet summons) ?
thank you
cheers