[5165]available skill

01/08/2012 18:44 $-Tiger-$#1
hello

here's my problem i just asking about how to available skill in map and how to unavailable skill in maps like (fb , ss ,etc). thanks.:D
01/08/2012 20:44 pro4never#2
go to your skill handler for the skill... check what map you are on and if it's a map you don't want it used on then simply return;

Note: You can also block the client from even trying to use it by using the map status flags and setting it as market
01/10/2012 14:55 $-Tiger-$#3
you mean to make something like that to make skill unavailable work

if (Loc.Map == 1036)
return;

but what about make FB and SS for E.x:map like market if i want available fb and ss what i can do .
look at this pic i want to available skill like fb and ss like this in market.
[Only registered and activated users can see links. Click Here To Register...]

thanks Pro:rolleyes:
01/10/2012 16:59 pro4never#4
Quote:
Originally Posted by $-Tiger-$ View Post
you mean to make something like that to make skill unavailable work

if (Loc.Map == 1036)
return;

but what about make FB and SS for E.x:map like market if i want available fb and ss what i can do .
look at this pic i want to available skill like fb and ss like this in market.
[Only registered and activated users can see links. Click Here To Register...]

thanks Pro:rolleyes:
Change the map flag you send to the client.

Flags control things such as if you can use skills on the market (client side) and a bunch of other things most sources don't handle (does your position save there if you logout, free pking, tournament flag, etcetc)

Not sure what the database is in your source... I know in binaries and in albetros it's cq_maps
01/11/2012 12:32 $-Tiger-$#5
Quote:
Originally Posted by pro4never View Post
Change the map flag you send to the client.

Flags control things such as if you can use skills on the market (client side) and a bunch of other things most sources don't handle (does your position save there if you logout, free pking, tournament flag, etcetc)

Not sure what the database is in your source... I know in binaries and in albetros it's cq_maps
could u explain what do u mean by map flags do you mean Gamemap.ini in client side.