|
You last visited: Today at 00:07
Advertisement
Official Ask Thread
Discussion on Official Ask Thread within the Seafight forum part of the Browsergames category.
06/18/2014, 20:34
|
#916
|
elite*gold: 0
Join Date: Apr 2011
Posts: 296
Received Thanks: 13
|
gibt es wieder ein damage bug ? Bitte um Antwort Thanks
|
|
|
06/21/2014, 17:16
|
#917
|
elite*gold: 0
Join Date: Dec 2012
Posts: 1,362
Received Thanks: 339
|
Im moment gibt es soweit ich weiß nichts an bugs, die hier veröffentlicht wurden.
|
|
|
06/21/2014, 21:15
|
#918
|
elite*gold: 0
Join Date: Feb 2010
Posts: 22
Received Thanks: 16
|
good was wondering if there is some bug to duplicate Cannon? thank you
|
|
|
06/21/2014, 23:37
|
#919
|
elite*gold: 0
Join Date: Dec 2012
Posts: 1,362
Received Thanks: 339
|
Quote:
Originally Posted by tugab
good was wondering if there is some bug to duplicate Cannon? thank you
|
There was one, but its fixed now :/
|
|
|
06/26/2014, 00:05
|
#920
|
elite*gold: 0
Join Date: Apr 2011
Posts: 296
Received Thanks: 13
|
Oxidium kannst du mir sagen was in Seafight passiert ist ? Ich hatte bisschen Pause und mur fehlen viele sachen.,, Ich hab eine WUT das glaubt mir keiner., war auch Platz 10 und jetzt iwie Platz 116 -_- lg
|
|
|
06/26/2014, 15:42
|
#921
|
elite*gold: 0
Join Date: Dec 2012
Posts: 1,362
Received Thanks: 339
|
Quote:
Originally Posted by Google1988
Oxidium kannst du mir sagen was in Seafight passiert ist ? Ich hatte bisschen Pause und mur fehlen viele sachen.,, Ich hab eine WUT das glaubt mir keiner., war auch Platz 10 und jetzt iwie Platz 116 -_- lg
|
Viellcieht addest du mich mal in Skype, oxidiumsupport. Da können wir alles besser besprechen als hier
|
|
|
06/27/2014, 19:57
|
#922
|
elite*gold: 0
Join Date: May 2012
Posts: 21
Received Thanks: 0
|
Hi, is there any gold bug ? thx
|
|
|
06/27/2014, 20:39
|
#923
|
elite*gold: 0
Join Date: Dec 2012
Posts: 1,362
Received Thanks: 339
|
Quote:
Originally Posted by Kabi7
Hi, is there any gold bug ? thx
|
Not at the moment
Any new bugs known? Pm me if you found one pls
|
|
|
07/03/2014, 19:31
|
#924
|
elite*gold: 0
Join Date: Sep 2010
Posts: 288
Received Thanks: 128
|
Hey, I was woundering if the bonusmap bug still works? The one where you can do last wave twice.
If it works, could you give me some instructions on how to do it?
|
|
|
07/03/2014, 19:45
|
#925
|
elite*gold: 51
Join Date: Nov 2009
Posts: 445
Received Thanks: 424
|
Quote:
Originally Posted by Andraoz85
Hey, I was woundering if the bonusmap bug still works? The one where you can do last wave twice.
If it works, could you give me some instructions on how to do it?
|
IF you get damage or hp it wont work but for all others work.
It's simple, when 1 npc left last wave you go aruba and throw 5 mojo's and kill the last npc and go to map again right after its done.
No need any other trick's and doesn't matter if you move your ship or not (Like in other threads people say you have to sit in one place).
|
|
|
07/03/2014, 20:03
|
#926
|
elite*gold: 0
Join Date: Sep 2010
Posts: 288
Received Thanks: 128
|
Quote:
Originally Posted by Zip_Eyes™
IF you get damage or hp it wont work but for all others work.
It's simple, when 1 npc left last wave you go aruba and throw 5 mojo's and kill the last npc and go to map again right after its done.
No need any other trick's and doesn't matter if you move your ship or not (Like in other threads people say you have to sit in one place).
|
Ok, I´ll give it a try!
Thx Zip_Eyes!
|
|
|
07/04/2014, 15:21
|
#927
|
elite*gold: 0
Join Date: Jun 2014
Posts: 57
Received Thanks: 11
|
Is there any way to buy "Freedom packs" more times...pm pls
|
|
|
07/04/2014, 16:06
|
#928
|
elite*gold: 51
Join Date: Nov 2009
Posts: 445
Received Thanks: 424
|
Quote:
Originally Posted by Sooccer
Is there any way to buy "Freedom packs" more times...pm pls
|
Try old way:
Chrome: Ctlr+Shift+J payment tab open.
function throwError(msg) {
alert(msg);
throw new Error(msg);
}
if (typeof(Payment) === "undefined") {
try {
var paymentLayer = document.getElementsByClassName('paymentContent')[0];
} catch (e) {
var paymentLayer = document.getElementsByTagName('iframe')[0];
}
if (typeof(paymentLayer) === "undefined") {
throwError('No payment layer or window detected. Are you logged in and is a payment window visible?');
}
var confirmNewTab = confirm('Payment frame detected, but it\'s required to be opened as a seperate window.\n\n' +
'Click \"OK\" to open the frame in a new tab. You have to copy the script content in the console there again!' +
'\n\n(There is a good chance that your popup blocker will block this tab.)');
if (confirmNewTab) {
window.open(paymentLayer.src, '_blank');
throw new Error('Continue in the newly opened tab');
}
throw new Error('Cancelled by user.');
}
if ((Payment.cartElements.length < 1) || (typeof(Payment.cartElements[0]) === "undefined")) {
// Prepare the cart by removing old undefined entries
Payment.cartElements = [];
throwError('The shopping cart is empty! Add an item first (either by using a payment link or choosing something from the left list).');
}
var itemDesc = Payment.cartElements[0].item.textContent;
var targetAmount = prompt('Please enter how often you want to buy the package \"' + itemDesc + '\"');
if ((isNaN(targetAmount)) || (targetAmount == "") || (targetAmount < 1)) {
throwError('Enter only numbers.');
}
// Make sure the is only one item in the cart
Payment.cartElements = Payment.cartElements.slice(0, 1);
var totalPrice = Payment.cartElements[0].shoppingCartPrice;
for (var i = 1; i < targetAmount; i++) {
Payment.cartElements.push(Payment.cartElements[0]);
totalPrice += Payment.cartElements.slice(-1)[0].shoppingCartPrice;
}
// For security list the cart elements in the console
var cartStr = 'Shopping cart content:\n';
for (i = 0; i < Payment.cartElements.length; i++) {
cartStr += (i + 1) + '. ' + Payment.cartElements[i].item.textContent + '\n';
}
try {
console.info(cartStr);
} catch (e) {}
var confirmBuy = confirm('You are going to buy the package \"' + itemDesc + '\" ' +
Payment.cartElements.length + ' times, for a total price of ' + totalPrice + getShoppingCartCurrency() +
'.\n\nYou have to pay the price of ' + totalPrice + getShoppingCartCurrency() + ', you don\'t get anything for free!' +
'\nYOU HAVE BEEN WARNED!\n\nPlease also check the console, your shopping cart content is listed there.\n' +
'If everything is correct, press \"OK\"');
if (!confirmBuy) {
// Reset cart to 1 element
Payment.cartElements = Payment.cartElements.slice(0, 1);
throwError('Cancelled by user.');
} else {
Payment.calcSums();
Payment.requestMethods();
alert('Everything done. Now continue with the payment as normal.');
}
Edit: and tell us if it work
|
|
|
07/04/2014, 16:24
|
#929
|
elite*gold: 0
Join Date: Aug 2012
Posts: 10
Received Thanks: 1
|
is there any actual bug?
|
|
|
07/04/2014, 16:43
|
#930
|
elite*gold: 0
Join Date: Jun 2014
Posts: 57
Received Thanks: 11
|
well, with the little one its working...but i make **** because i bought the big one and now it doesnt apear in offer...anyway thanks to help zip
|
|
|
 |
