Jump to content

Lelouch vi Britannia

Members
  • Posts

    715
  • Joined

  • Last visited

  • Days Won

    6

Everything posted by Lelouch vi Britannia

  1. @Tokei What client range does the grf encryption supported? because i tryed using 2018-03-21 but the client didnt open but when i tryed removing the encryption the client works fine perfectly.
  2. If you wan't to disable it all just add this --[[ and --]] in the beginning and end of it like this... After that save it if your done with it then add it into your custom grf via patch or add it directly into your grf using GRF Editor.
  3. Just follow what TheDerpySupport said and look for this name over_guide.bmp then remove them all from signboardlist.lub For an example: { "prontera", 159, 326, 0, IT_BMP, "유저인터페이스\\information\\over_guide.bmp" },
  4. Just rename these two below if you need to duplicate it... qshop and quest_shop
  5. /leave? or unless the map has partylock mapflag on it
  6. Well the issue was the Coins are unidentified when it goes into the storage. Here is the script <?php class Coins { public $server; public $coinsID; public function __construct(Flux_Athena $server, $coinsID) { $this->server = $server; $this->coinsID = $coinsID; } public function getCoins($accountID) { $sql = "SELECT amount FROM {$this->server->loginDatabase}.storage WHERE account_id = ? AND nameid = ? LIMIT 1"; $sth = $this->server->connection->getStatement($sql); $sth->execute(array($accountID, $this->coinsID)); $num = $sth->fetch(); if ($num) { return (int)$num->amount; } else { return 0; } } public function setCoins($accountID, $amount) { $num = $this->getCoins($accountID); if (!$num) { $sql = "INSERT INTO {$this->server->loginDatabase}.storage (account_id, nameid, amount) "; $sql .= "VALUES (?, ?, ?)"; $sth = $this->server->connection->getStatement($sql); return $sth->execute(array($accountID, $this->coinsID, $amount)); } else { $sql = "UPDATE {$this->server->loginDatabase}.storage SET amount = ? WHERE account_id = ? AND nameid = ?"; $sth = $this->server->connection->getStatement($sql); return $sth->execute(array($amount, $accountID, $this->coinsID)); } } } ?>
  7. Ive managed to keep this working but there was an issue when you being hit by monsters and the delay will apply on you. Maybe anyone can help me removed or bypass the monster hit would be great ?
  8. Just make a folder then name it costume_1 and placed it under the folder ¸ö after that placed all the default palettes there and add _1 on their names like °áÈ¥_³²_0_1.pal °áÈ¥_³²_1_1.pal °áÈ¥_³²_2_1.pal °áÈ¥_³²_3_1.pal °áÈ¥_³²_4_1.pal
  9. https://gitlab.com/4144/Nemo/commit/5bd67dbedb93ce2b3d310a2dae5e136f9e8555f4
  10. Check the ClassNum in your itemInfo.lub if the weapon view is correct. WEAPONTYPE_NONE = 0, WEAPONTYPE_SHORTSWORD = 1, WEAPONTYPE_SWORD = 2, WEAPONTYPE_TWOHANDSWORD = 3, WEAPONTYPE_SPEAR = 4, WEAPONTYPE_TWOHANDSPEAR = 5, WEAPONTYPE_AXE = 6, WEAPONTYPE_TWOHANDAXE = 7, WEAPONTYPE_MACE = 8, WEAPONTYPE_TWOHANDMACE = 9, WEAPONTYPE_ROD = 10, WEAPONTYPE_BOW = 11, WEAPONTYPE_KNUKLE = 12, WEAPONTYPE_INSTRUMENT = 13, WEAPONTYPE_WHIP = 14, WEAPONTYPE_BOOK = 15, WEAPONTYPE_CATARRH = 16, WPCLASS_GUN_HANDGUN = 17, WPCLASS_GUN_RIFLE = 18, WPCLASS_GUN_GATLING = 19, WPCLASS_GUN_SHOTGUN = 20, WPCLASS_GUN_GRANADE = 21, WPCLASS_SYURIKEN = 22, WPCLASS_TWOHANDROD = 23, WPCLASS_LAST = 24, WEAPONTYPE_SHORTSWORD_SHORTSWORD = 25, WEAPONTYPE_SWORD_SWORD = 26, WEAPONTYPE_AXE_AXE = 27, WEAPONTYPE_SHORTSWORD_SWORD = 28, WEAPONTYPE_SHORTSWORD_AXE = 29, WEAPONTYPE_SWORD_AXE = 30, WEAPONTYPE_Main_Gauche = 31, WEAPONTYPE_Stiletto = 32, WEAPONTYPE_Gladius = 33, WEAPONTYPE_Zeny_Knife = 34, WEAPONTYPE_Poison_Knife = 35, WEAPONTYPE_Princess_Knife = 36, WEAPONTYPE_Sasimi = 37, WEAPONTYPE_Lacma = 38, WEAPONTYPE_Tsurugi = 39, WEAPONTYPE_Ring_Pommel_Saber = 40, WEAPONTYPE_Haedonggum = 41, WEAPONTYPE_Saber = 42, WEAPONTYPE_Jewel_Sword = 43, WEAPONTYPE_Gaia_Sword = 44, WEAPONTYPE_Twin_Edge_B = 45, WEAPONTYPE_Twin_Edge_R = 46, WEAPONTYPE_Priest_Sword = 47, WEAPONTYPE_Katana = 48, WEAPONTYPE_Bastard_Sword = 49, WEAPONTYPE_Broad_Sword = 50, WEAPONTYPE_Violet_Fear = 51, WEAPONTYPE_Lance = 52, WEAPONTYPE_Partizan = 53, WEAPONTYPE_Trident = 54, WEAPONTYPE_Halberd = 55, WEAPONTYPE_Crescent_Scythe = 56, WEAPONTYPE_Zephyrus = 57, WEAPONTYPE_Hammer = 58, WEAPONTYPE_Buster = 59, WEAPONTYPE_Brood_Axe = 60, WEAPONTYPE_Right_Epsilon = 61, WEAPONTYPE_Mace = 62, WEAPONTYPE_Sword_Mace = 63, WEAPONTYPE_Chain = 64, WEAPONTYPE_Stunner = 65, WEAPONTYPE_Golden_Mace = 66, WEAPONTYPE_Iron_Driver = 67, WEAPONTYPE_Spanner = 68, WEAPONTYPE_Arc_Wand = 69, WEAPONTYPE_Mighty_Staff = 70, WEAPONTYPE_Blessed_Wand = 71, WEAPONTYPE_Bone_Wand = 72, WEAPONTYPE_CrossBow = 73, WEAPONTYPE_Arbalest = 74, WEAPONTYPE_Kakkung = 75, WEAPONTYPE_Hunter_Bow = 76, WEAPONTYPE_Bow_Of_Rudra = 77, WEAPONTYPE_Waghnakh = 78, WEAPONTYPE_Knuckle_Duster = 79, WEAPONTYPE_Hora = 80, WEAPONTYPE_Fist = 81, WEAPONTYPE_Claw = 82, WEAPONTYPE_Finger = 83, WEAPONTYPE_Kaiser_Knuckle = 84, WEAPONTYPE_Berserk = 85, WEAPONTYPE_Rante = 86, WEAPONTYPE_Tail = 87, WEAPONTYPE_Whip = 88, WEAPONTYPE_Bible = 89, WEAPONTYPE_Book_Of_Billows = 90, WEAPONTYPE_Book_Of_Mother_Earth = 91, WEAPONTYPE_Book_Of_Blazing_Sun = 92, WEAPONTYPE_Book_Of_Gust_Of_Wind = 93, WEAPONTYPE_Book_Of_The_Apocalypse = 94, WEAPONTYPE_Girls_Diary = 95, WEAPONTYPE_Staff_Of_Soul = 96, WEAPONTYPE_Wizardy_Staff = 97, WEAPONTYPE_Spoon = 98, WEAPONTYPE_FOXTAIL_BROWN = 99, WEAPONTYPE_FOXTAIL_GREEN = 100, WEAPONTYPE_CandyCaneRod = 101, WEAPONTYPE_FOXTAIL_METAL = 102,
  11. As the client said System/itemInfo.lua is missing in your System folder. Add this on your System folder... itemInfo.lua = For Pre-Renewal itemInfo.lua = For Renewal Note: Just pick one of the two links.
  12. Try this... // PVP Yoyo Mode Staff //============================================================ //alchemy,163,89,4 script PVP Arena 513,{ dicastes01,257,169,4 script PVP Arena 411,{ sc_end SC_GOSPEL; sc_end SC_SKE; //sc_end SC_APPLEIDUN; //sc_end SC_SERVICEFORYOU; //sc_end SC_WEAPONPERFECT; //sc_end SC_OVERTHRUST; mes "[PvP Warper]"; mes "Which arena do you want to go to?"; next; switch( select( "Solo Arena ["+getmapusers("guild_vs3")+"]", "Party Arena ["+getmapusers("pvp_y_1-2")+"]", "PVP 1 vs 1 ["+getmapusers("1@ge_st")+"]") ){ Case 1: if( getcharid(1) ){ mes "Please leave your party."; }else{ warp "guild_vs3",0,0; } break; Case 2: warp "pvp_y_1-2",0,0; break; Case 3: if( getmapusers("1@ge_st") > 1 ){ mes "Room Full"; }else{ warp "1@ge_st",0,0; } break; } close; OnInit: while( 1 ){ delwaitingroom; waitingroom "PVP : "+getmapusers("guild_vs3")+" Users",0; sleep 1000; } OnAgitEnd: OnAgitEnd2: hideoffnpc strnpcinfo(0); end; OnAgitStart: OnAgitStart2: hideonnpc strnpcinfo(0); end; } // PVP Normal guild_vs3 mapflag pvp guild_vs3 mapflag nocommand 50 guild_vs3 mapflag nosave SavePoint guild_vs3 mapflag noteleport guild_vs3 mapflag pvp_noparty guild_vs3 mapflag pvp_noguild guild_vs3 mapflag nomemo // PVP Party pvp_y_1-2 mapflag pvp pvp_y_1-2 mapflag nocommand 50 pvp_y_1-2 mapflag nosave SavePoint pvp_y_1-2 mapflag noteleport pvp_y_1-2 mapflag pvp_noguild pvp_y_1-2 mapflag nomemo // PVP 1vs1 1@ge_st mapflag pvp 1@ge_st mapflag nocommand 50 1@ge_st mapflag nosave SavePoint 1@ge_st mapflag noteleport 1@ge_st mapflag pvp_noparty 1@ge_st mapflag pvp_noguild 1@ge_st mapflag nomemo
  13. Check your db/import/skill_nocast_db.txt, db/pre-re/skill_nocast_db.txt or db/pre-re/skill_nocast_db.txt if you added this and disable nor delete it. 369,2 369,4
  14. Have you tried using "Encode in ASCI" the Korean text? Maybe try this... if the text are EUC-KR choose "Encode in ASCI" then copy all the results and save it to a different text file.
  15. I think doram is considered as Demi-human but you can test if Demi-human bonus damage will increase your damage againts on doram.
  16. Yea i already seen that and have all of it as well but i need is the mod itself to run thoes auras.
  17. Try to use "Resize Font" patch in NEMO. @hendra814 A lil suggestion about this issue download a fully updated ragnarok files or update your current files also maybe try this ROClientSide from Asheraf
  18. Maybe update your data.grf and rdata.grf using RSU Patcher becuase mine was working properly without any errors nor issues.
×
×
  • Create New...