skyalpha
Members-
Posts
3 -
Joined
-
Last visited
Recent Profile Visitors
The recent visitors block is disabled and is not being shown to other users.
skyalpha's Achievements
-
I Would like to have an expansive Team Death Match like this one on the video. Battle Ground Example It's much like Alayne's Death Match, but this Battle Ground is expansive, and spawns at random spot. I have little experience on rAthena scripting, I would take months to customize or create something. Thx in Advance.
-
I just tried to use your script for rathena and got error at this piece of code: set [email protected], 0; set [email protected], bg_create_team($deathMatchMap$,$warpPointRed[0],$warpPointRed[1]); set [email protected], bg_create_team($deathMatchMap$,$warpPointBlue[0],$warpPointBlue[1]);
-
Should BE: //===== Config ===== set $precogmct,300; // Price (in CashPoints) for 15 days set $daysweek,15; //15 days for 2 weeks VIP function script vipct { mes "I can provide you "+$daysweek+" days of VIP subscription in exchange for "+$precogmct+" CashPoints"; mes "What do you thing?"; if(select("Yes, I want IT!!:No, not for now.") == 2) close; if(#CASHPOINTS < $precogmct){ mes "You don't have enough CASHPOINTS!! Come back later."; close; } if(getgroupid() == 0 || getgroupid() == 5){ set [email protected],rand(100,999); mes "Are you sure you want to exchange ^FF0000"+$precogmct+"^000000 CashPoints? If your 100% sure type the number ^0000FF"[email protected]+"^000000."; input [email protected]; if([email protected][email protected]) { next; mes "You really should thing about it First!."; close; } atcommand "@vip "+$daysweek+"d "+strcharinfo(0); //set #CASHPOINTS,#CASHPOINTS - $precogmct; mes "Thank you very Much! We have added "+$daysweek+" days of VIP subscription to your account!"; close; } mes "Your account level doesn't allow me to give you VIP status. Only normal and VIP account can have VIP status!"; close; } //You had an extra Plus signal