-
Posts
794 -
Joined
-
Last visited
-
Days Won
3
Content Type
Profiles
Forums
Downloads
Jobs Available
Server Database
Third-Party Services
Top Guides
Store
Everything posted by AinsLord
-
how to check that one thnx in adnvance
-
-
so what am i going to put here 'ServerAddress' => 'localhost', //Does it should be my Web Host IP where the site will run?? 'BaseURI' => '', //Any URI Like "FreeRO"?? 'InstallerPassword' => 'secretpassword', //Any will do also ill just need to remember this one ryt?? so on this part 'Hostname' => 'Should be my Data Base IP not The Web Host IP ryt?', 'Username' => 'Then the User Name of my DB', 'Password' => 'And The Password', 'Database' => 'Name of the DB', but in some reason my phpmyadmin login password is different on the inte_athena.conf i dunno why so on this part also 'LoginServer' => array( 'Address' => 'Should be the IP of DB?', 'Port' => 6900, 'UseMD5' => This should be false?, 'CharMapServers' => array( array( 'ServerName' => 'FluxRO', 'Renewal' => Should be false if pre-re?, ), 'CharServer' => array( 'Address' => 'Should be my DB Ip??', 'Port' => 6121 ), 'MapServer' => array( 'Address' => 'Same As here??', 'Port' => 5121 does the info i have are correct?? got this error thnx in advance
-
Making Unfro server without adding frost resist on armors
AinsLord replied to AinsLord's question in General Support
will this affect the cluckers event status change?? -
stat seller NPC || with limit of stat points to buy
AinsLord replied to AinsLord's question in Script Requests
just add on on ur script it wont consume TCG/PODS so heres an update on your script so once you buy STP TCG/PODS will be consume prontera,147,173,4 script Stat Seller 899,{ set .@SellStatPOD, 100; //Stat Points per 1 POD set .@SellStatTCG, 50; //Stat Points per 1 TCG set .@PODid, 7179; //POD item id set .@TCGid, 7227; //TCG item id set .@MaxStat, 10000; //Maximum Stat Points allowed to sell mes "Hi ^FF0000"+strcharinfo(0)+"^000000!"; mes "Do you wish to buy Stat points?"; mes "1 POD = "+.@SellStatPOD+" stat points"; mes "1 TCG = "+.@SellStatTCG+" stat points"; mes "Maximum stat points can be purchase is "+.@MaxStat+"."; switch(select(" ~ Yes, using PODs: ~ Yes, using TCGs: ~ No")) { case 1: mes "How many PODs do you wish to exchange for stat points?"; input .@amount; if (countitem(.@PODid) < .@amount) { mes "Sorry, but don't have enough PODs in your inventory."; mes " Please come back when you have enough."; close; } else { set .@StatToBe, StatBought+(.@amount*.@SellStatPOD); if (.@MaxStat < .@StatToBe) { mes "Sorry, but you're about to reach the max stat points that can be bought."; mes "You have already purchase "+StatBought+" stat points."; close; } else { mes "Here you go!"; mes "Please use your stat point wisely."; set StatusPoint, StatusPoint+(.@amount*.@SellStatPOD); set StatBought, StatBought+(.@amount*.@SellStatPOD); delitem .@PODid[.@StatBought],.@amount; close; } } case 2: mes "How many TCGs do you wish to exchange for stat points?"; input .@amount; if (countitem(.@TCGid) < .@amount) { mes "Sorry, but don't have enough TCGs in your inventory."; mes " Please come back when you have enough."; close; } else { set .@StatToBe, StatBought+(.@amount*.@SellStatTCG); if (.@MaxStat < .@StatToBe) { mes "Sorry, but you're about to reach the max stat points that can be bought."; mes "You have already purchase "+StatBought+" stat points."; close; } else { mes "Here you go!"; mes "Please use your stat point wisely."; set StatusPoint, StatusPoint+(.@amount*.@SellStatTCG); set StatBought, StatBought+(.@amount*.@SellStatTCG); delitem .@TCGid[.@StatBought],.@amount; close; } } case 3: mes "I understand, Please come back to me whenever you change your mind."; close; } } thnx for your script -
what do you mean by refine +30?? instant +30?? or max refine +30??
-
stat seller NPC || with limit of stat points to buy
AinsLord replied to AinsLord's question in Script Requests
character can still purchase statpoints even they purchase total of 5k im also trying to figure this out thnx for helping -
im trying to do my best on making a site for my RO and im having a hard time I do have separate IP on where the emulator installed separated IP for the Phpmyadmin / Database and i have a web hosting i want to use the web hosting to put premade website where they can register just like an official site any one can teach me where or what should i edit i downloaded the green flux CP here im really trying my best but still i cant do it properly thnx in advance
-
stat seller NPC || with limit of stat points to buy
AinsLord replied to AinsLord's question in Script Requests
still same i can purchase multiple times eventhough i purchased total of 5k Stpoints -
stat seller NPC || with limit of stat points to buy
AinsLord replied to AinsLord's question in Script Requests
i made it work thnx lastly i want it like the player can only purchase 10k stp after purchasing a total of 10k stp he cant purchase anymore on that character but he can still purchase on the other character he/she have its like 10k maximum of statpoints purchase per character prontera,147,173,4 script Stat Seller 899,{ set .@SellStatPOD, 100; //Stat Points per 1 POD set .@SellStatTCG, 50; //Stat Points per 1 TCG set .@PODid, 7179; //POD item id set .@TCGid, 7227; //TCG item id set .@MaxStat, 5000; //Maximum Stat Points allowed to sell mes "Hi ^FF0000"+strcharinfo(0)+"^000000!"; mes "Do you wish to buy Stat points?"; mes "1 POD = "+.@SellStatPOD+" stat points"; mes "1 TCG = "+.@SellStatTCG+" stat points"; mes "Maximum stat points can be purchase is "+.@MaxStat+"."; switch(select(" ~ Yes, using PODs: ~ Yes, using TCGs: ~ No")) { case 1: mes "How many PODs do you wish to exchange for stat points?"; input .@amount; if (countitem(.@PODid) < .@amount) { mes "Sorry, but don't have enough PODs in your inventory."; mes " Please come back when you have enough."; close; } else { set .@StatToBe = "StatBought+", (.@amount*.@SellStatPOD); if (.@MaxStat < .@StatToBe) { mes "Sorry, but you're about to reach the max stat points that can be bought."; mes "You have already purchase "+StatBought+" stat points."; close; } else { mes "Here you go!"; mes "Please use your stat point wisely."; set StatusPoint, StatusPoint+(.@amount*.@SellStatPOD); set StatBought,StatBought+(.@amount*.@SellStatPOD); delitem .@PODid[.@StatBought],.@amount; close; } } case 2: mes "How many TCGs do you wish to exchange for stat points?"; input .@amount; if (countitem(.@TCGid) < .@amount) { mes "Sorry, but don't have enough TCGs in your inventory."; mes " Please come back when you have enough."; close; } else { set .@StatToBe = "StatBought+",(.@amount*.@SellStatTCG); if (.@MaxStat < .@StatToBe) { mes "Sorry, but you're about to reach the max stat points that can be bought."; mes "You have already purchase "+StatBought+" stat points."; close; } else { mes "Here you go!"; mes "Please use your stat point wisely."; set StatusPoint, StatusPoint+(.@amount*.@SellStatTCG); set StatBought,StatBought+(.@amount*.@SellStatTCG); delitem .@TCGid[.@StatBought],.@amount; close; } } case 3: mes "I understand, Please come back to me whenever you change your mind."; close; } } thnx for helping me -
stat seller NPC || with limit of stat points to buy
AinsLord replied to AinsLord's question in Script Requests
here is the script prontera,147,173,4 script Stat Seller 899,{ set .@SellStatPOD, 100; //Stat Points per 1 POD set .@SellStatPOD, 50; //Stat Points per 1 TCG set .@PODid, 7179; //POD item id set .@TCGid, 7227; //TCG item id set .@MaxStat, 10000; //Maximum Stat Points allowed to sell mes "Hi ^FF0000"+strcharinfo(0)+"^000000!"; mes "Do you wish to buy Stat points?"; mes "1 POD = "+.@SellStatPOD+" stat points"; mes "1 TCG = "+.@SellStatTCG+" stat points"; mes "Maximum stat points can be purchase is "+.@MaxStat+"."; switch(select(" ~ Yes, using PODs: ~ Yes, using TCGs: ~ No")) { case 1: mes "How many PODs do you wish to exchange for stat points?"; input .@amount; if (countitem(.@PODid) < .@amount) { mes "Sorry, but don't have enough PODs in your inventory."; mes " Please come back when you have enough."; close; } else { set .@StatToBe = StatBought+(.@amount*.@SellStatPOD); if (.@MaxStat < .@StatToBe) { mes "Sorry, but you're about to reach the max stat points that can be bought."; mes "You have already purchase "+StatBought+" stat points."; close; } else { mes "Here you go!"; mes "Please use your stat point wisely."; set StatusPoint, StatusPoint+(.@amount*.@SellStatPOD); set StatBought,StatBought+(.@amount*.@SellStatPOD); close; } } case 2: mes "How many TCGs do you wish to exchange for stat points?"; input .@amount; if (countitem(.@TCGid) < .@amount) { mes "Sorry, but don't have enough TCGs in your inventory."; mes " Please come back when you have enough."; close; } else { set .@StatToBe = StatBought+(.@amount*.@SellStatTCG); if (.@MaxStat < .@StatToBe) { mes "Sorry, but you're about to reach the max stat points that can be bought."; mes "You have already purchase "+StatBought+" stat points."; close; } else { mes "Here you go!"; mes "Please use your stat point wisely."; set StatusPoint, StatusPoint+(.@amount*.@SellStatTCG); set StatBought,StatBought+(.@amount*.@SellStatTCG); close; } } case 3: mes "I understand, Please come back to me whenever you change your mind."; close; } } and i got this error parse_callfunc: not enough arguments, expected ',' 19 : mes "Sorry, but don't have enough PODs in your inventory."; 20 : mes " Please come back when you have enough."; 21 : close; 22 : } 23 : else { * 24 : set .@StatToBe = StatBought+(.@amount*.@SellStatPOD)';' 25 : if (.@MaxStat < .@StatToBe) { 26 : mes "Sorry, but you're about to reach the max stat points that can be bought."; 27 : mes "You have already purchase "+StatBought+" stat points."; 28 : close; 29 : } thnx for the help -
stat seller NPC || with limit of stat points to buy
AinsLord replied to AinsLord's question in Script Requests
parse_callfunc: not enough arguments, expected ',' 19 : mes "Sorry, but don't have enough PODs in your inventory."; 20 : mes " Please come back when you have enough."; 21 : close; 22 : } 23 : else { * 24 : set .@StatToBe = StatBought+(.@amount*.@SellStatPOD)';' 25 : if (.@MaxStat < .@StatToBe) { 26 : mes "Sorry, but you're about to reach the max stat points that can be bought."; 27 : mes "You have already purchase "+StatBought+" stat points."; 28 : close; 29 : got error my friend -
thnx thnx
-
anyone have a script of stat seller that has a stat point limit per character?? like 1 character can only buy 10k stat points using Pods/TCG?? thnx in advance
-
i wanna add a view on my custom shield not really the same view of the item but like the view of other shield in game like valk shiel/plat shield etc im using 2015 client already have the shield lua file thnx for the help
-
GRF Luafiles514 and Lua files datainfo || question
AinsLord replied to AinsLord's question in General Support
yea thats where suppose to edit but it doesnt work so i tried to edit both of them and it works what do you mean depends on how i diff the client as i can see the only thing on nemo is custom iteminfo.lua/lub well thnx for both of you ill try to figure out and gather some more info thnx thnx -
im trying to add custom HG on my server, before it was added on luafiles514>lua files>datainfo>accessid and name and it works but now i need to add both luafiles514 and lua files accessid and name for it to work did i do something wrong?? im using 2015 client heres my grf files on my previous grf i have same format 2 luafiles in grf but i only edit the luafiles514 to make it work now i need to edit both lua file?? any here experience same thing?? thnx for the answer EDIT: what is the difference of the two??
-
stats showing on character selection screen || Quick Question
AinsLord posted a question in Client-side Support
my server stats is 500 but on the character selection screen it only shows 255 that one is there any way to show the real stats?? thnx in advance -
any updates?? is this now working on latest git??
-
Changing Max Refine from 10 to 50 || Latest Rathena version
AinsLord replied to AinsLord's question in General Support
if (getequiprefinerycnt(.@part) == 20) { ====== change the value(20) to 50 ========>> is this on hollegren's script?? do i need to change something on refine in db/pre-re? -
20151104a client installation || i got some errors
AinsLord replied to AinsLord's question in Client-side Support
its fresh thou but ill try it again later on once i get back after work EDIT @crazyarashi now i got this error? dunno whats wrong hahaha thnx for helping thou~ EDIT : Worked -
20151104a client installation || i got some errors
AinsLord replied to AinsLord's question in Client-side Support
the client actually runs i actually made a 2015 client before but thats way like a year ago so i forgot how or what i did i dunno if theres something wrong how i modify my client on nemo or what EDIT: can u give me the pre re translate i think the one you provided is the renewal (Found IT) Thnx again =) -
20151104a client installation || i got some errors
AinsLord posted a question in Client-side Support
i got errors after modifying the client on nemo and i cant fine the translate for the 2015 client anyone have the full translate for it ?? thnx in advance -
Making Unfro server without adding frost resist on armors
AinsLord replied to AinsLord's question in General Support
thnx @Azrael- ill try this later on when i get back home @Azrael- what if includes other status etc? -
Making Unfro server without adding frost resist on armors
AinsLord posted a question in General Support
how can i make Unfro server without adding frost resist bonus on armors?? thnx in advance