Jump to content

Jasc

Members
  • Posts

    270
  • Joined

  • Last visited

Everything posted by Jasc

  1. Here are the servers I have tried before and my feedback on them. WebNX Dedicated Servers - Very good, but when you get DDOS attacked, your IP will be null routed for 72 hours. Essentially, one DDOS attack on your server and your server is down for 3 days. Server Beach Dedicated Servers - Pretty good, if you do get DDOS attacked, your IP becomes null routed until the attacks stop. No 72 hour wait or anything, just becomes un-nullrouted after JaguarPC VPS - Some lag spikes here and there, but generally it is okay. Ubiquity VPS - I experienced lag spikes with my server here Ubiquity Dedicated servers - What I am using now. Pretty stable, fast, generally less lag, not a bad host but not the best. Staminus DDOS dedicated servers - Decent dedicated servers, very expensive for DDOS protection, Asura VPS - Best support, some lag on the servers, don't offer any dedicated servers Colocrossing dedicated servers - decent dedicated servers, crappy support Go daddy dedicated and vps - a load of crap, never buy from them.
  2. hmmm, you could do an onpcloadmapevent which is pretty easy. After endless tower, set a variable for players who completed it, when they warp to a certain map, use getitem to give them whatever reward you want and set the variable back to 0.
  3. Maybe try searching in skill.c skill.h or battle.c battle.h You will definitely need to add arguments that will specify the classes, I have never done an edit like this, good luck!
  4. Jasc

    Server status

    if you use SQL on phpmyadmin, set a user with the correct host and priviledges so you don't get any mysql errors
  5. Jasc

    BACK UP!

    I believe there is a backup script floating around for sql
  6. Hello I applied Dragon2075 his Diff File, you can find it here http://www.eathena.ws/board/index.php?showtopic=144643&st=255 Basically it allows user to use @auraset and choose an effect as an aura like addition. It works perfectly fine, however when you are in the same window as a monster, it will immediately cause a map crash error about 30 seconds after. If anyone can help me fix this problem that would be great thanks!
  7. This seems like more a problem with the SQL not your stats. Stats won't change if you log off/login. It should save in the char.sql file. It seems to me that when you are logging out, the server is not saving your character, therefore the stats aren't saving either
  8. I highly suggest Xantara, she makes some incredible websites and very professional. [email protected]
  9. i know aura blade works for melee physical attack, but not for ALL skills, only certain ones. I don't have a list, but if you want to check what it boosts, I suggest taking look at battle.c in source code or skill.c
  10. What I would do is make your item use callfunc. create an NPC with all the mobs you want for it to randomly disguise as. That way, when you use your scroll, it calls upon the NPC and will randomly disguse you as a mob on the list you made.
  11. If you use Linux Cent OS, I have a autobackup.sh file where you can automate it in your crontabs or do a manual back-up of your sql files as you wish
  12. Jasc

    @pkmode

    Anybody have a source mod that allows pkon and pkoff via command? I tried the one in eathena by crushthemoonguy but it didn't work for me. 1. It compiled perfectly fine without errors 2. the command actually worked, @pkmode gave me proper messages according to the source edit. 3. however, the only part that didn't work was I couldn't actually pvp and kill the person when we both had it on.
  13. basically using enablenpc and disablenpc commands would work.
  14. Are you using Flux CP? it would probably be easier to use the default donation NPC script, let me know if you need it.
  15. Should be straight forward when you use thor generator.exe You select type the name of your GRF to put it in and then make the patch. Do your previous patches work? * It is important to note whether your files are in ascii or unicode format as well
  16. //Author : Goddameit //Version : 2011/12/16 - 01:04 function script AllGuildMemberEvent { if(!set(.@gid,getcastledata(getarg(0),1))) return; query_sql("select account_id, char_id from `guild_member` where guild_id = '"+.@gid+"'", .@gmaid, .@gmcid); for(set .@i,0;.@i<getarraysize(.@gmcid);set .@i,.@i+1) { if(isloggedin(.@gmaid[.@i])) message rid2name(.@gmaid[.@i]),getarg(9); if(!isloggedin(.@gmaid[.@i])&&!getarg(1)) continue; query_sql "insert into mail ( send_name, dest_id, title, message, nameid, amount, identify, zeny, time ) values ( '"+escape_sql(getarg(2))+"',"+.@gmcid[.@i]+", '"+escape_sql(getarg(3))+"', '"+escape_sql(getarg(4))+"', "+getarg(5)+", "+getarg(6)+", "+getarg(7)+", "+getarg(8)+", unix_timestamp( now() ) )"; } return; } - script AGME -1,{ OnAGME: setarray .@maps$[0],"aldeg_cas01","aldeg_cas02","aldeg_cas03","aldeg_cas04","aldeg_cas05"; setarray .@maps$[5],"gefg_cas01","gefg_cas02","gefg_cas03","gefg_cas04","gefg_cas05"; setarray .@maps$[10],"payg_cas01","payg_cas02","payg_cas03","payg_cas04","payg_cas05"; setarray .@maps$[15],"prtg_cas01","prtg_cas02","prtg_cas03","prtg_cas04","prtg_cas05"; for( set .@i,0; .@i <= 19; set .@i, .@i+1) { callfunc "AllGuildMemberEvent",.@maps$[.@i],1, "System","WoE Victory Reward","Congratulations! Your guild succeeded in occupying "+ getcastlename(.@maps$[.@i]) +". This is your rewards.", 501,1,1,0, "[You got a mail!! Please relogin to reupdate your mail list.]"; } end; } Script from goddameit i found on eathena. Might help you.
  17. if you wanted it to be a new player and a new account then just change popup variables on there to set #popup,1; and have it check for #popup in the if part.
  18. since your potion has a timer, once it runs out, effect number 2 will still be there. As long as you keep 4142 in your equip, it will give you the benefit of the effect until you take it off, since you don't have a timer on baspdrate.
  19. I was opted in the Diablo 3 beta, it is an amazing game
  20. I use thor and it works great, you can customize your theme as well.
  21. I would check your palettes as well, you can also edit the client.conf in conf/battle folder incase you changed anything in there.
  22. Thank you for pointing me in a similar direction! I have tried Trojal's Job Mount release, with the src coding, using his option command. However, my client does not support the mounts. I am left to using the custom items as a solution
  23. Anybody have Dikalz 3rd job mount system? He basically made mounts as Custom Items. I need the custom item files that he used in the database. I run an older version of eathena, its stable and works for me, however It has no 3rd job implementation or mount system etc in the src. So this was the only method I could think of. Thanks!
×
×
  • Create New...