Problem with my OnPCLoginEvent npc

vijay

New member
Messages
76
Points
0
Age
33
Location
Bangalore, India.
Emulator
[SIZE=14.44444465637207px]I have a minigame called 3vs3, People they go to char select wile playing 3vs3.[/SIZE]
[SIZE=14.44444465637207px]I really hate them, all I'm trying to do is to stop them from doing that.[/SIZE]
[SIZE=14.44444465637207px]So i want to - #DOMINATION once they return back from char select.[/SIZE]

[SIZE=14.44444465637207px]Here is the script, But its not working and I got no idea why.[/SIZE]
[SIZE=14.44444465637207px]http://pastebin.com/mdc2qmSL[/SIZE]

[SIZE=14.44444465637207px]A little heads up would be grate, Thanks!
I'm still stuck with 3CeAM eathena btw.[/SIZE]

 
try OnPClogoutEvent

Code:
-       script  checkmapkick    -1,{OnPCLogoutEvent:	getmapxy(.@map$,.@x,.@y,0);	if ( .@map$ == "geffen" || .@map$ == "guild_vs1" || .@map$ == "guild_vs1-1" || .@map$ == "guild_vs1-2" || .@map$ == "guild_vs1-3" || .@map$ == "guild_vs1-4" ) {		set #DOMINATION, #DOMINATION - 1;	}	end;}
 
Back
Top