Jump to content

rom3r

Members
  • Posts

    36
  • Joined

  • Last visited

Profile Information

  • Gender
    Not Telling

Recent Profile Visitors

2208 profile views

rom3r's Achievements

Poring

Poring (1/15)

1

Reputation

1

Community Answers

  1. Error when trying to upload a plugin Fatal error: Class 'finfo' not found in /home/rogalaxy/public_html/Home/lib/Aqua/UI/Form/File.php on line 244 Uploading on any other page is fine also getting Fatal error: Access to undeclared static property: Aqua\UI\Template::$directories in /home/rogalaxy/public_html/Home/plugins/V4p-master/startup.php on line 20 Cant use admin panel now
  2. $currentKey = $keys[$size]; if (array_key_exists($currentKey, $base)) { $value = &$base[$currentKey]; if (is_array($value) && $configObjectIfArray) { $configClassName = get_class($this); return new $configClassName($value); } elseif ($value instanceOf Flux_Config && !$configObjectIfArray) { return $value->toArray(); } else { return $value; } } else { // We want to avoid a traditional PHP error when referencing // non-existent keys, so we'll silently return null as an // alternative return null; } } /** That starts at 112 from my config in the lib file
  3. I was having a problem with donates not giving the credits and it was because i was using older flux cp so i got the new one from rathena github.I configured everything and it get Warning: array_key_exists() expects parameter 2 to be array, string given in /home/rogalaxy/public_html/lib/Flux/Config.php on line 113 When i go to the site Ive tried starting with new copy and redoing multiple times anyone know how to fix this thank you
  4. maybe can use increase the *sleep time inside OnInit: label ... unfortunately, the way Emistry scripted it, needs to run query_sql every single time to read the `title` from `mission_board` tableand accessing query_sql too frequently can lag a server well ... I added it, but remains commented this one possible this one require lots of checking ...its better to just type '@mission' to check your progress unless you understand the script ... otherwise its even hard to tell how to do itbecause everything from zeny to cashpoints are hard-coded I thought I already fixed them in 1.4 ?1.6 [paste=ftsocdeysre] - fix the getserverdef script command - increase sleep time inside OnInit to make lesser chance of getting unsorted ID - in commented lines, stop listing the monsters when the kill count reached - in commented lines, added listing for the mission name instead of mission ID though, type @mission is a preferable choice thank you but i found out awhile back after messing with it displaying mission name instead of id caused alot of problems lagged my sql out til the point it would lose connection.
  5. Im making a quest and the final act of the quest is a boss fight but i want to make a cutscene type thing with npc seeing as we cant cutin video.So i know its possible but i cant remember how or what the command was but when a player hit a certain tile like the space they land when warped to a map it execute the script.How would i do that?
  6. rom3r

    Unable to move

    If what you're experiencing is the client randomly losing focus, it's a problem with the client itself. Gravity introduced this bug some time ago and still hasn't fixed it, as of testing in iRO a few days ago (surprising, right?). One such report is here: http://forums.irowiki.org/showthread.php?t=97827This doesn't happen in 2014-04-10 RagexeRE. Will lub files and the msgstringtable that work with 20130807 work with 20140410 or will i have to start over?
  7. rom3r

    Unable to move

    Actually i found out the problem.It wasnt just not being able to move the whole interface would stop working but you could still type alt tabbing fixes it and it doesnt happen in fullscreen im not sure whats causing it but its annoying
  8. Players on my server are unable to move sometimes after warping and the time in which you can play before i happens varies.I warped to 200 different maps before it did it to me then the next time it was 2 times.I thought it was my client and packet version so i changed my client to 20130807 and my packet version.But it still keeps occurring. I've looked for a solution but couldn't find anything here.If anyone knows what could be the cause of this that would be awesome.
  9. rom3r

    sg problems

    I searched but apparently noone has this problem but star gladiators cant level any skills it doesnt give any option to level them and if you try and apply it goes back to being grayed out
  10. I tried that it still wouldnt delete the offline
  11. set .@self, getcharid(3); set .@size, query_sql("select account_id from `char` where online = 1", .@aid); for(set .@i,0; .@i<.@size; set .@i,.@i+1) { if(attachrid(.@aid[.@i])){ set Kill, 0; set Death, 0; set KillingStreak, 0; set MultiKill, 0; set KillingSpree, 0; set Dominating, 0; set MegaKill, 0; set Unstoppable, 0; set WickedSick, 0; set MonsterKill, 0; set Godlike, 0; set BeyondGodlike, 0; set DoubleKill, 0; set TripleKill, 0; set UltraKill, 0; set Rampage, 0; set Ownage, 0; set NemesisKill, 0; set FeedCount, 0; query_sql("TRUNCATE TABLE `pvp_rank`"); This will clear them for online people but nothing ive tried clears the offline people. Okay i got it working query_sql("DELETE FROM `global_reg_value` WHERE `str` = 'Kill'"); query_sql("DELETE FROM `global_reg_value` WHERE `str` = 'Death'"); query_sql("DELETE FROM `global_reg_value` WHERE `str` = 'KillingStreak'"); query_sql("DELETE FROM `global_reg_value` WHERE `str` = 'MultiKill'"); query_sql("DELETE FROM `global_reg_value` WHERE `str` = 'KillingSpree'"); query_sql("DELETE FROM `global_reg_value` WHERE `str` = 'Dominating'"); query_sql("DELETE FROM `global_reg_value` WHERE `str` = 'MegaKill'"); query_sql("DELETE FROM `global_reg_value` WHERE `str` = 'Unstoppable'"); query_sql("DELETE FROM `global_reg_value` WHERE `str` = 'WickedSick'"); query_sql("DELETE FROM `global_reg_value` WHERE `str` = 'MonsterKill'"); query_sql("DELETE FROM `global_reg_value` WHERE `str` = 'Godlike'"); query_sql("DELETE FROM `global_reg_value` WHERE `str` = 'BeyondGodlike'"); query_sql("DELETE FROM `global_reg_value` WHERE `str` = 'DoubleKill'"); query_sql("DELETE FROM `global_reg_value` WHERE `str` = 'TripleKill'"); query_sql("DELETE FROM `global_reg_value` WHERE `str` = 'UltraKill'"); query_sql("DELETE FROM `global_reg_value` WHERE `str` = 'Rampage'"); query_sql("DELETE FROM `global_reg_value` WHERE `str` = 'Ownage'"); query_sql("DELETE FROM `global_reg_value` WHERE `str` = 'NemesisKill'"); query_sql("DELETE FROM `global_reg_value` WHERE `str` = 'NemesisKilled'"); query_sql("DELETE FROM `global_reg_value` WHERE `str` = 'FeedCount'"); need that but is there a way to make it neater looking instead of all that?
  12. rom3r

    pvp ladder

    Can someone help me make this pvp ladder work.I found it in the npc folder of my revision.But it refuses to record stats announce when someone talks a place. prontera,154,169,4 script Pvp_Ladder 837,{ mes "~Sign Reads~"; OnPvpLadder: mes "Pvp Ladder"; if(getgmlevel() >= .GM){ set .@i,select("Warp to PVP Room:View PVP Records:Leave:Reset PVP Stats"); } else { set .@i,select("Warp to PVP Room:View PVP Records:Leave"); } switch(.@i){ case 1: next; { mes "[ ^0000ffPVP Warper^000000 ]"; mes "Hello!"; mes "Do you want me to warp you to PVP Room?"; menu "^398315Sure, Bring it on!",warppvp,"^d95353No, thanks.",cancel; warppvp: warp "pvp_n_2-5",0,0; end; } cancel: { next; mes "[ ^0000ffPVP Warper^000000 ]"; mes "One should be courageous, not a coward."; end; } case 4: mes "Are you sure you want to delete ALL pvp records?"; if(select("No:Yes")==1) close; next; mes "Wait one Moment..."; mes "....."; cleararray $TOPPK$[0],0,127; cleararray $TOPPK[0],0,127; query_sql("DELETE FROM `global_reg_value` WHERE `str` = 'PKCOUNT'"); set .@self, getcharid(3); set .@size, query_sql("select account_id from `char` where online = 1", .@aid); for(set .@i,0; .@i<.@size; set .@i,.@i+1) { if(attachrid(.@aid[.@i])){ set PKCOUNT,0; } } attachrid(.@self); mes "Cleared pvp data."; close; case 2: for(set .@i,0; .@i < getarraysize($TOPPK$); set .@i,.@i+1){ mes (.@i+1)+": "+ $TOPPK$[.@i] +" with "+ $TOPPK[.@i] +" kills"; if(.@i % 10 == 0){ if(select("Read More:Leave") == 1){ next; } else { close; } } } case 3: close; } close; OnPCKillEvent: if(.Options&2 && (agitcheck() || agitcheck2())){ if(getgmlevel() < .GmLvl || .Options&8){ if(.Options&1 || strcharinfo(3) == .Map$){ if(.Options&32){ for(set .@i,.RepeatCount; .@i > 0; set .@i, .@i-1){ set @PKedID[.@i+1], @PKedID[.@i]; } set @PKedID,killedrid; } for(set .@i,1; .@i < .RepeatCount; set .@i,.@i + 1){ if(@PKedID[0] == @PKedID[.@i]){ set .@s, .@s + 1; } else { set .@i, .RepeatCount + 1; } } if(.@s < .RepeatCount){ set PkCount,PkCount+1; if(.Options&16) setd getd(.PointType$),getd(.PointType$) + .PvpEarned; for(set .@i,0; .@i < .MaxPlayers; set .@i, .@i + 1){ if(PKCOUNT > $TOPPK[.@i]){ if($TOPPK$[.@i] != strcharinfo(0)){ setarray $TOPPK$[.@i + 1], $TOPPK$[.@i]; setarray $TOPPK[.@i + 1], $TOPPK[.@i]; } setarray $TOPPK$[.@i],strcharinfo(0); setarray $TOPPK[.@i],PKCOUNT; if(.Options&4) Announce ""+strcharinfo(0)+" Now Holds the The number "+.@i+" spot on the Pvp Ladder",bc_all; } sleep 1; } } else { if(.Options&64) warp "Save",0,0; } } } } end; OnInit: while( 1 ){ delwaitingroom; waitingroom "PVP Warper [ "+getmapusers("pvp_n_2-5")+" Players ]",0; sleep 1000; set .GM,99; set .MaxPlayers,10; // Number of Players held in Records set .GmLvl,99; // Highest GM level Able to Hold a Record, if Option 8 is Disabled set .Map$,"pvp_n_2-5"; // Map Pvp Must Take Place on in order to Count, if Option 1 is Disabled set .RepeatCount,5; // Number of kills on same person before it detects abuse, max of 128 set .PointType$,"#Cash"; // Name of points earned, E.G. #Cash Points set .PvpEarned,1; // Number of Pvp Points Earned set .Options,116; // Bitwise Variable // 1: Only Counts Kills on .Map$ if Disabled // 2: Disables Record Holding during WOE // 4: Announce When Someone Takes a Rank // 8: Allow Gms Above level .GmLvl To Be on Ladder // 16: Gain PvP Points on Kills (#PvpPoints) // 32: Repeat Kill Protection // 64: Warp to Save on abuse // Example: "1+2+4 = 7" No Forced Map, Disables Record Holding during WOE and Announces New Record Holders bindatcmd("PvpLadder" ,"Pvp_Ladder::OnPvpLadder",0,99); } end; } Ive tried ghosts ladder but the set map wont work for me.So if anyone could help me id be thankful
×
×
  • Create New...