Jump to content

cutekram

Members
  • Posts

    30
  • Joined

  • Last visited

Everything posted by cutekram

  1. i have this error just open the setup and lesser your resolution after that went ok.!
  2. Hi everyone, I am looking to hire a person to create a Wiki for my server. Can anyone can message me and discuss about this job, Thank you!!
  3. I need help pls how to fix this i put this onto my SQL /* DROP TABLE IF EXISTS `mission_board`; CREATE TABLE IF NOT EXISTS `mission_board` ( `id` int(11) unsigned NOT NULL, `title` varchar(30) NOT NULL default '', `desc` varchar(255) NOT NULL default '', `mob_list` varchar(50) NOT NULL default '', `mob_qty` varchar(50) NOT NULL default '', `item_list` varchar(50) NOT NULL default '', `item_qty` varchar(50) NOT NULL default '', `class_limitation` int(11) unsigned NOT NULL default '0', `class_branch` int(11) unsigned NOT NULL default '0', `min_lv` smallint(6) unsigned NOT NULL default '1', `max_lv` smallint(6) unsigned NOT NULL default '99', `repeat` smallint(6) unsigned NOT NULL default '0', `duration` int(11) unsigned NOT NULL default '0', `reward_list` varchar(50) NOT NULL default '', `reward_qty` varchar(50) NOT NULL default '', `base_exp` int(11) unsigned NOT NULL default '0', `job_exp` int(11) unsigned NOT NULL default '0', `zeny` int(11) unsigned NOT NULL default '0', `cash` int(11) unsigned NOT NULL default '0', `aid` int(11) unsigned NOT NULL default '0', `name` varchar(30) NOT NULL default '', `time_update` datetime NOT NULL default '0000-00-00 00:00:00', `npc_id` varchar(255) NOT NULL default '', `redo_delay` smallint(6) unsigned NOT NULL default '0', PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; DROP TABLE IF EXISTS `player_mission`; CREATE TABLE IF NOT EXISTS `player_mission` ( `id` int(11) unsigned NOT NULL, `mission_id` int(11) unsigned NOT NULL, `aid` int(11) unsigned NOT NULL default '0', `cid` int(11) unsigned NOT NULL default '0', `name` varchar(30) NOT NULL default '', `mob_hunt` varchar(50) NOT NULL default '', `expire` int(11) unsigned NOT NULL default '0', `starting` datetime NOT NULL default '0000-00-00 00:00:00', `completion` datetime NOT NULL default '0000-00-00 00:00:00', PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; */ then rest is the script but i have this error : DB error - Table 'ragnarok.mission_board' doesnt exist [Debug]: at script.c:16142 - SELECT 'id IN ( SELECT 'id FROM 'mission_board ect ect ect Can someone can help me pls.?
  4. Sir how to add time for example i want it to set 4 times a day if i would like to pick 12PM 5PM 9PM it this gonna be like this? OnInit: OnClock1200: OnClock1700: OnClock2100: set .LuckyTime,rand(24); OnMinute00: if( gettime(3) == .LuckyTime ){
  5. thank you sir FORD more POWER !!!! THANKS
  6. Could anyone can guide and help me to setup up my Donation in my website. pls??
  7. @F O R D Thanks and how can i make it announce in yellow color?
  8. how can i add a announce to people got a reward when they reach to 99 help pls
  9. can you please help me how to make it like they sell 4 any normal cards then = 1 Card album? how can i change it please help me. Thank you in advance
  10. in E-Inquiry can you help me how to add into my SQL table step by step. after adding SQL table do i need to recompile?
  11. Im sorry sir im a bit new. ok sir i will wait for it thank you so much!!
  12. i have mine actually if i @afk it will automatically like @autotrade it goes logout when i put that script and then it just said @afk then @afk ON but that headgear havent show in the game how is that?
  13. can someone can help me how can i change this into monday to friday exp rate 20x20x time around 19:00 to 21:00 PM please help me thank you //===== EinherjarRO Scripts ================================== //= Floating Rates //===== By: ================================================== //= Stolao //===== Current Version: ===================================== //= 1.07 //===== Compatible With: ===================================== //= rAthena SVN //===== Description: ========================================= //= Floating Rates //===== Uses: ================================================ //= Exp and Item Rates Change Dynaimcally based on Online //= Player count and a configurable variables //===== Comments: ============================================ //= [stolao] //= Optimize] //= In Game Menu / @Command? //===== Additional Comments: ================================= //= 1.00 Origional Make //= 1.01 Removed Unessisary Line //= 1.02 Added Config //= 1.03 Made auto collect base rates //= 1.04 Fixed a bug where would keep increasing every hour //= 1.05 Made Multipliers into an array //= 1.06 Fixed typos //= 1.07 Fixed Set -> setarray //===== Contact Ifo: ========================================= //= [stolao] //= Email: [email protected] //============================================================ - script floating_rate -1,{ OnMinute30: set .@i, getusers(1); set .@r, rand(.Random[0],.Random[1]); setbattleflag( "base_exp_rate", .R[0] + (.@r + .@i) * .ExpMulti[0]); setbattleflag( "job_exp_rate", .R[1] + (.@r + .@i) * .ExpMulti[1]); setbattleflag( "item_rate_common", .R[2] + (.@r + .@i) * .ItemMulti[0]); setbattleflag( "item_rate_heal", .R[3] + (.@r + .@i) * .ItemMulti[1]); setbattleflag( "item_rate_use", .R[4] + (.@r + .@i) * .ItemMulti[2]); setbattleflag( "item_rate_equip", .R[5] + (.@r + .@i) * .ItemMulti[3]); atcommand "@reloadmobdb"; Announce "[server]: Rates are now "+getbattleflag("base_exp_rate")/100+""+((getbattleflag("base_exp_rate")%100)?"."+getbattleflag("base_exp_rate")%100:"")+"/"+getbattleflag("job_exp_rate")/100+""+((getbattleflag("job_exp_rate")%100)?"."+getbattleflag("job_exp_rate")%100:"")+"/"+getbattleflag("item_rate_common")/100+""+((getbattleflag("item_rate_common")%100)?"."+getbattleflag("item_rate_common")%100:"")+" !",8; end; OnInit: // Multiplier Per Player and .Random // Each point is .01x Increase in exp rates // [0] = Base Exp // [1] = Job Exp // eg: rand = 75 , getuser = 100, Multi = 3 // rates will be increase by 5.25x setarray .ExpMulti ,3,3; // Multiplier Per Player and .Random // Each point is .01x Increase in exp rates // [0] = Common Items // [1] = Healing Items // [2] = Useable Items // [3] = Equipment Items // eg: rand = 75 , getuser = 100, Multi = 1 // rates will be increase by 1.75x setarray .ItemMulti,1,1,1,1; // The Random Variable Min and Max // [0] = Min // [1] = Max setarray .Random,0,100; end; OnInterIfInitOnce: // Dont Touch // Used to collect the base rates setarray .R, getbattleflag("base_exp_rate"), getbattleflag("job_exp_rate"), getbattleflag("item_rate_common"), getbattleflag("item_rate_heal"), getbattleflag("item_rate_use"), getbattleflag("item_rate_equip"); end; }
  14. Hi Guys i would like to ask if how can i change the time into 3 hours on this script thanks for advance //FAST TYPE EVENT //Credits to Emistry for making the script //Paulinds for requesting the script, details & idea. prontera,146,172,5 script Fast-Type Event 421,{ if(getgmlevel() >= 99) callsub L_GM; if( !.Event ) { mes "There is no Event right now."; } else if ( .String$ == "" ) { npctalk "Wait for the next round.."; } else { mes "Type the Correct Sentences."; mes "^FF0000" + .String$ + "^000000"; input .@Type$; if( .String$ == "" ) { announce "Sorry, " + strcharinfo(0) + " is a bit slow..",0; close; } if ( .String$ == .@Type$ && .Event ) { getitem 7227, 1; //EDIT THE PRIZE HERE announce "Fast-Type Event: " + strcharinfo(0) + " typed the correct string!",0; set .String$, ""; set .Round, .Round + 1; donpcevent "Fast-Type Event::OnStart2"; } else { announce "" + strcharinfo(0) + " mispelled some strings XD",0; } } close; OnMinute00: OnMinute60: if(.Event) end; donpcevent "Fast-Type Event::OnStart"; end; OnStart: announce "Fast-Type Event has started at Prontera 146 172 !",0; L_Begin: set .Event, 1; set .String$, ""; while( getstrlen( .String$ ) < .Length ){ set .String$,.String$ + .List$[ rand( getarraysize( .List$ ) ) ]; } announce "Round "+(.Round+1)+" Started !",0; end; OnStart2: sleep2 5000; if(.Round == .Rounds) { if(!.Event) end; announce "Fast-Type Event: Event is over!",0; set .Event, 0; set .Round, 0; end; } if(!.Event) end; announce "Fast-Type Event: Next round starts in 5 seconds...",0; sleep2 5000; if(!.Event) end; goto L_Begin; L_GM: mes "Fast-Type event is" + (.Event?"^00FF00 ON^000000":"^FF0000 OFF^000000"); if(select((!.Event?"^00FF00Start":"^FF0000End") + " Event^000000","Normal Player") == 2) return; switch(.Event) { case 1: set .Event, 0; set .Round, 0; set .String$, ""; announce "Fast-Type Event: A GM has ended the event.",0; break; default: donpcevent "Fast-Type Event::OnStart"; } close; OnInit: set .Length,28; //EDIT THE LENGTH OF CHARACTERS TO BE TYPED set .Rounds,3; //EDIT THE ROUNDS setarray .List$,";","B","_","D","E","%","=","H","I","J","/","L","M","N","6","P","Q","]","S","T",","; //YOU CAN ADD LETTERS, DIGITS & SYMBOLS HERE.. end; }
  15. Hi guys would you mind if i request a Script that called Card Trader.? What it does is they actually sell there cards or Exchange there card into Old Card Album. 4 pcs of normal cards = into 1 Pcs Old Card Album. can you please help me? thank you
×
×
  • Create New...