Jump to content

Prevalence

Members
  • Posts

    27
  • Joined

  • Last visited

Everything posted by Prevalence

  1. @Nova haha, thank for your replied! but i only want you to share me your daily reward CUTIN bmp ( suggest psd files ) thank you so much
  2. Nova, can you share me your Daily Reward cutin file
  3. i have this code i converted from iRO long time ago but i translate all mes to my country language to use for my server event, if you want i can share you but you need translate back to english
  4. Use OnInit for setarray .mobid dude -.- or you can use my script - script MvP_Kill -1,{ end; OnNPCKillEvent: .@checkmvp = compare(.MvPID$,""+killedrid); if( .@checkmvp ) { if( !.Chance || (.Chance && .Chance > rand(10000)) ) getitem .Reward, 1; } end; OnInit: .Chance = 1000; // 1000 = 10%, 0 = turn off chance drop mode, 100% drop .MvPID$ = "1511,1734,1492,1647,1785,1630,1399,1039,1874,"+ "1251,2068,1272,1719,1046,1389,1112,1115,1957,1418,1871,1252,1768,"+ "1086,1688,1646,1373,1147,1059,1150,1956,2022,1087,"+ "1190,1038,1157,1159,1502,1623,1650,1583,"+ "1708,1312,1751,1685,1648,1917,1658"; // MvP Ids .Reward = 501; // Reward Item ID end; }
  5. using custom name, can you? just look like : [uncommon] Knife, [Ancient] Knife before name?
  6. if ( Weapon$ == "Wand" ) { <<< what do you mean? getitemname?
  7. + 1 from me too this is powerful scriptcommand
  8. Yes Cydh T_T, when player in this state, another players and player cannot see guild emblem of each other and self.
  9. hi, i make new one state like sd->state.hideemblem to hide emblem for some my custom, i'm tried to take a chance in clif.c... and guild.c but doesn't work, emblem hide on after i changed map two times.. i want to hide on emblem in first time i change to another map ( refreshing client ). i've seen disguise can hide on guild emblem, but i can't find the extract part of this code, anyone know can point me a hint? someone can help me please and sorry for my bad english! Anyone help? Up :3
  10. Wait, your code is too old and need to optimizing, i will do it for you and add your request to script too.
  11. Hmm, use hideoffnpc and hideonnpc is better than disable/enable npc
  12. Hi emistry, can i have one question?

  13. oh god, really really thank you so much KeyWorld > < ok now, i can finish my ffxi crafting system
  14. use for my weapon level up system, this label combo with sql check and give certain bonus to player if weapon level > 1 like this: OnPCEquipEvent: OnPCLoginEvent: // -- Check Login too set .@wid, getequipid(4); set .@f, getcharid(0); if( !.@wid ) end; query_sql "SELECT `str`,`agi`,`vit`,`int`,`dex`,`luk` FROM `inventory` WHERE `char_id` = '"+.@f+"' AND `nameid` = '"+.@wid+"' AND `equip` > 0 && `equip` != 32",.@str,.@agi,.@vit,.@int,.@dex,.@luk; if( BaseJob == Job_Assassin || BaseJob == Job_Kagerou || BaseJob == Job_Oboro ) { if( getequipweaponlv(3) > 0 ) query_sql "SELECT `str`,`agi`,`vit`,`int`,`dex`,`luk` FROM `inventory` WHERE `char_id` = '"+.@f+"' AND `nameid` = '"+.@wid+"' AND `equip` == 32",.@str1,.@agi1,.@vit1,.@int1,.@dex1,.@luk1; } if( (.@str || .@agi || .@vit || .@int || .@dex || .@luk || .@str || .@agi1 || .@vit1 || .@int1 || .@dex1 || .@luk1) > 0 ) atcommand "@power 1 "+.@str+.@str1+" "+.@agi+.@agi1+" "+.@vit+.@vit1+" "+.@int+.@int1+" "+.@dex+.@dex1+" "+.@luk+.@luk1+""; end; OnPCUnequipEvent: atcommand "@power 0"; // -- When player take of equip, bonus out, prevent bare hand exploit! end; i can create this label for myself too, but i'm not good at source, i'm not sure if i create... server may be crash and i need some one help me solve my problem. so, special thanks to you Cydh sorry for my bad english again T_T
  15. As my topic title, someone help? just like i said, i want to check character facing currently in north or west or north-east.. blah blah blah ( like npc facing ) Sorry for my bad english! Thank you!
  16. replace all of them? include Potions and Card? wahh, i'm confuse!
  17. enough? i want to check all equipment in db, so if it enough as you say... i need to change all of them in itemdb? X_X
×
×
  • Create New...