Jump to content

Cabrera

Members
  • Content Count

    81
  • Joined

  • Last visited

  • Days Won

    4

Everything posted by Cabrera

  1. go to conf> grf files.txt and and add your RO data and folders to the server so it can check for those maps and compare it to map index. If your RO folder has it, it should not show the debug after you have done this.
  2. Yea i was working with the rA version of the script xD thanks for this one too though
  3. Try *Translate Client(Recommended) using this NEMO. Secret's was discontinued. Try using the Nemo below and check if it works. https://gitlab.com/4144/Nemo
  4. Thats awkward, which client is this? doesnt happen to me for 04-04-2018 or later ones. Is that ragexe? or ragexeRE? it should either be something wrong with ur NEMO patch or you have to hex it urself or something wrong with msgstringtable maybe(if the client reads those texts from there). If it is *hex* part just tell me which client it is ill see wat i can do to help u change that.
  5. Hey everyone I have an idea for a BG based on a game called GunZ i used to play. It's called "Assassination" This is similiar to capture the flag in some ways more than anything, Concept: Normal teams Red vs Blue, lets say its a 3v3 ( u need a minimum of 2 players in a team or itd be lame xD) one of the 3 players get a target on their head ( some marker is put on the player to suggest that he/she is the one to be killed. This should not be shown in minimap though or it would be gamebreaking) The other 2 players in red and blue should search for the targets of their respective opponent teams, 1st team to kill the opponent target wins the round. Targets are the main priority. even if its 3 players alive in team Blue, 1 player alive in team Red, If the 1 player(who is the target and the rest of his/her team is dead) in Red kills the target of Blue, Blue looses. So basically, 1 target is chosen at random in each team(this changes in each round so basically every 1 might get to be the target). The opponent team has to assassinate this target. If the target dies, all his/her teammates die and the round is over, opponent wins. Hope i explained it well xD i have posted it on rA as well, hopefully someone comes up with possibilities of making this a script
  6. Hello everyone, For some reason, my Navigationdata folder in client side is empty. does anyone have an updated .txt file that has to be in it? if you do have it could you share it here? Thanks in advance!
  7. You are using an old hBG.c Use the one from this link: https://github.com/lucasljsb/HerculesBG/blob/50a1a3963fe2590a787aab27b27fa2faf9e1f277/src/plugins/hBG.c
  8. Hello everyone, I present to you a modified tip box which has been completely translated to English. Tested on: 2018-04-04c RagexeRE and worked like a charm. In your System folder in Client side, replace your tipbox.lub with my translated tipbox i have attached below: tipbox.lub Then, Patch your client with whatever settings you want and then open the patched client in hexeditor ( I used XV132 for this) IMPORTANT NOTE : Make sure you hex a "patched" client. DO NOT do it on an unpatched client or else NEMO will show errors for random "recommended patches" that you select while patching it. Find the following and replace with hex for english translation : for checkbox: BD C3 C0 DB C7 D2 20 B6 A7 20 BF AD B1 E2 English translation: 53 61 76 65 20 54 69 70 3F 20 20 20 20 20 for close button : B4 DD B1 E2 English translation : 44 6F 6E 65 (korean translation of close has only 4 strings so I had to replace it with "Done" to match the string size -_-) OR go to your NEMO folder/patches/TranslateClient.txt and add this at the end of it then patch your clients: (Thanks to @Asheraf for telling me about this xD) M: Translate Tip box ------------------------------ F: BD C3 C0 DB C7 D2 20 B6 A7 20 BF AD B1 E2 R: 'Save Tip?' F: B4 DD B1 E2 R: 'Done' if you did everything as said, this will be your result : Old tip box: New translated tipbox: -- On a funny Note, I had no clue what the korean translation for the Check box was LOL so I just randomly translated it to "Save tip?" instead cuz it was a logical solution LMAO
  9. Greetings Hercules, I have noticed that some people have not figured out how to increase itemdb from 32k limit to a higher amount. This maybe because the solutions are like in 4 different posts. This guide should help those having thousands of custom items like me in my test server. If you dont do the changes I have mentioned below, you would be getting this error : [SQL]: DB error - data of field 'nameid' was truncated [Debug]: column - 1 [Debug]: data - type=UNSIGNED MYSQL_TYPE_LONG, le [Debug]: buffer - type=MYSQL_TYPE_SHORT, length=2 So do the following to make it go away : 1st : go to /src/map/itemdb.h: edit this line: #define MAX_ITEMDB 0x8000 // 32k array entries in array (the rest goes to the db) to this: #define MAX_ITEMDB 0x10000 // 64k array entries in array (the rest goes to the db) 2nd: go to /src/common/mmo.h: edit this line: short nameid; to this unsigned short nameid; 3rd: go to sql-files/main.sql: edit all these specific lines in the main.sql: `card0` smallint(11) NOT NULL default '0', `card1` smallint(11) NOT NULL default '0', `card2` smallint(11) NOT NULL default '0', `card3` smallint(11) NOT NULL default '0', To this : `card0` mediumint(11) NOT NULL default '0', `card1` mediumint(11) NOT NULL default '0', `card2` mediumint(11) NOT NULL default '0', `card3` mediumint(11) NOT NULL default '0', 4th: go to src/map/pc.h: edit this line : struct s_add_drop { short id, group; To this: struct s_add_drop { unsigned short id, group; and this line : int (*bonus_item_drop) (struct s_add_drop *drop, const short max, short id, short group, int race, int rate); to this : int (*bonus_item_drop) (struct s_add_drop *drop, const short max, unsigned short id, short group, int race, int rate); 5th: (we are almost done hang in there xD) go to src/map/pc.c: Change this line : int pc_bonus_item_drop(struct s_add_drop *drop, const short max, short id, short group, int race, int rate) { to this: int pc_bonus_item_drop(struct s_add_drop *drop, const short max, unsigned short id, short group, int race, int rate) { 6th : go to /src/char/char.c: edit this line : || SQL_ERROR == SQL->StmtBindColumn(stmt, 1, SQLDT_SHORT, &item.nameid, 0, NULL, NULL) to this: || SQL_ERROR == SQL->StmtBindColumn(stmt, 1, SQLDT_USHORT, &item.nameid, 0, NULL, NULL) Rebuild your server and you should not encounter the error anymore
  10. Do as instructed in the link below but using hercules instead of rAthena: Link for hercules git: https://github.com/HerculesWS/Hercules/tree/0622261073b6f4f0160cb0df150d3e07483d9b1b KRO full client as of 2018: https://rathena.org/board/topic/106413-kro-full-client-2018-03-27-includes-bgm-rsu/ get mysql from the video link description and you should be good to go.
  11. Hey everyone! For some reason, these pvp maps dont read morocc.gnd for me ( i even tried physically putting the gnd file into the data folder.) this error appears no matter how i try to fix it so does any 1 know the possible solution?
  12. Solved it thanks! everything seems to be translated to english except the tip box, any suggestions?
  13. well im using the latest herc revision, 2018-04-04 client starts just fine but when i try to login in it says disconnected from server? ( the runserver.bat shows i connected successfully though)
  14. Hey everyone, Just wondering if it was possible to use Pre-Re Stats in RE setting. By pre re stats i mean = +500 STR would give 25k Atk ( or smthing of that sort) while the current RE stats gives like 500 ATK for +500 STR. Thanks in advance, Cab
  15. Honestly @joinbg and @leavebg works just fine, also tested the Afk mode ( wherre if someones afk u can kick him) and tested 1 bg out and it works fine. The extra commands would need a closer look at if you want it to function perfectly. This is literally a free eamod version of BG with more user friendly commands for 2013-2017 + clients , just keep doing trial and error and you might just solve most of the problems.
  16. Use the hBG.c from this link: https://github.com/lucaslsb/HerculesBG/blob/50a1a3963fe2590a787aab27b27fa2faf9e1f277/src/plugins/hBG.c and then compile. It has the updated hBG.c
  17. Nvm fixed it, now works, problem was solved in previous page xD
  18. So i did enable hooking and compiled but i got this error for the hBG vcxproject : Severity Code Description Project File Line Suppression State Severity Code Description Project File Line Suppression State Warning C4018 '<=': signed/unsigned mismatch char-server C:\Users\vishn_000\Desktop\Hercules project\Hercules-stable\src\char\int_party.c 320 Warning C4018 '<': signed/unsigned mismatch hBG C:\Users\vishn_000\Desktop\Hercules project\Hercules-stable\src\plugins\hBG.c 1072 Error C2198 'function through pointer': too few arguments for call hBG C:\Users\vishn_000\Desktop\Hercules project\Hercules-stable\src\plugins\hBG.c 1950 And a bunch of unsigned mismatches after that error in various other lines. ( i used vcproject Hercules-14 and compiled with visual studio 2015)
  19. Um, im new to this plugins thing but I followed the instructions as mentioned in the first page and compiled as well. This is my plugins.conf : /* --------------- Format --------------- After you have listed your plugin(s) in "quotations", you need to put in a comma, to separate the plugins. ----------------------------------------- plugins_list: [ "example", "other", "hBG", ] ----------------------------------------- Please note that your scripts need to be saved in the .c (source code) extension and placed in the /src/plugin/ folder. ----------------------------------------- */ plugins_list: [ /* Enable HPMHooking when plugins in use rely on Hooking */ //"HPMHooking", //"db2sql", //"sample", //"other", ]
  20. Just got the latest hercules version to work and gave this a shot, i got the same errors as noobzter003. No compilation errors though. Just script errors: [Error]: script error in file 'npc/custom/hBG/bg_common.txt' line 94 column 30 parse_line: need ';' 91: 92: /* * * * * DO NOT TOUCH ANYTHING BELOW THIS LINE * * * * * * * * * * * * * * * */ 93: .TotalArenas = getarraysize(.BG_Arenas$); * 94: .BG_Queue = hBG_queue_create("Battleground Arena","BG_Queue_Handler::OnQueueJoinEvent",.BGQueue_Level_Min); ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^ 95: .FFA_Queue = hBG_queue_create("Free For All Arena","BG_Queue_Handler::OnFFAQueueJoinEvent",.BGQueue_Level_Min); 96: 97: // Move to Next Arena [Error]: script error in file 'npc/custom/hBG/bg_common.txt' line 344 column 4 parse_line: expect command, missing function name or calling undeclared function 341: mes "You must wait in any City until BG starts."; 342: mes "Close this window to continue..."; 343: close2; * 344: hBG_queue_join getvariableofnpc(.BG_Queue,"BG_Queue_Handler"); ~~~~~~~~~~~~~~~~~~~~~~~~^ 345: end; 346: case 2: 347: if (getcharid(1) == 0) { [Error]: script error in file 'npc/custom/hBG/bg_conquest.txt' line 53 column 32 parse_line: need ';' 50: case 5: set .Castle$,"arug_cas08"; set .GX,313; set .GY,154; set .CX,330; set .CY,154; set .DX,121; set .DY,318; set .AX,141; set .AY, 45; break; 51: } 52: * 53: set $@BG_Team1,hBG_team_create(.Castle$,.GX,.GY,0,"Conquest::OnGuillaumeQuit",""); ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^ 54: set $@BG_Team2,hBG_team_create(.Castle$,.CX,.CY,1,"Conquest::OnCroixQuit",""); 55: end; 56: [Error]: script error in file 'npc/custom/hBG/bg_ffa.txt' line 26 column 35 parse_line: need ';' 23: end; 24: 25: OnBuildTeams: * 26: set $@FFA_Team[0],hBG_team_create("bat_c01",53,128,3, "FFA_Arena::OnQuit","FFA_Arena::OnKilled"); ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^ 27: set $@FFA_Team[1],hBG_team_create("bat_c01",53,128,4, "FFA_Arena::OnQuit","FFA_Arena::OnKilled"); 28: set $@FFA_Team[2],hBG_team_create("bat_c01",53,128,5, "FFA_Arena::OnQuit","FFA_Arena::OnKilled"); 29: set $@FFA_Team[3],hBG_team_create("bat_c01",53,128,6, "FFA_Arena::OnQuit","FFA_Arena::OnKilled"); [Error]: script error in file 'npc/custom/hBG/bg_flavius_ctf.txt' line 66 column 3 parse_line: expect command, missing function name or calling undeclared function 63: stopnpctimer; 64: if (.Flag_Status < 2) { 65: getmapxy .@m$, .@x, .@y, 1; * 66: hBG_viewpointmap "bat_b02",1, .@x, .@y, 1, 0x0000FF; ~~~~~~~~~~~~~~~~^ 67: specialeffect 223; 68: initnpctimer; 69: } [Error]: script error in file 'npc/custom/hBG/bg_flavius_ctf.txt' line 135 column 3 parse_line: expect command, missing function name or calling undeclared function 132: stopnpctimer; 133: if (.Flag_Status < 2) { 134: getmapxy .@m$, .@x, .@y, 1; * 135: hBG_viewpointmap "bat_b02",1, .@x, .@y, 2, 0xFF0000; ~~~~~~~~~~~~~~~~^ 136: specialeffect 223; 137: initnpctimer; 138: } [Error]: script error in file 'npc/custom/hBG/bg_flavius_ctf.txt' line 159 column 3 parse_line: expect command, missing function name or calling undeclared function 156: OnBlueFlash: 157: if (getvariableofnpc(.Flag_Carrier,"Guillaume_Flag") == getcharid(0) && $@Arena_Status == 1 && getvariableofnpc(.BG_Arena$,"BG_Queue_Handler") == "Flavius_CTF") { 158: getmapxy .@m$, .@x, .@y, 0; * 159: hBG_viewpointmap "bat_b02",1, .@x, .@y, 1, 0x0000FF; ~~~~~~~~~~~~~~~~^ 160: specialeffect(EF_BOWLINGBASH); 161: emotion e_hlp,1; 162: addtimer 2000, "Flavius_CTF::OnBlueFlash"; [Error]: script error in file 'npc/custom/hBG/bg_flavius_sc.txt' line 34 column 32 parse_line: need ';' 31: end; 32: 33: OnBuildTeams: * 34: set $@BG_Team1,hBG_team_create("bat_b04",390,10,0,"Flavius_SC::OnGuillaumeQuit","Flavius_SC::OnGuillaumeDie"); ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^ 35: set $@BG_Team2,hBG_team_create("bat_b04",10,290,1,"Flavius_SC::OnCroixQuit","Flavius_SC::OnCroixDie"); 36: end; 37: [Error]: script error in file 'npc/custom/hBG/bg_flavius_sc.txt' line 195 column 2 parse_line: expect command, missing function name or calling undeclared function 192: OnTimer2000: 193: initnpctimer; 194: getmapxy .@m$, .@x, .@y, 1; * 195: hBG_viewpointmap "bat_b04",1, .@x, .@y, atoi(strnpcinfo(2)), 0xFFFFFF; ~~~~~~~~^ 196: end; 197: 198: OnBGStop: [Error]: script error in file 'npc/custom/hBG/bg_flavius_sc.txt' line 257 column 2 parse_line: expect command, missing function name or calling undeclared function 254: OnTimer2000: 255: initnpctimer; 256: getmapxy .@m$, .@x, .@y, 1; * 257: hBG_viewpointmap "bat_b04",1, .@x, .@y, .Point, 0xFF0000; ~~~~~~~~^ 258: specialeffect 223; 259: if (set(.Count, .Count + 1) >= 5) { 260: set .Count, 0; [Error]: script error in file 'npc/custom/hBG/bg_flavius_sc.txt' line 315 column 2 parse_line: expect command, missing function name or calling undeclared function 312: OnTimer2000: 313: initnpctimer; 314: getmapxy .@m$, .@x, .@y, 1; * 315: hBG_viewpointmap "bat_b04",1, .@x, .@y, .Point, 0xFF0000; ~~~~~~~~^ 316: specialeffect 223; 317: if (set(.Count, .Count + 1) >= 5) { 318: set .Count, 0; [Error]: script error in file 'npc/custom/hBG/bg_flavius_sc.txt' line 373 column 2 parse_line: expect command, missing function name or calling undeclared function 370: OnTimer2000: 371: initnpctimer; 372: getmapxy .@m$, .@x, .@y, 1; * 373: hBG_viewpointmap "bat_b04",1, .@x, .@y, .Point, 0xFF0000; ~~~~~~~~^ 374: specialeffect 223; 375: if (set(.Count, .Count + 1) >= 5) { 376: set .Count, 0; [Error]: script error in file 'npc/custom/hBG/bg_flavius_sc.txt' line 431 column 2 parse_line: expect command, missing function name or calling undeclared function 428: OnTimer2000: 429: initnpctimer; 430: getmapxy .@m$, .@x, .@y, 1; * 431: hBG_viewpointmap "bat_b04",1, .@x, .@y, .Point, 0xFF0000; ~~~~~~~~^ 432: specialeffect 223; 433: if (set(.Count, .Count + 1) >= 5) { 434: set .Count, 0; [Error]: script error in file 'npc/custom/hBG/bg_flavius_sc.txt' line 489 column 2 parse_line: expect command, missing function name or calling undeclared function 486: OnTimer2000: 487: initnpctimer; 488: getmapxy .@m$, .@x, .@y, 1; * 489: hBG_viewpointmap "bat_b04",1, .@x, .@y, .Point, 0xFF0000; ~~~~~~~~^ 490: specialeffect 223; 491: if (set(.Count, .Count + 1) >= 5) { 492: set .Count, 0; [Error]: script error in file 'npc/custom/hBG/bg_flavius_sc.txt' line 547 column 2 parse_line: expect command, missing function name or calling undeclared function 544: OnTimer2000: 545: initnpctimer; 546: getmapxy .@m$, .@x, .@y, 1; * 547: hBG_viewpointmap "bat_b04",1, .@x, .@y, .Point, 0xFF0000; ~~~~~~~~^ 548: specialeffect 223; 549: if (set(.Count, .Count + 1) >= 5) { 550: set .Count, 0; [Error]: script error in file 'npc/custom/hBG/bg_flavius_sc.txt' line 608 column 2 parse_line: expect command, missing function name or calling undeclared function 605: OnTimer2000: 606: initnpctimer; 607: getmapxy .@m$, .@x, .@y, 1; * 608: hBG_viewpointmap "bat_b04",1, .@x, .@y, .Point, 0x0000FF; ~~~~~~~~^ 609: specialeffect 223; 610: if (set(.Count, .Count + 1) >= 5) { 611: set .Count, 0; [Error]: script error in file 'npc/custom/hBG/bg_flavius_sc.txt' line 666 column 2 parse_line: expect command, missing function name or calling undeclared function 663: OnTimer2000: 664: initnpctimer; 665: getmapxy .@m$, .@x, .@y, 1; * 666: hBG_viewpointmap "bat_b04",1, .@x, .@y, .Point, 0x0000FF; ~~~~~~~~^ 667: specialeffect 223; 668: if (set(.Count, .Count + 1) >= 5) { 669: set .Count, 0; [Error]: script error in file 'npc/custom/hBG/bg_flavius_sc.txt' line 724 column 2 parse_line: expect command, missing function name or calling undeclared function 721: OnTimer2000: 722: initnpctimer; 723: getmapxy .@m$, .@x, .@y, 1; * 724: hBG_viewpointmap "bat_b04",1, .@x, .@y, .Point, 0x0000FF; ~~~~~~~~^ 725: specialeffect 223; 726: if (set(.Count, .Count + 1) >= 5) { 727: set .Count, 0; [Error]: script error in file 'npc/custom/hBG/bg_flavius_sc.txt' line 782 column 2 parse_line: expect command, missing function name or calling undeclared function 779: OnTimer2000: 780: initnpctimer; 781: getmapxy .@m$, .@x, .@y, 1; * 782: hBG_viewpointmap "bat_b04",1, .@x, .@y, .Point, 0x0000FF; ~~~~~~~~^ 783: specialeffect 223; 784: if (set(.Count, .Count + 1) >= 5) { 785: set .Count, 0; [Error]: script error in file 'npc/custom/hBG/bg_flavius_sc.txt' line 840 column 2 parse_line: expect command, missing function name or calling undeclared function 837: OnTimer2000: 838: initnpctimer; 839: getmapxy .@m$, .@x, .@y, 1; * 840: hBG_viewpointmap "bat_b04",1, .@x, .@y, .Point, 0x0000FF; ~~~~~~~~^ 841: specialeffect 223; 842: if (set(.Count, .Count + 1) >= 5) { 843: set .Count, 0; [Error]: script error in file 'npc/custom/hBG/bg_flavius_sc.txt' line 898 column 2 parse_line: expect command, missing function name or calling undeclared function 895: OnTimer2000: 896: initnpctimer; 897: getmapxy .@m$, .@x, .@y, 1; * 898: hBG_viewpointmap "bat_b04",1, .@x, .@y, .Point, 0x0000FF; ~~~~~~~~^ 899: specialeffect 223; 900: if (set(.Count, .Count + 1) >= 5) { 901: set .Count, 0; [Error]: script error in file 'npc/custom/hBG/bg_flavius_td.txt' line 37 column 32 parse_line: need ';' 34: end; 35: 36: OnBuildTeams: * 37: set $@BG_Team1,hBG_team_create("bat_b03",390,10,0,"Flavius_TD::OnGuillaumeQuit","Flavius_TD::OnGuillaumeDie"); ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^ 38: set $@BG_Team2,hBG_team_create("bat_b03",10,290,1,"Flavius_TD::OnCroixQuit","Flavius_TD::OnCroixDie"); 39: end; 40: [Error]: script error in file 'npc/custom/hBG/bg_rush.txt' line 45 column 32 parse_line: need ';' 42: case 3: set .rush_castle$,"rush_cas04"; set .guil_x,270; set .guil_y,292; set .croix_x,270; set .croix_y,288; break; 43: } 44: * 45: set $@BG_Team1,hBG_team_create(.rush_castle$,.guil_x,.guil_y,0,"Rush::OnGuillaumeQuit",""); ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^ 46: set $@BG_Team2,hBG_team_create(.rush_castle$,.croix_x,.croix_y,1,"Rush::OnCroixQuit",""); 47: end; 48: [Error]: script error in file 'npc/custom/hBG/bg_tierra_boss.txt' line 22 column 32 parse_line: need ';' 19: end; 20: 21: OnBuildTeams: * 22: set $@BG_Team1,hBG_team_create("bat_a03",50,374,0,"Tierra_Boss::OnGuillaumeQuit",""); ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^ 23: set $@BG_Team2,hBG_team_create("bat_a03",42,16,1,"Tierra_Boss::OnCroixQuit",""); 24: end; 25: [Error]: script error in file 'npc/custom/hBG/bg_tierra_boss.txt' line 132 column 2 parse_line: expect command, missing function name or calling undeclared function 129: set .@Boss, 2100 + getvariableofnpc(.guillaume_boss, "Tierra_Boss"); 130: mapannounce "bat_a03","-- Guillaume Guardian [" + strmobinfo(2,.@Boss) + "] entering the battle --",1,0x0000FF; 131: set .Boss, bg_monster($@BG_Team1,"bat_a03",176,345,"Guillaume Guardian",.@Boss,"Guillaume_Boss::OnBoss"); * 132: hBG_monster_immunity .Boss,1; ~~~~~~~~^ 133: initnpctimer; 134: end; 135: [Error]: script error in file 'npc/custom/hBG/bg_tierra_boss.txt' line 167 column 2 parse_line: expect command, missing function name or calling undeclared function 164: set .@Boss, 2100 + getvariableofnpc(.croix_boss, "Tierra_Boss"); 165: mapannounce "bat_a03","-- Croix Guardian [" + strmobinfo(2,.@Boss) + "] entering the battle --",1,0xFF0000; 166: set .Boss, bg_monster($@BG_Team2,"bat_a03",167,50,"Croix Guardian",.@Boss,"Croix_Boss::OnBoss"); * 167: hBG_monster_immunity .Boss,1; ~~~~~~~~^ 168: initnpctimer; 169: end; 170: [Error]: script error in file 'npc/custom/hBG/bg_tierra_boss.txt' line 199 column 2 parse_line: expect command, missing function name or calling undeclared function 196: end; 197: 198: OnBGStart: * 199: hBG_viewpointmap "bat_a03",1,273,204,1,0xFFFFFF; ~~~~~~~~^ 200: bg_monster 0,"bat_a03",273,204,"Balance Flag",1911,"Tierra_Boss::OnNeutralBreak"; 201: initnpctimer; 202: end; [Error]: script error in file 'npc/custom/hBG/bg_tierra_dom.txt' line 12 column 32 parse_line: need ';' 9: end; 10: 11: OnBuildTeams: * 12: set $@BG_Team1,hBG_team_create("bat_a04",50,374,0,"Tierra_DOM::OnGuillaumeQuit",""); ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^ 13: set $@BG_Team2,hBG_team_create("bat_a04",42,16,1,"Tierra_DOM::OnCroixQuit",""); 14: end; 15: [Error]: script error in file 'npc/custom/hBG/bg_tierra_dom.txt' line 144 column 35 parse_line: need ';' 141: if ($@Arena_Status != 1 || getvariableofnpc(.BG_Arena$,"BG_Queue_Handler") != "Tierra_DOM") 142: end; 143: * 144: set .@Guillaume, hBG_getareausers($@BG_Team1,"bat_a04",136,329,186,361); ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^ 145: set .@Croix, hBG_getareausers($@BG_Team2,"bat_a04",136,329,186,361); 146: set .Balance, .Balance + set(.@Balance, .@Guillaume - .@Croix); 147: [Error]: script error in file 'npc/custom/hBG/bg_tierra_dom.txt' line 234 column 35 parse_line: need ';' 231: if ($@Arena_Status != 1 || getvariableofnpc(.BG_Arena$,"BG_Queue_Handler") != "Tierra_DOM") 232: end; 233: * 234: set .@Guillaume, hBG_getareausers($@BG_Team1,"bat_a04",260,194,287,213); ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^ 235: set .@Croix, hBG_getareausers($@BG_Team2,"bat_a04",260,194,287,213); 236: set .Balance, .Balance + set(.@Balance, .@Guillaume - .@Croix); 237: [Error]: script error in file 'npc/custom/hBG/bg_tierra_dom.txt' line 324 column 35 parse_line: need ';' 321: if ($@Arena_Status != 1 || getvariableofnpc(.BG_Arena$,"BG_Queue_Handler") != "Tierra_DOM") 322: end; 323: * 324: set .@Guillaume, hBG_getareausers($@BG_Team1,"bat_a04",129,34,175,65); ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^ 325: set .@Croix, hBG_getareausers($@BG_Team2,"bat_a04",129,34,175,65); 326: set .Balance, .Balance + set(.@Balance, .@Guillaume - .@Croix); 327: [Error]: script error in file 'npc/custom/hBG/bg_tierra_eoe.txt' line 53 column 32 parse_line: need ';' 50: end; 51: 52: OnBuildTeams: * 53: set $@BG_Team1,hBG_team_create("bat_a02",50,374,0,"Tierra_EOS::OnGuillaumeQuit","Tierra_EOS::OnGuillaumeDie"); ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^ 54: set $@BG_Team2,hBG_team_create("bat_a02",42,16,1,"Tierra_EOS::OnCroixQuit","Tierra_EOS::OnCroixDie"); 55: end; 56: [Error]: script error in file 'npc/custom/hBG/bg_tierra_eoe.txt' line 276 column 3 parse_line: expect command, missing function name or calling undeclared function 273: stopnpctimer; 274: if (.Flag_Status == 0 && $@Arena_Status == 1 && getvariableofnpc(.BG_Arena$,"BG_Queue_Handler") == "Tierra_EOS") { 275: getmapxy .@m$, .@x, .@y, 1; * 276: hBG_viewpointmap "bat_a02",1,.@x,.@y,3,0xFFFF00; ~~~~~~~~~~~~~~~~^ 277: specialeffect 223; 278: initnpctimer; 279: } [Error]: script error in file 'npc/custom/hBG/bg_tierra_eoe.txt' line 336 column 35 parse_line: need ';' 333: if ($@Arena_Status != 1 || getvariableofnpc(.BG_Arena$,"BG_Queue_Handler") != "Tierra_EOS") 334: end; 335: * 336: set .@Guillaume, hBG_getareausers($@BG_Team1,"bat_a02",136,329,186,361); ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^ 337: set .@Croix, hBG_getareausers($@BG_Team2,"bat_a02",136,329,186,361); 338: set .Balance, .Balance + set(.@Balance, .@Guillaume - .@Croix); 339: [Error]: script error in file 'npc/custom/hBG/bg_tierra_eoe.txt' line 436 column 35 parse_line: need ';' 433: if ($@Arena_Status != 1 || getvariableofnpc(.BG_Arena$,"BG_Queue_Handler") != "Tierra_EOS") 434: end; 435: * 436: set .@Guillaume, hBG_getareausers($@BG_Team1,"bat_a02",129,34,175,65); ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^ 437: set .@Croix, hBG_getareausers($@BG_Team2,"bat_a02",129,34,175,65); 438: set .Balance, .Balance + set(.@Balance, .@Guillaume - .@Croix); 439: [Error]: script error in file 'npc/custom/hBG/bg_tierra_ti.txt' line 50 column 4 parse_line: expect command, missing function name or calling undeclared function 47: delitem 8967,.@id8967; 48: // Drop Skulls 49: if (.@id8965 > 0) * 50: hBG_flooritem2xy "region_8",.@x,.@y,8965,.@id8965; ~~~~~~~~~~~~~~~~~~~~~~~~^ 51: if (.@id8966 > 0) 52: hBG_flooritem2xy "region_8",.@x,.@y,8966,.@id8966; 53: if (.@id8967 > 0)
  21. hmm its 192 kbps any way i can reduce this? um whats audacity? O_O EDIT: i converted the bgm to 22 khz and 128 kbps sampling rate using mp3 modifier. still not working. X_X
  22. Thanks alot , i had issues with the refine part :/ and btw bsubrace,7 gives 1% resistance or 7% resistance. May i know what the "7" stands for? thnx
  23. Wow Awesome dastgir sir ill jump into hercules asap when this releases lol <3
  24. Cabrera

    ERROR !

    Hey tutti i suggest u change guild extension skill level instead of source. i got the same error when i directly changed the limit through source. You can ignore it but it might cause some problems elsewhere.
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.