-
Posts
49 -
Joined
-
Last visited
Content Type
Profiles
Forums
Downloads
Jobs Available
Server Database
Third-Party Services
Top Guides
Store
Crowdfunding
Everything posted by DevJJ
-
Try it open packet_athena.conf // Order of the checks // deny,allow : Checks deny rules, then allow rules. Allows if no rules match. // allow,deny : Checks allow rules, then deny rules. Allows if no rules match. // mutual-failure : Allows only if an allow rule matches and no deny rules match. // (default is deny,allow) order: deny,allow // order: allow,deny // order: mutual-failture // IP rules // allow : Accepts connections from the ip range (even if flagged as DDoS) // deny : Rejects connections from the ip range // The rules are processed in order, the first matching rule of each list (allow and deny) is used // allow: 127.0.0.1 // allow: 192.168.0.0/16 // allow: 10.0.0.0/255.0.0.0 // allow: all // deny: 127.0.0.1 allow <yourIP> <<<<<<<<<<<<try it put here then restart server
-
Try to use .htaccess guide https://www.hostinger.com/tutorials/ssl/forcing-https
-
Add me Ash Ketchum#2640
-
still looking pm please check! thanks
-
hehe maganda yan kung pwde lng
-
https://frost.ragdev.com/how-to-install-athena-web-service-api-for-hexed-2020/
-
Other buffs supported? you can add more buffs ?
-
OMG! Amazing work
-
Did you try to remove http://trantra-classic.online/tcpatch/
-
latest kasi gamit mo 2018 ata nadrag2 yan icon
-
Have a great work
-
@Rytech good job
-
Thanks s1 Lykos
-
Old Event na to pero try mo check un ibang script dito mod mo nlng use google sir lalabas sila https://rathena.org/board/topic/83365-poring-soccer-v3-non-pvp/
-
I hope this DLL helps you. An Open Source Ragnarok security DLL. This DLL has been created by ratalaika. This software was commercially distributed some time but now open source for everyone. https://github.com/M45T3Ryu/eikasia
-
What client date sir?
-
Thanks for this, gepard supported??
-
msgstringtable.txt Look mo po line then edit mo lagyan mo nlng "#" remove then txt
-
Good idea Amazing
-
try to check your serve side error check your skill_db also
-
Los Angeles Hosting (Any suggestions?)
DevJJ replied to Almond Snicker's question in Third Party Support
Try this one - https://philhost.net/hybrid-hosting/ -
@Functor Pm sent thanks
-
Looking forward Great job Congrats Frost
-
Please specify what will be Credits to Coins? Credits to Zeny? prontera,160,184,5 script Credit Exchanger 416,{ //====================================[Customization Area]==========================// set .npcname$,"^0000EE[Credit Exchanger]^000000"; //NPC Name set .coinname$,"^0000EECredit^000000"; //Name of Item as Coin Used set .CoinID,501; // Credit ID Set to Red Potion set .zeny,10000000; // Credit Price Set by 10,000,000 or 10m set .capzeny,2000000000; //Zeny Capacity Set by 2,000,000,000 or 2b //==============================================================================// // Check Line 89 To Edit The Chat/Pub Name Like This: // waitingroom "Credit Exchanger",0; //==============================================================================// PlayerMode: mes .npcname$; mes "Hello there "+strcharinfo(0); mes "Rule's Of Exchange"; mes "1 ^0000EE"+.coinname$+"^000000 is [^0000EE"+.zeny+"z^000000]"; mes "Zeny Exchange Capacity is [^0000EE"+.capzeny+"z^000000]"; switch(select("(Credits) to (Zeny):(Zeny) to (Credits)")) { Case 1: next; mes .npcname$; mes "How many Credits to exchange?"; mes "Put The Credit Amount"; mes "Put ^0000EE[0]^000000 to Cancel"; mes "1 ^0000EE"+.coinname$+"^000000 is [^0000EE"+.zeny+"z^000000]"; mes "Zeny Exchange Capacity is [^0000EE"+.capzeny+"z^000000]"; next; do{ input @Credit,0,countitem(.CoinID); if( @Credit < 1 ) close; }while( ( ( @Credit * .zeny ) + Zeny ) > .capzeny ); next; mes .npcname$; mes "Thanks"; delitem .CoinID,@Credit; set Zeny, Zeny + ( @Credit * .zeny ); dispbottom "Zeny Exchange Finished"; close; Case 2: next; mes .npcname$; mes "How much Credit you like to Gain?"; mes "Put The Credit Amount"; mes "Put ^0000EE[0]^000000 to Cancel"; mes "1 ^0000EE"+.coinname$+"^000000 is [^0000EE"+.zeny+"z^000000]"; mes "Zeny Exchange Capacity is [^0000EE"+.capzeny+"z^000000]"; next; input @Credit,0,( Zeny / .zeny ); if( @Credit < 1 ) close; next; mes .npcname$; mes "Thanks."; set Zeny, Zeny - ( @Credit * .zeny); getitem .CoinID,@Credit; dispbottom "Credit Exchange Finished"; close; OnInit: waitingroom "Credit Exchanger",0; end; } close; }