Alguém que saiba trabalhar com Engine.dll e Core.dll? Tenho hwid no servidor o código adaptado, mas não tenho parte do cliente, pois meu cliente é c4.. Alguém que faça esse tipo de serviço
Hello @Hitcher. Could you please clarify the scenario in which this happened?
Was it on GF server?
The drops that were on the ground were from the same character? These fell with autoloot off, then you activated autoloot and tried to pick? Please provide more details so we can replicate it.
Question
SadStatue
Μέρα
Έχω μια ερώτηση.
Σε μια μεταβλητή x
το ++x; και το x++; θα κάνουν ακριβώς την ίδια δουλεία;
Δηλαδή αυτό:
public static void main (String args[])
{
int x = 0;
x++;
}
Θα κάνει ακριβώς το ίδιο με αυτό?
public static void main (String args[])
{
int x = 0;
++x;
}
-------------------------
Edit : Prefix
Edited by SadStatue7 answers to this question
Recommended Posts