|
Similar Threads
|
IOS7 Official Thread
09/24/2013 - Smartphones - 29 Replies
Wie findet ihr es? Hier kann über das neue ios 7 diskutiert werden also viel spass ;).
|
Official +1 Thread!
02/18/2010 - Mabinogi - 71 Replies
So, I decided I wanted to make a thread filled with just "+1" to see how long it lasts.
GOGOGOGOGOGO.
+1
|
The official thread.
08/01/2009 - EO PServer Hosting - 54 Replies
Hey guys. This is the official thread. In this official thread there is everything you need to run or commands or what so ever. I did this to tidy the forum out. Also to stop Unless threads. By Jeffrob
Official Threads
Stickys
Private server List - credits spy_dude2000
http://www.elitepvpers.com/forum/eo-pserver-hostin g/184314-guide-setting-up-pally-db.html - credits thegamer1907
|
[Official Thread] HaydzCO (HCO)
07/11/2009 - CO2 Private Server - 46 Replies
HaydzCo - Recreating HybridCo
-HaydzCo is a new private server of Conquer Online based on Hybrids old server HybridCo. It's a pure PVP server with neat commands.
-The purpose of this server is to succeed where TQ Digital failed, keeping our gamers happy, content with the server.
-FEATURES-
Complete Login.
|
The Official thread.
10/04/2008 - EO Exploits, Hacks, Tools & Macros - 6 Replies
Hey this is the official thread for EO Exploits, Hacks, Tools & Macros by Jeffrob This is to make the forum tidy.
Official Thread
Itemtype Data Editor - credits rookiehacker
Eudemons Online Hack Speed Zoom Etc - credits *M*
Eudemons Online Mage Macro - credits MegaDragon
|
All times are GMT +1. The time now is 00:07.
|
|