anjoliwanag
Members-
Posts
13 -
Joined
-
Last visited
Profile Information
-
Gender
Male
-
Location
Philippines
Recent Profile Visitors
913 profile views
anjoliwanag's Achievements
-
Hi! How do I add palettes for hairstyles past 99? I seem to get error'd out whenever I change to a 'non-default' color if my hairstyle is more than 99. Any thoughts?
-
Hi, I have this build manager I got from a friend. The build only saves stats though. Is there any way I we can make it save and load skills as well? - script Stats Manager -1,{ function Get_Menu; function Save_Build; function Load_Build; set [email protected],10; // Number of builds to use set [email protected],0; // Zeny required to save a build set [email protected],0; // Zeny required to load a build set [email protected],0; // Zeny required to rename a build set [email protected],99; // Maximum base level (to prevent stat overflow) if (BaseLevel < [email protected]) { message strcharinfo(0),"You must be level "[email protected]+" to use this."; } while(1)switch(select("Reset Stats:Reset Skills:Save Build:Load Build:Rename Build:Cancel")) { case 1: resetstatus; message strcharinfo(0),"Stat reset done."; break; case 2: if (BaseLevel == 255 ){message strcharinfo(0),"Cannot skill reset if you're level 255";close;} if (Class == 4064){message strcharinfo(0),"Please unequip the `Mechanic's Headphones+`";close;} resetskill; message strcharinfo(0),"Skill reset done."; break; case 3: if ([email protected]) message strcharinfo(0),"It costs "[email protected]+" Zeny to save a build."; set [email protected], Get_Menu([email protected]); if (Zeny<[email protected]) { message strcharinfo(0),"Not enough Zeny."; break; } if (getd("Build_"[email protected]+"$")!="") { message strcharinfo(0),"Overwrite previous build #"[email protected]+"?"; if(select("Save new build:Cancel")==2) break; } Save_Build([email protected]); message strcharinfo(0),"Type a name for your build."; input getd("Build_"[email protected]+"n$"); message strcharinfo(0),"Build #"[email protected]+" ("+getd("Build_"[email protected]+"n$")+") saved."; set Zeny, [email protected]; break; case 4: if ([email protected]) message strcharinfo(0),"It costs "[email protected]+" Zeny to load a build."; set [email protected], Get_Menu([email protected]); if (getd("Build_"[email protected]+"$")=="") { message strcharinfo(0),"No build info found."; break; } if (Zeny<[email protected]) { message strcharinfo(0),"Not enough Zeny."; break; } Load_Build(getd("Build_"[email protected]+"$")); message strcharinfo(0),"Build #"[email protected]+" loaded."; set Zeny, [email protected]; break; case 5: if ([email protected]) message strcharinfo(0),"It costs "[email protected]+" Zeny to rename a build."; set [email protected], Get_Menu([email protected]); if (getd("Build_"[email protected]+"$")=="") { message strcharinfo(0),"No build info found."; break; } if (Zeny<[email protected]) { message strcharinfo(0),"Not enough Zeny."; break; } message strcharinfo(0),"Type a new name for Build #"[email protected]+" ("+getd("Build_"[email protected]+"n$")+")."; input getd("Build_"[email protected]+"n$"); message strcharinfo(0),"Build #"[email protected]+" renamed."; set Zeny, [email protected]; break; case 6: close; } function Get_Menu { set [email protected]$,""; for(set [email protected],1; [email protected]<=getarg(0); set [email protected],[email protected]+1) set [email protected]$, [email protected]$+"Slot "[email protected]+" ("+((getd("Build_"[email protected]+"n$")=="")?"^777777empty":"^0055FF"+getd("Build_"[email protected]+"n$"))+"^000000):"; return select([email protected]$); } function Save_Build { set [email protected]$,""; for(set [email protected],13; [email protected]<19; set [email protected],[email protected]+1) set [email protected]$,[email protected]$+readparam([email protected])+"|"; setd "Build_"+getarg(0)+"$", [email protected]$+StatusPoint; return; } function Load_Build { resetstatus; explode([email protected]$,getarg(0),"|"); for(set [email protected],0; [email protected]<6; set [email protected],[email protected]+1) statusup2 ([email protected]+13), atoi([email protected]$[[email protected]])-1; set StatusPoint, atoi([email protected]$[6]); return; } }
-
max parameters/stats base on level?
anjoliwanag replied to anjoliwanag's question in Source Requests
bump -
Okay, I added this to my server so when I fakename, party and guild will be shown https://rathena.org/board/topic/60188-fakename-show-guildparty/ Now I couldnt invite any other players who names we faked. Any thoughts? It's saying 'The character is not currently online or does not exist'. bump
-
Is it possible to cap the max stats of a character depending on its level? Like if I want a lvl 50 knight to ONLY have 20 max stats? Thanks in advance!
-
Okay, I'm using rathena 17704. here are the things I changed. Disabled skills that consumes zeny. Disabled all items that gives zeny. All items that are sold to npc is 0z. Disabled @zeny. Practically disabled zeny from the server. Zeny can only be gained by WoE and events. Yes, this is a zeny based server. Now, HOW else can someone get zeny? I've seen 1 character with 100kz whom which logged in only 6 times in my server. Could it be a hack or 3rd party program of some sort
-
Hi! How can I ignore the GM palette so we'll look just like the other players BUT have the right click aid and the yellow font? I'm using 20120410a client Advance thanks for the reply!
-
feature.atcommand_suggestions: yes. Weird bug maybe? Lvl >10 account has the feature, but lvl 0 - 9 does not. any thoughts?
-
I cannot compile map-server_sql rev 17551
anjoliwanag replied to anjoliwanag's question in Source Support
Yeah, I hope they fix it soon. [solved] The latest Revision 17689 fixed it. -
I cannot compile map-server_sql rev 17551
anjoliwanag replied to anjoliwanag's question in Source Support
Maybe we should wait for the new revision and hope it'll fix it. -
I've just got the revision, nothing is changed. I tried to compile it with microsoft visual studio 2012 as I do every time. I get this error: Any thoughts? Thanks in advance.
-
I get script_rid2sd: fatal error ! player not attached!
anjoliwanag replied to anjoliwanag's question in Scripting Support
Thanks for the reply Unfortunately it didn't solve my problem. it gives me; parse_line: expect command, missing function name or calling undeclared func tion 1 : { 2 : OnMinute57: * 3 : 'a'ddrid(0); I checked trunk/doc/script_commands.txt and the command addrid isn't there. -
I get script_rid2sd: fatal error ! player not attached!
anjoliwanag posted a question in Scripting Support
Hello, I Want a script in which every 30th Minute of the hour all players gets a message. I.E: - script Hello -1,{ OnMinute30: mes "Hello"; close; end; }