Jump to content

Rikimaru

Members
  • Posts

    658
  • Joined

  • Last visited

  • Days Won

    1

Everything posted by Rikimaru

  1. HyoRO und FrostRO waren die Server von Frost,vielleicht habt ihr ja mal was von dem gehört,das war der der die YingYang/Gemini Wings und welche namen die auch immer hatten mit dem Custom Valkyrie Helm in mehrere Farben recolored , und auch andere Sprites gemacht,also der war schon nicht schlecht. Außerdem war er auch vor kurzem noch der Admin von GhostRO,falls ihr das kennt. MicRO,habe ich aus langeweile so zum lvln gespielt,wirklich eine Gilde hatte ich nicht. Rynbeef,du warst auf AvalonRO,der gehörte ja auch zum excalibur network
  2. OnClock0000: // set the "PVP Square" map, based on day of the weeek switch(gettime(4)) { case 0: // Sunday case 1: // Monday set .pvp_square$, "final_dest"; break; case 2: // Tuesday case 3: // Wednesday set .pvp_square$, "final_dest"; break; case 4: // Thursday case 5: // Friday set .pvp_square$, "final_dest"; break; case 6: // Saturday set .pvp_square$, "final_dest"; break; } The map for .pvp_square$ is just defined when OnClock00 is true,so you have to wait for OnClock00 to define the map to final_dest just use set .pvp_square$,"final_dest"; at the beginning of the Script.
  3. Are you using rAthena or eAthena? On eathena you could make a script with a SQL Query like this : query_sql "UPDATE `login` SET level = '1' WHERE account_id = "+getcharid(3)+""; ,but you'll have to edit the commands for GM Level 1! with rAthena you'll have to make a new Group or edit the Group,to give that commands to a player,there you'll have to use this SQL Query in the NPC : query_sql "UPDATE `login` SET group_id = '1' WHERE account_id = "+getcharid(3)+""; For the Basics of the NPC read the rAthena Wiki : http://www.rathena.org/wiki/Main_Page
  4. Mein erster Server,ich weiß garnicht welchen ich als erstes gespielt habe. Ich kann mich noch daran erinnern ich war auf ExcaliburRO , das war der Server von Borf,ein Low Rate Server mit sehr schönen rates 10x/10x oder so,dannach kamen dann Frost RO / HyoRO und auch MicRO.
  5. Rikimaru

    vServer

    Ja 100 sollte eigentlich klappen.Da hast du recht,man kann dann ja auch den Server upgraden oder soetwas.
  6. Er würde dies aber gerne als NPC im Spiel haben,er will damit ja nicht irgendwelche sachen speichern,sondern im Spiel mit einem NPC alle möglichen items auf einer Storage haben,die dann von jedem spieler einzeln abgehohlt werden können.
  7. Rikimaru

    vServer

    300-400 Spieler die lag frei spielen können? Hmm...Bin ich mir noch nicht soo sicher,könnte gut sein,aber das müsste man dann halt beim Host nachfragen oder einfach mal ausprobieren.
  8. Hast du mal geschaut ob der root von der Website auch auf den root von dem Server connecten kann? Aber normalerweise sollte das auch so funktionieren,da du die item_db ja immerhin auch im Flux Ordner hast. Vielleicht in einen falschen Flux Ordner gepackt?
  9. Please use the search function and search just for exchanger scripts and you'll find a lot of scripts here. It'll be a script like this : MAPNAME,XXX,YYY,Z<tab>script<tab>Exchanger<tab>NID,{ set .@n$,"^0000FF[ Exchanger ]^000000"; if(countitem(7539) >0) { mes .@n$; mes "Hi,how many Poring Coins do you want to exchange into TCG Cards?"; input @amount; if(@amount<1) { close; } if(countitem(7539) < @amount) { mes "Failed to exchange!"; close; } mes "Successfully exchanged Poring Coins into TCG Cards!"; delitem 7539,@amount; getitem 7227,@amount; close; } mes .@n$; mes "Sorry,but you need to carry Poring Coins with you,to use my Service~!"; close; }
  10. Okay,so you want to reset all stats to 1 and all Jobs to Novice level 1/1,then I'll explain how you do that. 1. You have to open your MySQL Server or phpmyadmin. 2. You open the function to run a SQL Script. 3. You have to run this Script : UPDATE `char` set `Class`=0,`base_level`=1,`job_level`=1,`base_exp`=0,`job_exp`=0; UPDATE `char` set `str`=1,`agi`=1,`vit`=1,`int`=1,`dex`=1,`luk`=1; UPDATE `char` set `status_point` = (45+(base_level*160)) where `base_level`>5; UPDATE `char` set `status_point` = (status_point+52) where class >= 4001 and class <= 4022; This SQL Script is going to turn all your Characters into Novices level 1/1 with no exp and it is going to reset all stats to 1.
  11. Looks really nice Ind! I love it
  12. Hmm....Komisch,bei mir hat das alles auch so geklappt. Lass mich mal überlegen woran das noch liegen könnte.
  13. @MMn_13 : Change it to 28 or 29 @Topic : Really nice Release,thank you!
  14. Hmm...Das Problem hatte ich bis jetzt noch nicht,und darüber weiß ich leider auch nicht viel,ich könnte es mal auf meinem Server ausprobieren,wie es da aussieht,aber mehr kann ich dir leider nicht dazu sagen. Ich werde mal schauen was ich so in den GRF Dateien finde und ob ich das gleiche Problem habe.
  15. Hast du einen Packet Bypass Client?Ich wette dein MapServer gibt dir nen error mit connection of unknown packet ver. oder so,dafür brauch man dann einen Packet Bypass Clienten so wie den von 2012-03-07 von Judas der Download ist hier : http://www.mediafire.com/?lfraeg13plw581q
×
×
  • Create New...