-
Posts
229 -
Joined
-
Last visited
-
Days Won
1
Content Type
Profiles
Forums
Downloads
Jobs Available
Server Database
Third-Party Services
Top Guides
Store
Crowdfunding
Everything posted by Yummy
-
I LOVE THE MAP Heritage Here -Remix- I LOVE THE MAP Heritage Here -Remix-
-
Yes, Its really me Its Remix from eAthena and I'm back for some matters
-
Does anyone know how to fix this error " I am using 3ceam"
Yummy posted a question in General Support
[status]: Connecting to 64.31.38.45:3113 [Error]: make_connection: connect failed (socket #6, code 111)! -
Euphy you left HeritageRO for good?
-
Remix-Designs Show-OFF! tHIS ARE MY WORKS BACK THEN
Yummy replied to Yummy's topic in Arts & Writings
The latest one? -
Remix-Designs Show-OFF! tHIS ARE MY WORKS BACK THEN
Yummy replied to Yummy's topic in Arts & Writings
oh haha....! i didn't notice that ill fix it -
Remix GFX Network Services i :: Services Offered :: Loading Screen SCR Logo Login Screen Forum Signature :: In Exchange :: As a little help for us you can simply just say thanks to us for our free services by simply keeping this thread alive and by also advertising our thread. :: Remix GFX Works Website :: [color=#FF0000][size=5]Forum Signatures[/size][/color] :: :: [color=#FF0000][size=5]SCR Logo[/size][/color] :: :: [size=5][color=#FF0000]Format for every graphic design request[/color][/size] :: Type of your request: Loading Screen,SCR Logo,Forum Signature Text you want to be in it Size: :: [color=#FF0000][size=5]Have fun Everyone![/size][/color] :: [/center] [center][size=5][b]Note: If you want to be part of my team please do leave your resume here along with your works.[/b][/size][/center] Recent Works April 2012 Loading Screen HeritageRO Banner AlgronRO Facebook Banner HeritageRO SRC LOGO [b]Note: I have the right to refuse service to anyone[/b]
-
on your sql go to ragnarok/go to login and you will see your account there edit it then there you go... or you can contact me @ [email protected] -MSN/Yahoo
-
Have you tried searching the house system in eA?
-
Here you can change your skill delay here eathena/db/skill_cast_db.txt // Structure of Database:
-
You can use Euphy's Multi Donation NPC you just have to change the variables
-
thats a sql inject! Be sure that your sql password is safe don't use the default password ragnarok/ragnarok
-
to make poring coin dropable go to eathena/db then find item_trade.txt Look at this line comment it put a // to disable it
-
Have you tried Asking Euphy? Me and Euphy are planning to put that in HeritageRO.
-
skill_castdb ata un
-
gaypuff are you available for spriting?
-
does rcs makes you have LESS LAGS?
-
Its a source code that needs recompile .. go on google and type eAthena @afk + use the eAthena/rAthena Wiki on how to add source codes!
-
auto delete account when not used within 2 months
Yummy replied to Mang-Berto's topic in Tulong para sa Script at Database
I believe this is a source edit + sql edit :D -
Pano po i enabled ang costum NPC event?
Yummy replied to SarapRO's topic in Tulong para sa Script at Database
naka tab na ba yan? -
You have to cut it first before you can use it
-
Pano po i enabled ang costum NPC event?
Yummy replied to SarapRO's topic in Tulong para sa Script at Database
@loadnpc muna syempre @loadnpc muna syempre @loadnpc muna syempre -
Pano po i enabled ang costum NPC event?
Yummy replied to SarapRO's topic in Tulong para sa Script at Database
Meron ka na ba script nun kung meron naman eathena/npc/custom/ then lalagay mo sa scripts_custom like this kuwnari name ng LMS mo ay lastman ganito npc: npc/custom/scripts/lastman.txt -
<?php if (!defined('FLUX_ROOT')) exit; $title = Flux::message('VoteStatsTitle'); $votes = Flux::config('FluxTables.VotesTable'); // Get total vote count. $sql = "SELECT COUNT(*) AS total FROM {$server->loginDatabase}.$votes"; $sth = $server->connection->getStatement($sql); $sth->execute(); $total = $sth->fetch()->total; // Get date since first vote. $sql = "SELECT vote_date FROM {$server->loginDatabase}.$votes ORDER BY vote_date ASC LIMIT 1"; $sth = $server->connection->getStatement($sql); $sth->execute(); $since = $sth->fetch()->vote_date; // Fetch top voters. $sql = "SELECT COUNT($votes.id) AS total, login.userid, login.account_id "; $sql .= "FROM $votes LEFT JOIN login ON $votes.account_id = login.account_id "; $sql .= "GROUP BY account_id ORDER BY total DESC "; if ($limitTopVoters=(int)Flux::config('ShowTopVotes')) { $sql .= "LIMIT $limitTopVoters"; } $sth = $server->connection->getStatement($sql); $sth->execute(); $users = $sth->fetchAll(); ?>