-
Posts
509 -
Joined
-
Last visited
-
Days Won
7
Content Type
Profiles
Forums
Downloads
Jobs Available
Server Database
Third-Party Services
Top Guides
Store
Crowdfunding
Everything posted by Rynbef
-
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~
-
Meiner Meinung nach ist immernoch der 2013-08-07 der stabilste Client. Rynbef~
-
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~
-
Ive started at 3700 and added about 200 mobs. Rynbef~
-
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~
-
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~
-
Versuch mal das: Rynbef~
-
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~
-
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~
-
Check if party name for character contains "#"
Rynbef replied to Genesis's question in Scripting Support
Now Im on my wiindows pc thereforce I can leave an example for you. //[email protected] = are the input string set [email protected],strcharinfo(1); //Name of the party for (set [email protected],0; [email protected]<getstrlen([email protected]); [email protected]++){ if(charat([email protected][[email protected]]) == "#"){ dispbottom "You have a # in your party name!"; //Or call function //Or [email protected]++; } } //if([email protected]){ // mes "You have "[email protected]+" # in your party name."; //} end; Rynbef~ -
Check if party name for character contains "#"
Rynbef replied to Genesis's question in Scripting Support
U can use a for loop and charat to look to every letter of a string. Firstly getcharlen([email protected]) Then for loop every letter And look at every character charat([email protected][[email protected]]) Im on mobile thereforce I cant give u a detailed answer. I hope it will help u a lot. Rynbef~ -
Maybe a firewall trouble on Client or Server side? Rynbef~
-
Und will need to change: file_url=http://MYIP/html/thor/patchs/ To: file_url=http://MYIP:8080/thor/patchs/ Rynbef~
-
Do u have a firewall at ur pc? Add the Thor Patcher to the firewall and run the patcher as administrator. Rynbef~
-
Do u use a firewall/iptable on ur root? Do u can access the site via browser? Rynbef~
-
Change: RootURL='http://MYIP/thor/' to: RootURL='http://MYIP:8080/thor/' Rynbef~
-
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~
-
Just remove ckeckidle() - script HorlyPoints -1,{ OnInit: end; OnMinute01: query_sql("SELECT `account_id` FROM `char` WHERE `online`='1'",[email protected]); for(set [email protected],0; [email protected]<getarraysize([email protected]); [email protected]++){ attachrid([email protected][[email protected]]); if(!getstatus(SC_JAILED)){ if (!checkvending() && !checkchatting()){ dispbottom "[Hourly Point]: You've received a point."; getitem xxx,1; } } detachrid; } end; } Rynbef~
-
I use WeeDiffGen for my 2013-08-07a Exe. And it works fine. Rynbef~
-
Wrong section: Its need to be added source side or database side on each item. Rynbef~
-
This simple script works fine: - script HorlyPoints -1,{ OnInit: end; OnMinute01: query_sql("SELECT `account_id` FROM `char` WHERE `online`='1'",[email protected]); for(set [email protected],0; [email protected]<getarraysize([email protected]); [email protected]++){ attachrid([email protected][[email protected]]); if(!getstatus(SC_JAILED)){ if (!checkvending() && !checkchatting() && !checkidle()){ dispbottom "[Hourly Point]: You've received a point."; getitem xxx,1; } } detachrid; } end; } Rynbef~
-
Maybe no space is available? Rynbef~
-
Allow use of specific atcommand when talking to NPC
Rynbef replied to Technoken's question in Source Support
If u use message u will need to add the prefix. (@ or #) at the begin. Message also contains command args. //If cannot use atcomamnd while talking with NPC [Kichi] if (type == 1 && sd->npc_id && sd->state.disable_atcommand_on_npc && !strcmp(message,"@refresh2")) return false; And move it under: // skip 10/11-langtype's codepage indicator, if detected if ( message[0] == '|' && strlen(message) >= 4 && (message[3] == atcommand_symbol || message[3] == charcommand_symbol) ) message += 3; To skip |00 at the begin of the message. Rynbef~ -
Allow use of specific atcommand when talking to NPC
Rynbef replied to Technoken's question in Source Support
I dont know but u can try this one: Rynbef~ -
//quick option to disable all renewal option, used by ./configure #define PRERE #ifndef PRERE /// Leave this line to enable renewal specific support such as renewal formulas #define RENEWAL U will just need to remove // before "#define PRERE" to disable all Renewal Features. Rynbef~