Jump to content

Reynard

Members
  • Posts

    56
  • Joined

  • Last visited

About Reynard

  • Birthday 11/08/1987

Profile Information

  • Gender
    Male
  • Location
    Germany
  • Server
    Working on it
  • Interests
    Interactive Media Design, Webdesign, Digital Artwork, 3D Modelling, Foxes and Heavy Fu**ing Metal.

Recent Profile Visitors

2291 profile views

Reynard's Achievements

Poring

Poring (1/15)

9

Reputation

3

Community Answers

  1. Yeah i know that each season has to be a map file itself, what i meant was: Think of Prontera as a real city, since each Season has different Textures (For example in Spring to Summer, the pattern of the street paving changes, and the grass where the building stand gets geplaced by a big stone paving) that would mean each season the people of Prontera would redo the cities paving XD Yes i know, stupid me viewing a fantasy game map from a realistic point of view, i sadly tend to do that on everything, its a curse...
  2. Nice so far, but one thing bugs me a bit... so each season they rip out the entire towns paving and replace it with a different one or grass? XD
  3. Hehe, mit Hardware Defekt meinte ich auch meinen eigenen PC, GPU Abgeraucht, OnBoard is nur son miniding damit man darauf überhaupt was ohne Grakar machen kann, die ging schon bei Youtube in die Knie, gescheige den was in RO testen oder BrowEdit zu laden. Wenn ich das hier so sehe, glaub ich muss ich nach beendigung meines Momentanen Auftrags (Corporate Identity) mal maybe ne Projekt Vorstellung hier im rAthena Forum posten ^^
  4. Das haben wir schon, sie besitzen zwar keine der Hardskills, aber dafür halt Fähigkeiten die nicht so meine Stärken sind. Ist zwar immer wieder durch Arbeit, Hardware Defekt, und sonstige Sachen nen Bremsklotz ins Projekt gefallen, aber ich sehe das ganze so: Ich hab da schon so viel Zeit rein gesteckt dass ich das Ding zur not auch komplett alleine hoch ziehen werde, selbst wenns bis 2000sonstwas dauert. Deswegen fing ich auch vor kurzen an Mappen zu lernen, was dann wiederum zu 3D Modeling usw führte, und versuche meine Source Fähigkeiten zu erweitern. (Ich bin eigentlich Designer für Digitale Medien, scripten okay, aber der Source ist immernoch so ein etwas befremdliches Gebiet für mich) Kurz: Wird schon, egal wie.
  5. Let me get this straight, your issue is the following: Your Website displays the Ranking ordered by most Deaths instead of most Kills, right? If thats the case, then: that script saves the Kills and Deaths in your SQL Database. Except for saving the values, aka supplying your websites with numbers to display, it has nothing to do with the way your website orders and displays the values. The issue is your Websites value ordering, not the script.
  6. Tjoah, Beide packen mit an bei den Finanzen. Der eine ist recht gut was den Umgang mit Leuten angeht und hat GM Erfahrung, daher wir er die Leitung der GMs und Player Support übernehmen. Derweil kümmert er sich um Content, hauptsächlich Texte für Webpage/Quests/Etc, ist ne Ideenschleuder und versucht Scripten zu lernen. Der andere ist quasi das RO Orakel und hat nen Talent dafür Bug und Exploits zu finden, also Primär Spieler und laufender Wiki, aber durch ihn sind schon so manche Schwachstellen in Systemen gefunden wurden die wir sonst übersehen hätten. Ich hätte auch gerne noch weiter Mitglieder die vorallem in Sachen Scripts, Source und Mapping gut sind, aber leider hab ich da bis heute niemanden gefunden der die Zeit oder die Fähigkeiten hätte, nur so Leute die mir Scripts anderer als ihre eigenen unterjubeln wollten oder so von sich überzeugt waren das die erstmal Browedit im alleingang neu und besser schreiben wollten... also nur Flachpfeifen. Ich hatte dich damals gesucht, weil ich dich fragen wollte ob du interesse hättest aktiv mit zu entwickeln, da du aber nun durch die Arbeit keine Zeit für sowas hast hat sich das ganze damit eh erledigt. ^^
  7. Hmmm, interessantes Angebot, leider erfüllt das Projekt meines Teams nicht ganz deine Vorraussetzungen/Vorstellungen, wir sind zwar 3 Leute, aber so ziemlich alles in den Bereichen Server Admin, Webmaster, Webdesigner, Spriter, Mapper und Scripter mache ich alleine, sowie das Konzept und der Name sind auch schon fest und einigen Assets verarbeitet. Schade eigentlich, dich hatte ich vor ca nem halben Jahr gesucht, aber alles was ich gefunden hatte waren tote Accounts. Ich drück dir die Daumen das du ein Team findest!
  8. So for the sake of getting PMs asking about Daniel pretty much daily, i asked him when he will be available again. He said that hes still bussy with some University work, but in a week or so he should have time available again. In case you need it right now and cant wait a freaking week or so, you might write an email at [email protected], he checks it for important messages.
  9. I dont have the time to write a script right now, but that function was present in Xeons WoE Setter v3, heres how he did it: while (1) { delwaitingroom; //Memory vortex restraining bolt, please don't remove it for the sake of humanity. if (.@woe_e-gettimetick(2) <= 0 || !$woe_chatinfo) { set .@timeset, query_sql("select st,et from `woe_times` order by `st` ASC",.@woe_s,.@woe_e); set $woe_chatinfo, 1; } if (.@timeset) { if (gettimetick(2)>.@woe_s) { set .@sec, .@woe_e-gettimetick(2); set .@day, .@sec / 86400; set .@hr, .@sec % 86400 / 3600; set .@min, .@sec % 3600 / 60; set .@sec, .@sec % 60; waitingroom "Ends: "+.@day+"d "+((.@hr<10)?"0":"")+.@hr+":"+((.@min<10)?"0":"")+.@min+((!.@hr&&!.@min&&.@sec<60)?":"+((.@sec<10)?"0":"")+.@sec:""),0; } else { set .@sec, .@woe_s-gettimetick(2); set .@day, .@sec / 86400; set .@hr, .@sec % 86400 / 3600; set .@min, .@sec % 3600 / 60; set .@sec, .@sec % 60; waitingroom "Next: "+.@day+"d "+((.@hr<10)?"0":"")+.@hr+":"+((.@min<10)?"0":"")+.@min+((!.@hr&&!.@min&&.@sec<60)?":"+((.@sec<10)?"0":"")+.@sec:""),0; } if (.@hr||.@min>1) { sleep 60000-(gettime(1)*1000); } else { sleep 1000; } } else { waitingroom "Next: N/A, none set!",0; sleep 60000-(gettime(1)*1000); } } Maybe this will help you to get an idea how you could do it. Source: http://www.eathena.ws/board/WoE-Setter-3-t198420.html
  10. I once explained how to fix those alpha pixels easly with photoshop in this tread: http://rathena.org/board/topic/82147-edge-in-textura/
  11. That link isnt about the script, Emistry told you to check her topic as it contains a source edit to fix your Emp issue. And you apparently werent able to find that topic, "I don't find this topic, help plz". So was kind enough to search for that topic, posted a link just for you, leading to not only that topic, but even directly to the post featuring that source edit. "Unless you have the KoE patch you will be able to hit the emperium even if you control it." Now even a direct link to that source edit (even a more updated version) http://rathena.org/board/index.php?app=core&module=attach&section=attach&attach_id=4462 (File Source: http://rathena.org/board/topic/70567-peopleperson49s-scripts/) I got enough work to do, why am i doing someone elses search work? -.-
  12. Download Browedit 586. Config it to load all GRFs from your client. Load the Map in Browedit. If that works, then your client does have an issue loading the map itself, maybe rebulding quadtrees and resaving it helps. If browedit can not load the map or chrashs while loading it, then some files associated with that map are propably missing or damaged. How did you copy it? Did you copy it by resaving it in browedit or did you just copy the files in explorer and renamed the files?
  13. http://rathena.org/board/topic/69666-request-king-of-emperium-script/?p=145794
  14. Map Info shows me that Abbey02 is 150x150 and aru_gld is 200x200, counted in GATs (Walkable Cells) that would be 300 and 400, but Map Info shows you the amount of Terrain Cells (one Cell is 4 GATs), those Terrain Cells are what i meant ^^; Still thank you very much for your help, appreciate it =)
×
×
  • Create New...