Jump to content

acocalypso

Members
  • Posts

    28
  • Joined

  • Last visited

Profile Information

  • Gender
    Not Telling

Recent Profile Visitors

1715 profile views

acocalypso's Achievements

Poring

Poring (1/15)

0

Reputation

1

Community Answers

  1. still having the same error. but the other items dont work too, while typing @item 90000 im getting the following warning: [Warning]: itemdb_search: Item ID 24464 does not exists in the item_db. Using dummy data. why does it want to load 24464?
  2. Hey together, ive tried to add Custom GM Equip from here http://www.eathena.ws/board/index.php?showtopic=113298 90000,GM_Sword,GM's Sword,4,10,10,1,30000,,2,4,0xFFFFFFFF,2,2,2,4,48,1,1,{ bonus bDex,40; bonus bAllStats,150; bonus bAspdRate,10; bonus bUnbreakableWeapon,0; bonus bAtkRate,500; bonus bMatkRate,500; bonus bHitRate,500; bonus bIgnoreDefRace,7; bonus bIgnoreMDefRace,7; bonus bSplashRange,2; bonus bIgnoreDefMob,0; bonus4 bAutoSpell,13,25,350,1; bonus4 bAutoSpell,19,25,350,1; bonus4 bAutoSpell,20,25,350,1; bonus4 bAutoSpell,14,25,350,1; bonus4 bAutoSpell,230,25,350,1; bonus4 bAutoSpell,476,25,350,1; },{},{} 90001,GM_Staff,GM's Staff,4,,10,1,30000,,2,4,0xFFFFFFFF,2,2,2,4,48,1,8,{ bonus bDex,40; bonus bAllStats,150; bonus bAspdRate,10; bonus bUnbreakableWeapon,0; bonus bAtkRate,500; bonus bMatkRate,500; bonus bHitRate,500; bonus bIgnoreDefRace,7; bonus bIgnoreMDefRace,7; bonus bSplashRange,2; bonus bIgnoreDefMob,0; bonus4 bAutoSpell,13,25,350,1; bonus4 bAutoSpell,19,25,350,1; bonus4 bAutoSpell,20,25,350,1; bonus4 bAutoSpell,14,25,350,1; bonus4 bAutoSpell,230,25,350,1; bonus4 bAutoSpell,476,25,350,1; },{},{} 90002,GM_Shield,GM's Shield,5,,10,1,,10,,4,,0xFFFFFFFE,2,2,32,,65,1,3,{ bonus2 bSubEle,Ele_Water,100; bonus2 bSubEle,Ele_Fire,100; bonus2 bSubEle,Ele_Dark,100; bonus2 bSubEle,Ele_Undead,100; bonus2 bSubEle,Ele_Wind,100; bonus2 bSubEle,Ele_Earth,100; bonus2 bSubEle,Ele_Poison,100; bonus2 bSubEle,Ele_Neutral,100; bonus bMdef,100; if(isequipped(2353,5124)) { bonus bDef,2; bonus bMdef,20; } bonus bAllStats,100; bonus bNearAtkDef,100; bonus bLongAtkDef,100; bonus bMagicAtkDef,100; bonus bMiscAtkDef,100; bonus bNoWeaponDamage,100; bonus bNoMagicDamage,100; },{},{} 90003,GM_Armor,GM's Armor,5,,10,1,,4,,4,0xFFFFFFFF,7,2,16,,40,1,0,{ bonus bAllStats,100; bonus bHPrecovRate,500; bonus bSPrecovRate,500; bonus3 bAutoSpell,85,25,350; bonus3 bAutoSpell,89,25,350; bonus3 bAutoSpell,91,25,350; bonus3 bAutoSpell,254,25,350; bonus3 bAutoSpell,406,25,350; bonus3 bAutoSpell,479,25,350; },{},{} 90004,GM_Shoes,GM's Shoes,5,,10,1,,5,,4,0xFFFFFFFF,7,2,64,,94,0,0,{ bonus bAllStats,100; bonus bFlee2Rate,100; bonus bInfiniteEndure,100; },{},{} 90005,GM_Cloak,GM's Cloak,5,,10,1,,3,,4,0xFFFFFFFF,7,2,4,,54,1,0,{ bonus bAllStats,100; bonus bFleeRate,100; },{},{} 90006,GM_Belt,GM's Belt,5,,10,1,,2,,4,0xFFFFFFFF,7,2,136,,94,0,0,{ bonus bAllStats,150; bonus bMdef,100; skill 29,90; skill 78,90; },{},{} 90007,GM_Necklace,GM's Necklace,5,,10,1,,1,,4,0xFFFFFFFF,7,2,136,,94,0,0,{ bonus bAllStats,150; bonus bMdef,100; skill 28,90; skill 34,90; },{},{} 90008,GM_Crown,GM's Crown,5,,10,1,,4,,4,0xFFFFFFFF,2,1,256,,45,1,45,{ bonus bAllStats,100; bonus bDoubleRate,100; bonus bIntravision,100; bonus bUnstripableArmor,100; bonus bUnstripableHelm,100; bonus bUnstripableShield,100; },{},{} ive added this in itemdb2 but im getting the following error: [Error]: itemdb_readdb: Invalid format (Script column) in line 68 of "db/item_db2.txt" (item with id 90002), skipping. i checked the line with help of the wiki http://rathena.org/wiki/Custom_Items but i cant find the error. Can someone tell me whats wrong?
  3. Hey everybody, im having some problems with a NPC script, hopefully you could help me. the problem nothing is broadcasted. // -- Announcer Script // -- Author: DZeroX // -- Description: Announce whatever you want, easily. You can add as many messages as you want. - script Announcements -1,{ OnInit: setarray $announcer_mes$[0],"Check our website for latest News and Patches, & Vote For Us @ http://and-ro.tk ´«"; set $announcer_ticks,10; // -- Replace 300 with seconds, time between individual announcements. set $@loop,0; set $announcer_wait,$announcer_ticks*120; initnpctimer; end; OnTimer1800000: set $@messages,getarraysize($announcer_mes$); goto L_announce; L_announce: if ($@loop == $@messages) goto L_reset; announce $announcer_mes$[$@loop],0; sleep2 $announcer_wait; set $@loop,$@loop + 1; goto L_announce; L_reset: set $@loop,0; set $@messages,0; stopnpctimer; initnpctimer; end; }
  4. i did that, i changed from grf builder to grf editor, now it works =)
  5. Ive repacked my data.grf with new maps and standart compression, but my client always crashes right after start. When im using the unmodded data.grf it works fine, so does it depends on compression? UPDATE - Tested with no compresssion but the client still crashes. btw im using grf builder
  6. ok now its working thank you all so much =)
  7. many thx for this. you are welcome. topic close. haha still dont know where to add this // create new char #if PACKETVER >= 20120307 // S 0970 <name>.24B <slot>.B <hair color>.W <hair style>.W case 0x970: FIFOSD_CHECK(31); #else
  8. this is my packetver in mmo.h #ifndef PACKETVER #define PACKETVER 20120410 //#define PACKETVER 20111116 #endif where can i do that?
  9. Im triying to set up my RO Server but having a problem regarding the Security Code after first login. Im using the 20120410 ragexe and Miruku 20130902 after i set up the secure code, and logging in again RO tells me that my security code is false, but it isnt. And i cant create a char im always getting following error on my server: [Error]: parse_char: Received unknown packet 0x970 from ip 'my ip adress'! Disconnecting! Any solution for this?
  10. its very nice i like it but when i create a news it will show in news/information/stuff and downloads, any possibility to solve this?
  11. Thx for the answer, ive replaced the setup with translated one, but i still cant open Ragnarok still the same problem. I tried older version of the client and its working
  12. i having a problem with 2012-04-10 it diffed successfully, but when i going to open my diffed exe the Setup windows pops out. And i can only close it via Taskmanager Q_Q
  13. hey having a problem patchen 2012-04-10 but every time im going to start it the setup opens in korean language...
  14. Mirage is right, we are looking for some user with knowlegde about reengiering like it was done with eathena / rathena.
×
×
  • Create New...