Jump to content

Rynbef

Forum Moderator
  • Posts

    948
  • Joined

  • Last visited

  • Days Won

    23

Everything posted by Rynbef

  1. Warum verwendest du nicht den CertBot und das kostenlose Zertifikat von LetsEncrypt? Rynbef~
  2. Du musst ausführen. Rynbef~
  3. Generell mache ich alle Updates per Hand, da sonst auch Updates aktiv werden oder eingebaut werden müssen, die für mich nicht notwenidg wären. Da benutze ich keine Auto-Updates. auf einem meiner Test-Server habe ich natürlich die neuste version und arbeite dort mit Includierten Header und C++/C# Files. Das ist zwar für Skillveränderungen nicht möglich, aber auf dem Test-Server geht es mir nur um eigene Commands usw. Ich benutze generell sehr ungerne Syntax Highlights. Schult das Auge Auch bei Eclipse, Mono-Develop oder MS VS C++ stelle ich es meistens aus. Rynbef~
  4. Leider kann ich Git-Update nur sehr schlecht benutzen, da viel an den Source-Files verändert wurde, was widerrum zu Konflikten führt. Ich mache alle Updates selber . Als HR Server sind das nicht viele. Meistens nur sowas wie C#->C++ oder sowas. Rynbef~
  5. Meiner Meinung nach ist immernoch der 2013-08-07 der stabilste Client. Rynbef~
  6. Erstell in deiner GRF einen Ordner mit dem Namen "german" und "english". Dort packst du die entsprechenden Msgstringstables rein. Zmd. machen es so die Offi Server. Rynbef~
  7. Ive started at 3700 and added about 200 mobs. Rynbef~
  8. Nachfolgend die English Translations von zackdreaver. Dort sind auch Lua Files enthalten Pre-RE: https://github.com/zackdreaver/ROenglishPRE RE: https://github.com/zackdreaver/ROenglishRE Rynbef~
  9. Nice work. My favorite is the second one but the other two looks nice too. The blue roofs fit perfertly to the green and the white leaves of the trees. It looks much better than the original. [-] I missing some details or models out of the middle. Like trees, stones or else. The walls on the middle looks not really good the textures not well choosen. The border looks too clean it should have a few small plants, stones or else. My voting: First one: 6/10 Second one: 8/10 Third one: 7/10 * It's just my opinion. It shoulnd attack you * Rynbef~
  10. Versuch mal das: Rynbef~
  11. Ihr könnt auch eine eigene ItemInfo verwenden. Dazu beim N.E.M.O einfach den entsprechende Haken setzen und dort den Namen der richtigen ItemInfo.lub eintragen. Meist sollte das Problem so behoben sein. Ansonsten darauf achten, dass "read lua before lub" deaktivert ist. Wenn man sich nicht sicher ist einfach den Inhalt der ItemInfo in .Lub und .Lua speichern. Bei mir wird die ItemInfo.lub und nicht die ItemInfo_sak.lub gelesen. Kann auch an der ClientInfo.xml liegen. Dort mal versuchen den Language Type zu ändern. Manchmal ist auch eine ItemInfo in der GRF. Das Probleme hattte ich auch mal. Einfach raus loschen. Viel Erfolg! Rynbef~
  12. You'll need a lot of pvp features and modes or it will be boring after a few days. Maybe group pvps, capture the flag, hungergames or custom pvp. The players are able to choose which pvp game they want to play. Some modes can be activated by their ranking state or else. You'll need much new content! Rynbef~
  13. Now Im on my wiindows pc thereforce I can leave an example for you. //.@string = are the input string set .@string,strcharinfo(1); //Name of the party for (set .@i,0; .@i<getstrlen(.@string); .@i++){ if(charat(.@string[.@i]) == "#"){ dispbottom "You have a # in your party name!"; //Or call function //Or .@specialchar++; } } //if(.@specialchar){ // mes "You have "+.@specialchar+" # in your party name."; //} end; Rynbef~
  14. U can use a for loop and charat to look to every letter of a string. Firstly getcharlen(.@s) Then for loop every letter And look at every character charat(.@s[.@i]) Im on mobile thereforce I cant give u a detailed answer. I hope it will help u a lot. Rynbef~
  15. Maybe a firewall trouble on Client or Server side? Rynbef~
  16. Und will need to change: file_url=http://MYIP/html/thor/patchs/ To: file_url=http://MYIP:8080/thor/patchs/ Rynbef~
  17. Do u have a firewall at ur pc? Add the Thor Patcher to the firewall and run the patcher as administrator. Rynbef~
  18. Do u use a firewall/iptable on ur root? Do u can access the site via browser? Rynbef~
  19. Change: RootURL='http://MYIP/thor/' to: RootURL='http://MYIP:8080/thor/' Rynbef~
  20. U will need to change your Apache/Nginx Port(Web Port 80). As example u use Apache. U can change ur port at /etc/apache2/ports.conf. Change "Listen 80" to another port. As example "Listen 32147". Now u can access ur webpage or thor folder on "http://yourdomain.com:32147/patcher/". Rynbef~
  21. Just remove ckeckidle() - script HorlyPoints -1,{ OnInit: end; OnMinute01: query_sql("SELECT `account_id` FROM `char` WHERE `online`='1'",.@accid); for(set .@i,0; .@i<getarraysize(.@accid); .@i++){ attachrid(.@accid[.@i]); if(!getstatus(SC_JAILED)){ if (!checkvending() && !checkchatting()){ dispbottom "[Hourly Point]: You've received a point."; getitem xxx,1; } } detachrid; } end; } Rynbef~
  22. I use WeeDiffGen for my 2013-08-07a Exe. And it works fine. Rynbef~
  23. Wrong section: Its need to be added source side or database side on each item. Rynbef~
  24. This simple script works fine: - script HorlyPoints -1,{ OnInit: end; OnMinute01: query_sql("SELECT `account_id` FROM `char` WHERE `online`='1'",.@accid); for(set .@i,0; .@i<getarraysize(.@accid); .@i++){ attachrid(.@accid[.@i]); if(!getstatus(SC_JAILED)){ if (!checkvending() && !checkchatting() && !checkidle()){ dispbottom "[Hourly Point]: You've received a point."; getitem xxx,1; } } detachrid; } end; } Rynbef~
  25. Maybe no space is available? Rynbef~
×
×
  • Create New...