-
Posts
51 -
Joined
-
Last visited
Content Type
Profiles
Forums
Downloads
Jobs Available
Server Database
Third-Party Services
Top Guides
Store
Crowdfunding
Everything posted by Orgasmator
-
FluxCP Installation Screen Doesn't Show Up
Orgasmator replied to Orgasmator's question in Web Support
When I put it in /html/cp it directs me to the index page where the cp files are. And also re-edited the php file as you suggested. I think my server does not have php installed. How can I install or check if its installed? -
FluxCP Installation Screen Doesn't Show Up
Orgasmator replied to Orgasmator's question in Web Support
I'm not running from a webserver, I'm using my own vps. Just tried a free webhost and i couldn't even upload my files there. Can anyone suggest a free webhost for cp? Or else can anyone tell me how I can install php on my vps? I'm not sure if its installed or not. Did both but no change. -
I'm running on CentOS 5 and I've created a folder named "cp" under var/www. my application.php is like this: 'ServerAddress' => 'http://209.xx.xx.xx', // This value is the hostname:port under which Flux runs. (e.g., example.com or example.com:80) 'BaseURI' => '/cp', // The base URI is the base web root on which your application lies. When I try to go on http://209.xx.xx.xx/cp i get the error 404 page not found. Additional information: -When I want to host a file from my server, I put files in var/www/html folder. I thought problem could be because of that. Tried to put the cp folder in html folder but that brings me up a page like ftp hosting which you can choose files etc. Anyone help? Thanks in advance.
-
Hi, How can I reduce the delay between Bragi and Adaption to Circumstances skills? my skill_cast_db.txt shows as none of them has after cast delay but there's a small delay between them. Means, you can't spam bragi+adaption+bragi. Here is my skill_cas_db.txt lines of those skills: //BA_POEMBRAGI 321,0,500,0,180000,20000 //- - BD_ADAPTATION 304,0,0,0,0,100 And also how can I make "switching weapon cancels the song skill" effective? I might use it instead of Adaptation skill. Thank you in advance. EDIT: My sonic blow should have 1s delay atm but It's unstoppable. How so? //- - AS_SONICBLOW 136,0,1000,2000,0,500 bump? Please I need help.
-
I have never played original ragnarok but I know they're usable together in any other server that I played till this day.
-
Hi all It's me again. I've just found an interesting bug: Stat foods can't be used together. After you use one, another one can't be used. Can anyone help? I can't even figure out the source of the problem. Example: 12090,Agi_Dish10,Steamed Desert Scorpions,0,100000,,1000,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_AGIFOOD, 1200000, 10; percentheal 15,5; },{},{}
-
bump?
-
Hi all, I'm having errors with hairstyle number 20. I just want to know how can I delete that one or replace it with something else. This is the script that I'm using: // +-------------------------------------------+ // | Advanced Stylist | // +-------------------------------------------+ // | By: Hudelf | // +-------------------------------------------+ // | Current Version: 2.1 | // +-------------------------------------------+ // | Description: | // | This is the traditional stylist with | // | several new features. You can now scroll| // | backwards or forwards, and save up to | // | three palettes while logged in | // +-------------------------------------------+ // | Changelog: | // | 02/08/07 - 1.0 - Script finished | // | 06/04/07 - 2.0 - Rewrote entire script | // | Added new features | // | 11/07/07 - 2.1 - Changed var types | // | Fixed minor text issues | // +-------------------------------------------+ prontera.gat,168,178,1 script Stylist 122,{ set .@name$,"[^FF8000Stylist^000000]"; setarray .@max[1],300,251,24; // Number of cloths, haircolors, hairstyles in client setarray .@blacklist[0],188,143,261; // NPC will skip any cloth colors in this array. // Use for palettes that cause errors or just plain look bad. // Leave first value at 0 to disable. setarray .@type[1],7,6,1; // DO NOT EDIT set .@style,1; mes .@name$; mes "I can change your appearance for you if you'd like."; mes " "; mes "Just choose what you'd like to change:"; next; set .@s,select("Clothes color", "Hair color", "Hair style"); mes .@name$; mes "Alright, how would you like to search?"; next; menu "Start at the beginning",L_start, "Choose where to start",-; // CHOOSE WHERE TO START ===================================================== mes .@name$; mes "Alright, choose a style between ^0000FF0 and " +.@max[.@s]+ "^000000."; next; input .@style; if (.@style < 0 || .@style > .@max[.@s]) { mes .@name$; mes "Style chosen is out of range."; close; } L_start: setarray @revert[1],getlook(.@type[.@s]),0,0; mes .@name$; mes "Alright here we go, starting at style ^007700" +.@style+ "^000000."; next; // BEGINNING OF STYLE MENU LOOP ================================================ L_menuloop: if (.@blacklist[0]) { for (set .@f,0; .@f < getarraysize(.@blacklist); set .@f,.@f+1) { if (.@style == .@blacklist[.@f] && .@previous == 1 && .@s == 1) { message strcharinfo(0),"GM Message - Cloth " +.@style+ " was removed."; set .@style, .@style - 1; goto L_menuloop; } else if (.@style == .@blacklist[.@f] && .@s == 1) { message strcharinfo(0),"GM Message - Cloth " +.@style+ " was removed."; set .@style, .@style +1; goto L_menuloop; } } } setlook .@type[.@s],.@style; mes "This is style number ^007700" +.@style+ "^000000."; set .@next, .@style + 1; set .@prev, .@style - 1; // MAXIMUM MENU if (.@style == .@max[.@s]) { set .@next,0; message strcharinfo(0),"Limit Reached"; } // MINIMUM MENU ============================================================== if (.@style == 0) { set .@prev,.@max[.@s]; message strcharinfo(0),"Beginning Reached"; } // PREVIOUS MENU ============================================================= if (.@previous) { menu "^FF0000Previous - " +.@prev+ "^000000",L_prev, "^0000FFNext - " +.@next+ "^000000",L_next, "Jump to",L_jump, "Save",L_save, "Load",L_load; } // DEFAULT MENU ============================================================== menu "^0000FFNext - " +.@next+ "^000000",L_next, "^FF0000Previous - " +.@prev+ "^000000",L_prev, "Jump to",L_jump, "Save",L_save, "Load",L_load; L_next: set .@previous,0; set .@style, .@next; goto L_menuloop; L_prev: set .@previous,1; set .@style, .@prev; goto L_menuloop; L_jump: next; mes .@name$; mes "Choose which style you'd like to jump to:"; next; input .@style; if (.@style < 0 || .@style > .@max[.@s]) { mes .@name$; mes "Style chosen is out of range."; close; } goto L_menuloop; L_save: next; mes .@name$; mes "Choose which slot you'd like to save to:"; set .@x, select("Slot 1 - [" +@revert[1]+ "]", "Slot 2 - [" +@revert[2]+ "]", "Slot 3 - [" +@revert[3]+ "]"); setarray @revert[.@x], .@style; goto L_menuloop; L_load: next; mes .@name$; mes "Choose which slot you'd like to load from:"; set .@x, select("Slot 1 - [" +@revert[1]+ "]", "Slot 2 - [" +@revert[2]+ "]", "Slot 3 - [" +@revert[3]+ "]"); set .@style, @revert[.@x]; goto L_menuloop; } Thank you in advance.
-
Problem: When I change my client Icon It doesn't startup
Orgasmator posted a question in Client-side Support
Hi, I'm about to distrbute my private Ragnarok Online server. I've finished diffing and the last thing to do is customizing the Client Icon. I'm using Resource Hacker and an Icon which I got from Judas's Bible. If I use it with that ugly default Icon, nothing is wrong. But when I use a custom Icon, It doesnt even startup. I'm using 2010-12-28aRagexeRE. Thank you in advance. ragicon26.ico -
[ERROR] Cyclops Eye item_db Custom Script. Help?
Orgasmator replied to Orgasmator's question in Database Support
Great! Thank you so much. -
It's the script that I want to do: [Mage, Gunslinger] MaxHP+ 20% Flee+ 50 [Lord Knight, Whitesmith] Add 10% chance of auto casting Lvl 1 Parrying when hit. [Paladin] Increase Shield Chain damage by 30% [Creator] MaxHP+10% [sniper] Reduce received Neutral property damage by 10% [stalker] MaxHP+10% Perfect Dodge+ 10 [Acolyte] Reduce aftercast delay by 10% [Clown & Dancer] Deals 25% more damage on Musical Strike [Assassin Cross] Flee + 20, Perfect Dodge + 7 I used this script: { bonus bAllStats,5; if(BaseClass==Job_Mage||BaseClass==Job_Gunslinger) bonus bMaxHPrate,20; bonus bFlee,50; else if(Class==4008||Class==4014||BaseClass==Job_Merchant) bonus3 bAutoSpellWhenHit,LK_PARRYING,1,100; else if(Class==4015||Class==4022) bonus bMaxHPrate,10; else if(Class==Job_Stalker) bonus bFlee2,10; bonus bMaxHPrate,10; else if(BaseClass==Job_Bard||BaseClass==Job_Dancer) bonus2 bSkillAtk,BA_MUSICALSTRIKE,25; else if(Class==4013) bonus bFlee,20; bonus bFlee2,7;} But I got an error saying: "parse_line expect command, missing function name or calling undeclared function. Can anyone help? I can't find what I'm doing wrong. Peace
-
[Sql Error] login-server_sql does not exist, or can't run
Orgasmator replied to Orgasmator's question in Installation Support
Thanks for caring my problem but It's still not working. I even made a new topic but no one cares. I'm seriously about to lose my mind! -
[ERROR ]make_listen_bind: bind failed (socket # 4, code 98)!
Orgasmator replied to Orgasmator's question in Installation Support
Do you mean putting "//" by "commenting out"? I am really using my VPS's IP. As far as I know, the one starts with 172.16 is my LAN IP and the other one is my WAN IP. Correct me if I'm wrong. Also, I added you because I thought things would go simplier and faster than checking the forums all the time, since I'm in kind of hurry to start my server. I did never think you're my personal general support. Thank you for your kindness. -
[ERROR ]make_listen_bind: bind failed (socket # 4, code 98)!
Orgasmator replied to Orgasmator's question in Installation Support
I tried to kill what you told me to, but no process was killed. Removed the "//" from map,char,log_athena configs and inserted my WAN IPs but I got the same problem again. Sorry about adding you on Skype and wanting help. Thought you would help. My fault. Thank you. -
[ERROR ]make_listen_bind: bind failed (socket # 4, code 98)!
Orgasmator posted a question in Installation Support
Can you please help me? I'm using a CentOS 5 based VPS server. Trying to host an online private server. My bind ips are set to 127.0.0.1 in my char_athena.conf, map_athena.conf and also login_athena.conf I've tried to comment them with // but its not working also. I've tried setting them to my LAN ip it worked for the first time, then when I restarted my server, same error again. -
[Sql Error] login-server_sql does not exist, or can't run
Orgasmator replied to Orgasmator's question in Installation Support
When I use localhost it gives me that socket error. When I use 127.0.0.1 It gives me that "Can't connect to MySQL server error" I'm using shared SQL. EDIT: Ok now I got you. Understood the basic logic. They've sent me the IP of my sql server with mail. Now another error: Acces denied for user "omegaros_root"@"209.141.53.199" (using password: YES) I'm sure omegaros_root has all the privs What do i do now? EDIT2: Oooookay! Well, I added the omegaros_root to database again and added my server's IP for the acces again. Now I've one step closer. New Problem: make_connection: connect failed (socket #5, code 111)! Problem v456789: make_listen_bind: bind failed (socket #4, code 99)! What should I change my bind IPs to? I've tried 127.0.0.1 , My LAN IP etc. My LAN IP seems like working. Actually it did about 5 minutes ago. The problem was the main account in log sql table wasn't set properly. I've fixed it, started the server again, now I got bind problem again! Grrrrrrr ^Making a new topic about it. -
[Sql Error] login-server_sql does not exist, or can't run
Orgasmator replied to Orgasmator's question in Installation Support
Ok I've managed to configure and recompile. Now my problem is "Can't connect to MySQL server on 172.16.244.119" (111) My inter_athena.conf is stated at the top. What's the problem now? -
[Sql Error] login-server_sql does not exist, or can't run
Orgasmator replied to Orgasmator's question in Installation Support
Yeah I've seen them but I don't know how to recompile in Linux since it doesn't have Microsoft C++ Visual Studio. I think that "Recompile My Server" is not working. Can you tell me the command or any other ways to recompile? -
[Sql Error] login-server_sql does not exist, or can't run
Orgasmator replied to Orgasmator's question in Installation Support
When I use make clean or make sql I get a message like make: *** No rule to make target 'sql' . Stop. I tried it both in root and my server's (Omega) folder. Am I missing something? EDIT: Frantech's RagnarokOS has "Start my Server, Stop My server, Restart my Server, Recompile My Server" Icons on desktop. Delta told me to use that Recompile Icon but i'm not sure it's working since I did not setup my server from scratch. I don't know how to recompile in any other ways. -
[Sql Error] login-server_sql does not exist, or can't run
Orgasmator posted a question in Installation Support
Hi all, I've been running my own server on my local computer,which is using Win7, about 1,5 weeks. Now, I've come to buy a host and establish it to our players. I've bought a VPS from Frantech company with BuyVM. Which is using RagnarokOS(centOS 5 based). First of all, I've transferred my entire eathena file from my local computer via SSH. Then I've bought shared SQL and imported main.sql and logs.sql. There's no schemas such as ragnarok or log. I've made a database called omegaros_ragnarok. Then made a username omegaros_root and set all privs available. I checked if my sql is accesable by my host's IP. I've tried to run athena-start, but it failed with an error such ^M coding. It was coded for Windows so I changed it to Unix with the command "dos2unix". After all spending hours, I've finally managed to start it but now another error occurs that I can't get rid of by myself. I've assumed it was because of my inter_athena.conf . I've made the proper changes: I'm aware of the situation that I'm using eAthena and this is rAthena forums. But I'm following up this forum recently and they're almost same. It's nothing about the emulator itself right? Thanks in advance. Hope someone can help because I'm seriously nervous about it. Peace. -
I wan to change the ATK of Soul Gladiator without using any items. I tried a script like - script StatBonus -1,{ if(Class == 4048) { bonus2 bAddRace,7,100; } end; } but it's not working. An additional damage to demi-humans would also be appreciated so it's okay if it's not the base atk. Bonus Question: When I want to add a script like "If Class is Soul Gladiator bla bla.." there's two IDs of Sould gladiator. 4047= Soul Gladiator, 4048=Soul Gladiator(Flying) How am I supposed to use them both easily? Thanks in advance. Peace.
-
Sorry to bother but I'm using eAthena and can't patch it manually. Can you help me please? What should I copy/paste and where?
-
Question: How can I edit the skill scripts?
Orgasmator replied to Orgasmator's question in Database Support
Well, I guess I'm going to stick with the talismans for a while. Thank you Luphy, I appreciate your help. -
Question: How can I edit the skill scripts?
Orgasmator replied to Orgasmator's question in Database Support
Ok I guess I solved it with the item_db2.txt script. I made it a usable healing item instead of usable/other. As Dynosawr stated; So I removed the "use skill (Soul Link)" part and added my bonus effects normally. It works like a charm now. I just realized I need the actual Spirit skill also because it gives extra stuff like "Able to walk while casting a song skill". Here's the script without using the actual skill. 20509,·Î¶Ç08,Spirit Of Artist,0,2,,10,,,,,0x00080000,7,2,,,,,1223,{ skilleffect "SL_BARDDANCER",0; bonus bDex,10; bonus bLongAtkRate,150;},{},{} My only problem now, is that actual skill of Soul Linkers won't work as talismans do. Soul Linkers are now kind of useless when Linking, which is pretty funny. I'm still open to suggestions about src/map/battle.c editing. Or else, I can request the link scripts so anyone can write it for me? Thank you guys anyways! -
Question: How can I edit the skill scripts?
Orgasmator replied to Orgasmator's question in Database Support
I'll try that but I need a few more spirits to be edited. I'm afraid I don't know most of the c++ syntax. I'll try to edit tho. Is there anyway that I can use it simplier? Like with talismans? Tried it as if(skilleffect(SL_BARDDANCER)==1) {bonus bDex,10; bonus bLongAtkRate,150; } at the end of the script. Got error, saying: parse_callfunc: not enough arguments, expected ',' * 176 : { skilleffect "SL_BARDDANCER",0; sc_start4 SC_SPIRIT,350000,5,455,0,0; if(skilleffect(SL_BARDDANCER')'==1) {bonus bDex,10; bonus bLongAtkRate,150; }}