Jump to content

leertaste

Members
  • Posts

    137
  • Joined

  • Last visited

Everything posted by leertaste

  1. I have no empty items on all categories here's a screen of my error:
  2. Hello, when I use ur .exe I get the "refined fly wing error" bug. How to fix this?
  3. Thanks to you all, but as you can see in my first post, I already solved this.
  4. I'm using the newest rAthena Svn and 2012-06-05.exe server started perfectly, but when i try to login to the mapserver (after char selection) this error appears: why do this happen? Ok, I find out that I'm using an outdated resnametable.txt... fixed
  5. After I tried to Install Zephyrus Housing System (http://rathena.org/board/topic/79823-zephyrus-housing-system/), I get this error, everytime a Char is logging in: The problem is, that my map-server is now crashing after a few seconds everytime someone has logged in... I made no backup, before I tried to install this... what can I do now?
  6. I've got this script: prontera,149,129,5 script TotalTimeOnline 857,{ mes "For your account, you have been online a total of:"; mes callsub(S_SecToTime, @login_time ? (#secs_online + (gettimetick(2)-@login_time)) : #secs_online); close; S_SecToTime: set .@seconds, getarg(0); set .@seconds, .@seconds - set(.@weeks, .@seconds / 604800)*604800; set .@str$, .@str$ + .@weeks+((.@weeks==1) ? " week":" weeks")+", "; set .@seconds, .@seconds - set(.@days, .@seconds / 86400)*86400; set .@str$, .@str$ + .@days+((.@days==1) ? " day":" days")+", "; set .@seconds, .@seconds - set(.@hours, .@seconds / 3600)*3600; set .@str$, .@str$ + .@hours+((.@hours==1) ? " hour":" hours")+", "; set .@seconds, .@seconds - set(.@mins, .@seconds / 60)*60; set .@str$, .@str$ + .@mins+((.@mins==1) ? " min":" mins")+", and "; set .@str$, .@str$ + .@seconds+((.@seconds==1) ? " second":" seconds"); return .@str$; OnPCLoginEvent: set @login_time, gettimetick(2); end; OnPCLogoutEvent: if (@login_time) set #secs_online, #secs_online + (gettimetick(2)-@login_time); end; } What I want: - Edit that you can watch your character based online time and account based online time - Edit a ranking list of top 5 online CHARACTERS, everybody of them will get another reward (via mail) (each sunday) (for example 1. will get 501 2. will get 502, and so on) - gm level 5 and above will not listed in ranking - gm menu to reset the ranking thaaaaaanks <3
  7. Okay but now the arraysize display isnt stopped the npc shows me a ranking running down from 1 - 127 and my mapserver gives that:
  8. I'v read, that I can use missxantara FluxCP with the theme of the one, I'v posted.. how to make it worth?^^
  9. I'v got this script: /* ___ ___ ___ ___ ___ ___ ___ ___ ___ ___ ___ /\ \ /\ \ /\ \ /\__\ /\ \ /\ \ /\ \ /\ \ /\__\ /\__\ /\ \ \:\ \ /::\ \ /::\ \ /:| _|_ /::\ \ /::\ \ /::\ \ /::\ \ /:| _|_ /:/ _/_ /::\ \ /::\__\ /::\:\__\ /:/\:\__\ /::|/\__\ /:/\:\__\ /:/\:\__\ /::\:\__\ /:/\:\__\ /::|/\__\ /:/_/\__\ /\:\:\__\ /:/\/__/ \:\:\/ / \:\ \/__/ \/|::/ / \:\/:/ / \:\ \/__/ \;:::/ / \:\/:/ / \/|::/ / \:\/:/ / \:\:\/__/ \/__/ \:\/ / \:\__\ |:/ / \::/ / \:\__\ |:\/__/ \::/ / |:/ / \::/ / \::/ / \/__/ \/__/ \/__/ \/__/ \/__/ \|__| \/__/ \/__/ \/__/ \/__/ *----------------------------------------- eAthena Script ---------------------------------------------* * Maximum Level Announce * *----------------------------------------------- By: --------------------------------------------------* * TecnoCronus * *----------------------------------------- Current Version: -------------------------------------------* * 1.0 * *----------------------------------------- Compatible With: -------------------------------------------* * eAthena * *------------------------------------------- Description: ---------------------------------------------* * A NPC that announce the 10th firsts persons who got the maximum level * *----------------------------------------- Additional Comments: ---------------------------------------* * It give a item as reward, the item ids of reward are keeped at $@Glob_Array_Item array * * The index of array will be get randomly. * *-------------------------------------------- Changelog -----------------------------------------------* *- http://trac.xp-dev.com/TC_Scripts/log/scripts/EN/MaxLvLAnnouncer.txt * *------------------------------------------------------------------------------------------------------*/ - script MaxLvLAn -1,{ end; OnPCBaseLvUpEvent: if(.numMaxLevel == 10) disablenpc "MaxLvLAn"; else if (BaseLevel==.MaxLvl) { // Check if the player for some reason, reached to Maximum level again if(Rew > 0) end; // Keep the player name on array setarray $Rank$[.numMaxLevel], strcharinfo(0); announce strcharinfo(0)+", you are the "+.places$[.numMaxLevel]+" person to reach the level "+.MaxLvl+", you will receive a reward",0; //give prize set @Rnd_Item, rand(0,(getarraysize(".Global_Array_Item")-1)); getitem .Global_Array_Item[@Rnd_Item],1; // set this variable, to don't take rewards again set Rew, 1; // Keep the last array index set .numMaxLevel,.numMaxLevel+1; if(.numMaxLevel == 9) // Should be 9 now because the array index start in 0 (Thanks to ToastOfDoom) disablenpc "MaxLvLAn"; } end; OnInit: // Set here the maximum level of your server set .MaxLvl, 160; // Array with the item id rewards setarray .Global_Array_Item[0],20288,20006; //array lookup for place names setarray .places$[0], "First", "Second", "Third", "Fourth", "Fifth", "Sixth", "Seventh", "Eighth", "Ninth", "Tenth"; } prontera,164,98,4 script MaxLvLRank 833,{ mes "[Constantin]"; mes "Hello, I'm Constantin, I'm the person"; mes "Who have access to all the Rune Midgard Registries"; mes "Are you interested in something ?"; next; if(select("I want see the Top Level Ranking: No, Nothing.")==1) { mes "[Constantin]"; mes "This rank shows the first 10 people who reached the"; mes "Maximum Level."; next; mes "[Constantin]"; for(set @i, 0; $Rank$[@i]; set @i, @i + 1) mes @i+"º"+$Rank$[@i]+"."; } else { mes "[Constantin]"; mes "Ok, have a nice day."; } close; } and I want this getting work with rAthena When someone reaches Level 160, my mapserver gives this error: and when I click through the npc, this "error" appears: help pleaaaase
  10. Hello Community... I want to ask what do I need to do to get this fluxcp totaly work? http://rathena.org/board/files/file/2576-website-complete-flux/
  11. If i get an older executable, is it possible to take all the new functions with it? like the icons on the minimap, etc.?
  12. Thanks for that tip EDIT: So only the "mini icon" thing is incorrect EDIT2: New "Bug" in start Topic
  13. Hello everybody. I could need help about this 2 things: EDIT: Quests - SOLVED~ Navigation Window - SOLVED~
  14. stelle sicher, dass: userid: passwd: in der char_athena und map_athena und in deiner login table im sql query dieselben sind. Beispiel: char_athena.conf map_athena.conf außerdem ist es wichtig, dass dein angelegtes shema in deinem query browser die gleichen namen trägt, wie die globalen sql settings (siehe inter_athena.conf) ein Beispiel hierfür:
  15. I've got this Novice with Poring pack, where an novice is riding on a big poring. My question is: how can I create an item which allows me to "disguise" or "change my class" into the novice on poring so he can move faster but can't attack WITHOUT replacing the normal novice sprite?
  16. Maybe want to try this? cashconf.txt Look at the Header of Script (not by me) or you can try this: transfer.txt Transfer will let you Transfer cash/zeny to another player buy typing his name (with display)
  17. I noticed that the new iconpacked storage, as from many pages you can download them, are bugged So i decided to fix'em How it looks before: tab_itm_ex_03.bmp As you can see the armor icon is above the weapon icon, but if you click on it, you'll see it's for the wrong section. Here is the new pack: Fixed Storage.rar
  18. 1. OnPCDieEvent: if( strcharinfo(3) == "cell_game" ){ sleep2 100; atcommand "@Alive"; warp strcharinfo(3),0,0; 2.
×
×
  • Create New...