[Help] Changing map attributes

10/08/2010 17:26 RADoss#1
I'm merely looking for a way to make certain skills and items unusable in particular maps. I searched as much as I could handle so if there is already a guide out for this, my bad, i'm not the best searcher there is.
To be specific I added a new skill and a new teleport item of which I want both to be disabled when in a family map.

Any help is Greatly appreciated and yes I tried to :rtfm: for ActionDefine but its in broken english which makes the concepts hard to figure out.
10/08/2010 19:31 karnyge#2
Use this to translate your database --http://www.elitepvpers.com/forum/eo-pserver-hosting/494328-guide-how-translate-your-database-noobies.html

As to your issue, there is always a way, but i dont know that one, sorry.
10/08/2010 20:22 RADoss#3
Quote:
Originally Posted by karnyge View Post
Use this to translate your database --http://www.elitepvpers.com/forum/eo-pserver-hosting/494328-guide-how-translate-your-database-noobies.html
Thank you karnyge but I have been translating DBs for some months now, I was referring to the Action Definitions for cq_action.
Was hoping something there would let me check to see which map a user is in, but so far I have found nothing.
10/08/2010 23:17 King_Arthur#4
Quote:
Originally Posted by RADoss View Post
Thank you karnyge but I have been translating DBs for some months now, I was referring to the Action Definitions for cq_action.
Was hoping something there would let me check to see which map a user is in, but so far I have found nothing.
There is no known cq_action check for current map, and there will probably never be one till we make our own servers. I looked for one when I was making teleporter NPCs for Acme.
10/09/2010 03:41 RADoss#5
Quote:
Originally Posted by King_Arthur View Post
There is no known cq_action check for current map, and there will probably never be one till we make our own servers. I looked for one when I was making teleporter NPCs for Acme.
Good to know, but I have seen myself that you can disable certain skills and items whithin a particular map since before the divine patches.
If you could just point me in the right direction i'll figure out the rest and give you credits for the help. :D

Of course, after I had given up on this and was messing about with a new quest, I figured out how to check the map you are currently in. :D

I take full credit for it since nobody helped me, or didn't know themselves.

cq_action number 306 checks map attributes and mapdoc is the way to check or change the actual map. use = to change and == to check

for example in cq_action:
Code:
   ID        IDNext    IDNxtFail  Action  Data   Paramater
111000000  111000001  111000002   306     0     mapdoc == 1000
111000001  0           0          126     0     you~are~in~Cronus
111000002  0           0          126     0     you~are~not~in~Cronus
Cheers to all and hope this helps ^^