Friday, March 7, 2025

GetWinVer Windows 11 Compatibility Fix – Free to Share!

Hey everyone!

I've developed a simple code to help fix compatibility issues with Windows 11, making it easier for RAN Online to run the latest OS. Also, added compatibility program up to latest Windows Server 2025. Since I know many of you face similar frustrations, I’m making this code available for free! You just need to merge it or replace the whole GetWinVer cpp and h files.


For the context, we met Juver long time ago. And he told me that most ran private server can't even fixed the windows 10 compatibility in ran source. So I did the fixing of GetWinVer code to make it compatible even the incoming windows 11. And as we know, Windows 10 will stop the free updates after October 14, 2025.

    Source: https://www.microsoft.com/en-ph/windows/end-of-support?r=1#:~:text=Your%20PC%20will%20continue%20to,provide%20Windows%2010%20technical%20support

Feel free to download, use, and share it with others. I believe in keeping Ran Community great again, and this is my way of contributing to the community. But please don't remove my credits :)


============

GetWinVer.cpp

============

// GetWinVer.cpp  Version 1.2 (Updated for Windows 11)

//

// Original copyright (C) 2001-2003 Hans Dietrich

// Update 2025 by Emolista2

//

// This software is released into the public domain.  

// You are free to use it in any way you like, except

// that you may not sell this source code.

//

// This software is provided "as is" with no expressed 

// or implied warranty.  I accept no liability for any 

// damage or loss of business that this software may cause. 

//

///////////////////////////////////////////////////////////////////////////////


#include "stdafx.h"

#include "tchar.h"

#include "GetWinVer.h"

#include <windows.h>

#include <stdio.h>


typedef LONG(WINAPI* RtlGetVersionPtr)(PRTL_OSVERSIONINFOW);


BOOL GetWinVer(LPTSTR pszVersion, int* nVersion, LPTSTR pszMajorMinorBuild, LPTSTR pszServicePack)

{

    if (!pszVersion || !nVersion || !pszMajorMinorBuild) return FALSE;

    

    lstrcpy(pszVersion, WUNKNOWNSTR);

    *nVersion = WUNKNOWN;


    RTL_OSVERSIONINFOEXW osInfo = { 0 };

    osInfo.dwOSVersionInfoSize = sizeof(RTL_OSVERSIONINFOEXW);

    

    HMODULE hMod = GetModuleHandle(TEXT("ntdll.dll"));

    if (hMod)

    {

        RtlGetVersionPtr RtlGetVersion = (RtlGetVersionPtr)GetProcAddress(hMod, "RtlGetVersion");

        if (RtlGetVersion)

        {

            RtlGetVersion(reinterpret_cast<PRTL_OSVERSIONINFOW>(&osInfo));

        }

    }

    

    wsprintf(pszMajorMinorBuild, _T("%u.%u.%u"), osInfo.dwMajorVersion, osInfo.dwMinorVersion, osInfo.dwBuildNumber);

#ifdef UNICODE

lstrcpyW(pszServicePack, osInfo.szCSDVersion);  // Wide string version

#else

wcstombs(pszServicePack, osInfo.szCSDVersion, 199);  // Convert to ANSI

#endif


    if (osInfo.dwMajorVersion == 10 && osInfo.dwBuildNumber >= 26100)

    {

        lstrcpy(pszVersion, _T("Windows 2025"));

        *nVersion = 120; // Assigning a new version number for Windows 2025

    }

    else if (osInfo.dwMajorVersion == 10 && osInfo.dwBuildNumber >= 20348)

    {

        lstrcpy(pszVersion, _T("Windows 2022"));

        *nVersion = 118; // Assigning a new version number for Windows 2022

    }

    else if (osInfo.dwMajorVersion == 10 && osInfo.dwBuildNumber >= 17763)

    {

        lstrcpy(pszVersion, _T("Windows 2019"));

        *nVersion = 116; // Assigning a new version number for Windows 2019

    }

    else if (osInfo.dwMajorVersion == 10 && osInfo.dwBuildNumber >= 14393)

    {

        lstrcpy(pszVersion, _T("Windows 2016"));

        *nVersion = 115; // Assigning a new version number for Windows 2016

    }

    else if (osInfo.dwMajorVersion == 6 && osInfo.dwBuildNumber >= 9600)

    {

        lstrcpy(pszVersion, _T("Windows 2012 R2"));

        *nVersion = 111; // Assigning a new version number for Windows 2012 R2

    }

    else if (osInfo.dwMajorVersion == 10 && osInfo.dwBuildNumber >= 26100)

    {

        lstrcpy(pszVersion, W11STR);

        *nVersion = W11;

    }

    else if (osInfo.dwMajorVersion == 10 && osInfo.dwBuildNumber >= 22631)

    {

        lstrcpy(pszVersion, W11STR);

        *nVersion = W11;

    }

    else if (osInfo.dwMajorVersion == 10 && osInfo.dwBuildNumber >= 22621)

    {

        lstrcpy(pszVersion, W11STR);

        *nVersion = W11;

    }

    else if (osInfo.dwMajorVersion == 10 && osInfo.dwBuildNumber >= 22000)

    {

        lstrcpy(pszVersion, W11STR);

        *nVersion = W11;

    }

else if (osInfo.dwMajorVersion == 10 && osInfo.dwBuildNumber >= 10240 && osInfo.dwBuildNumber <= 19045)

{

lstrcpy(pszVersion, W10STR);

*nVersion = W10;

}

    else if (osInfo.dwMajorVersion == 6 && osInfo.dwMinorVersion == 3)

    {

        lstrcpy(pszVersion, W81STR);

        *nVersion = W81;

    }

    else if (osInfo.dwMajorVersion == 6 && osInfo.dwMinorVersion == 2)

    {

        lstrcpy(pszVersion, W8STR);

        *nVersion = W8;

    }

    else if (osInfo.dwMajorVersion == 6 && osInfo.dwMinorVersion == 1)

    {

        lstrcpy(pszVersion, W7STR);

        *nVersion = W7;

    }

    else if (osInfo.dwMajorVersion == 6 && osInfo.dwMinorVersion == 0)

    {

        if (osInfo.wProductType == VER_NT_WORKSTATION)

        {

            lstrcpy(pszVersion, WVISTASTR);

            *nVersion = WVISTA;

        }

        else

        {

            lstrcpy(pszVersion, WSVR2012STR);

            *nVersion = WSVR2012;

        }

    }

    else if (osInfo.dwMajorVersion == 5 && osInfo.dwMinorVersion == 1)

    {

        lstrcpy(pszVersion, WXPSTR);

        *nVersion = WXP;

    }

    else if (osInfo.dwMajorVersion == 5 && osInfo.dwMinorVersion == 0)

    {

        lstrcpy(pszVersion, W2KSTR);

        *nVersion = W2K;

    }

    return TRUE;

}



==========
GetWinVer.h
==========

// GetWinVer.h  Version 1.2 (Updated for Windows 11)
//
// Original copyright (C) 2001-2003 Hans Dietrich
// Update 2025 by Emolista2
//
// This software is released into the public domain.  
// You are free to use it in any way you like, except
// that you may not sell this source code.
//
// This software is provided "as is" with no expressed 
// or implied warranty.  I accept no liability for any 
// damage or loss of business that this software may cause. 
//
///////////////////////////////////////////////////////////////////////////////

#ifndef GETWINVER_H
#define GETWINVER_H

#define WUNKNOWNSTR _T("unknown Windows version")

#define W95STR _T("Windows 95")
#define W95SP1STR _T("Windows 95 SP1")
#define W95OSR2STR _T("Windows 95 OSR2")
#define W98STR _T("Windows 98")
#define W98SP1STR _T("Windows 98 SP1")
#define W98SESTR _T("Windows 98 SE")
#define WMESTR _T("Windows ME")

#define WNT351STR _T("Windows NT 3.51")
#define WNT4STR _T("Windows NT 4")
#define W2KSTR _T("Windows 2000")
#define WXPSTR _T("Windows XP")
#define W2003SERVERSTR _T("Windows Server 2003")
#define WVISTASTR _T("Windows Vista")
#define WSVR2008STR _T("Windows Server 2008")
#define W7STR _T("Windows 7")
#define WSVR2008R2STR _T("Windows Server 2008 R2")
#define W8STR _T("Windows 8")
#define WSVR2012STR _T("Windows Server 2012")
#define W81STR _T("Windows 8.1")
#define WSVR2012R2STR _T("Windows Server 2012 R2")
#define W10STR _T("Windows 10")
#define WSVR2016STR _T("Windows Server 2016")
#define WSVR2019STR _T("Windows Server 2019")
#define W11STR _T("Windows 11")
#define WSVR2022STR _T("Windows Server 2022")
#define WSVR2025STR _T("Windows Server 2025")


#define WCESTR _T("Windows CE")


#define WUNKNOWN 0

#define W9XFIRST 1
#define W95 1
#define W95SP1 2
#define W95OSR2 3
#define W98 4
#define W98SP1 5
#define W98SE 6
#define WME 7
#define W9XLAST 99

#define WNTFIRST 101
#define WNT351 101
#define WNT4 102
#define W2K 103
#define WXP 104
#define W2003SERVER 105
#define WVISTA 106
#define WSVR2008 107
#define W7 108
#define WSVR2008R2 109
#define W8 110
#define WSVR2012 111
#define W81 112
#define WSVR2012R2 113
#define W10 114
#define WSVR2016 115
#define WSVR2019 116
#define W11 117
#define WSVR2022 118
#define WSVR2025 120

#define WNTLAST 199

#define WCEFIRST 201
#define WCE 202
#define WCELAST 299

BOOL GetWinVer( LPTSTR pszVersion, int* nVersion, LPTSTR pszMajorMinorBuild, LPTSTR pszServicePack );

bool iswin_nt ();

#endif //GETWINVER_H

-----------------------------------------------------------------------------------------------------------------------

If you're a lazy brat, just download and replace it!


⚠️ Disclaimer: This code is provided as-is, with no guarantees. Use it at your own risk, and always back up your system before making any changes. And once again, please don't remove my credits!

Credits: ChatGPT, Stack Overflow, Juver and all RAN Devs who contributed their knowledge.

Show your appreciation for Emolista's Page and support future development by donate via GoTyme, Maya or Gcash -> 09395018668

Tuesday, March 21, 2023

Basic Tutorial To Make A Server (For windows users only)


Mapagpalang araw po sa inyo! Welcome to my Emolista's Page, your partner in making a ran private server in the world....^_^ naks naman gumaganon na :D

Ginawa ko po tong guide na to para sa mga gustong gumawa ng sarili nilang server. Natutuwa ako sa panahon ngayon kasi ang daming gusto talaga matuto. Sa totoo nga lang, walang araw o oras na hindi busy ang facebook at YM ko (iba na ang sikat daw...charot!) dahil sa araw-araw may bumibisita sa blog kong ito. Sabi ko nga sa sarili ko gusto ko na mag-quit sa pag-develop ng server pero iba talaga pag marami ka nang natulungan. Para bang di kayo mabubuhay sa mundo ng ran kung wala ang isang tulad ko. Maraming salamat po sa suporta at advices narin ng mga mentors ko dyan pati narin yung mga umuusig sakin na hinihila ako pababa. Salamat sa inyong lahat nanatili akong buhay at nagbibigay inspirasyon sa bawat isa. 

Masyado naman ata mahaba yung intro ko...bueno wala nang paliguy-ligoy pa ng usapan. Kung problema niyo ay dead links sa ragezone, dito pwede niyo ma-download at magamit ng libre. Sa tulong narin ng mga kapwa ko mga developers, na-compile ko yung mga importanteng files para sa paggawa ng private server. Yung iba dito donate at yung iba galing sa RageZone. Ang guide na to ay pwede sa Ep6 at Ep7 ran private server making. Ang kailangan mo dito ay listong pag-iisip, sapat na tulog, at higit sa lahat alam mo ang papasukin mo. Required na marunong ka sa computer kahit yung pag-browsing sa mga websites...siyembre kilalang kilala ang suki ng bayan, Mr. Google...hehehe

Ang paggawa ng server ay pwede sa lahat ng computer na may windows xp at windows 7. Kailangan fully updated ang operating sytem ng pc niyo kundi...boom dadami ang computer niyo...hahaha echos! Kailangan din may mga importanteng applications para sa computer niyo. Di pwedeng mawala yung office applications gaya ng microsoft office, cd/dvd/blu-ray burner, antivirus, web browsers at syempre...kailangan mo ng internet connection para mahanap mo at matanungan si Mr. Google (ang umangal...panget!). Eto yung di pwede mawala sakin pag gumagawa ako ng private server. Malaking tulong po to para mapadali ang trabaho natin as developer:

Notepad++
Ccleaner
7zip
Filezilla
Paint.net
IDM (Internet Download Manager)

Kunin niyo nalang po dito: Paki click po ako xD

Ilan lang po yan sa mga software applications na ginagamit ko sa paggawa ng server. Lahat ng naka-post sa taas tiyak magagamit mo. Kailangan mo lang ng common sense at tiwala sa sarili na makakatulong to sayo. Sunod naman ay yung kailangan niyo para makagawa ng server:

Required applications for you to install the SQL (you can automatically obtain these application just enable the Windows Update). You must get the applicable to your system. If your O.S.(operating system) is 32bit, get the x86. Same with 64bit O.S. choose x64 version.
Download and install Windows Installer 4.5
Download and install .NET Frameworks = 3.5 sp1 and 4.0 Standalone Install
Download and install .net framework 4.5.2 sp1 for Windows 8 and 8.1 click here
Download and install .net framework 4.7.1 just click here 

*Sa SQL naman depende kung ano server gagawin niyo yun lang kukunin niyo :)
EP6s1: SQL 2005 express edition and management studio
EP6s2, ep7, ep8, ep9, ep10: SQL Express 2008 R2 express with tools service pack 2
*Kung ang OS (operating system) niyo ay Windows Server 2012 std gamitin niyo SQL ay 2012 rin.
*Isang install lang po ng sql sa ep6s2 pataas, hindi na kailangan ng management studio.

MSQL 2005 Express Edition
For Service Pack 3 : Download
For Service Pack 2 : Download
No Service Pack : Download

SQL Server Management Studio Express Service
For Service Pack 3 : Download
For Service Pack 2 : Download
No Service Pack : Download

MSQL 2005 Express Edition
SQL Server Management Studio Express Service

SQL Express 2008 R2 express with tools service pack 2 

32bit link
64bit link

SQL Express 2012 R2 express with tools

32bit link
64bit link

SQL Express 2014 Express with Advance Features

32bit link
64bit link

SQL Express 2016 Express with SP2 & Advance Features

64bit link

SQL Express 2017 Express Advance Features

64bit link

SQL Express 2019 Express Advance Features

64bit link

SQL Server 2022

Developer and Express


*********************************************************************

Video, written and screenshots tutorials:

Installing Microsoft SQL Server 2005 Express Edition




Installing SQL Management Studio




Installing SQL Server 2008 R2 Express



Installing SQL 2012 R2 Express


For the instructions on how to restore database and setting up a ODBC settings, refer to the video tutorial of Ep5/Ep6s1. You may also visit and watch video tutorial from our friend from thailand :D




*********************************************************************
FULL CLIENTS, SERVER FILES AND TOOLS FOR EP3, EP6, EP7 AND EP8

Episode 3 mixed 4 Version
Split client and unpacked patch: click here
Server files (I don't what is the working server files but you can try them all): click here
Database just choose one: click here
Note: You can play this version at your own pc without using virtual pc.

Ep5/Ep6s1 Version
Split Parts Client (Last Stand Ran): click here 
Other split parts links: click here
Server files, tools and video tutorials: click here
Note: You can play this version at your own pc without using virtual pc.

Ep6 Season 2 Version
Full client split parts: click here, password: ripran
Special Patch: click here
Server files (choose one): click here
Glogicserver: click here 
Database: click here
Tools: click here 

*You can also convert the client ep6s2 to ep7. Are you interested? Click here!

Ep7 Version 1
Split parts URO client: click here
Ran PH Client and Patch: click here
Client 845: click here and Client 949: click here
Server files, tools, scripts and source code: click here
Updated files: click here
EP7 Source Code with ItemLink and ItemMixer v2: click here
*Note: You can open the source code using Visual Basic 2008. I can't provide a installer for that so go and surf with google.com :)
*If you using windows 7 (32/64 bit), set your launcher and exe "Run as administrator" to prevent pc shut down.

Ep7 Version JamRAN Extreme Client
Full client: click here
*I'm still looking for the right bin tools. If you have you're lucky enough to open the contents. Also, rcc files are loadable to juver based source. You can use this as your future project or just a spare parts for your self project.

Episode 7 mixed 8 - Neo Encryption Based Client
Full Client: click here or here
Server Files and Tools: click here
My CFG for Server Files: click here
Cleaned database: click here

*Note: hex the server files, just look for server1.cfg and change it to the right number like for example LoginServer. You need to change it to 2, same procedure with FieldServer and AgentServer.

EP7 TO EP8 MANUAL PATCHES
Manual Patches 844 to 1026: click here

Episode 9 - i-Bugz Ran Based
Raw Source Codes (unfixed): click here
Clean Client: click here
Modified Clients (a lot of unfixed stuffs): click here
Level Editor for i-Bugz: click here

Episode 9 - But Old Interface
Basic needs: click here
Updated files (w/ Ran_Crypt and Hackshield, use the same client and then encrypt.): click here

Episode 9 i-Bugz based with SW (modified tyranny system)
click here

Episode 10 (Agusan Ran based client)
Full client: click here
Server files and tools: click here
Raw source code: click here


Essential files for ep7 to ep9. It includes the scripts, databases and other applications for your server setup.
click here
*********************************************************************

Make a server setup: A unified guidelines to make a Ran Private Server. For ep7 gunner edition, you must hex the server files first, click here or here for the link. You may visit at forum.ragezone.com and look for Ran Tutorials. Most of the server setup from ep3 to ep9 are similar of each versions posted here. The only thing you must know are the files used are different, so read carefully before you download any files here.

1. Install/extract the full client wherever you want in your O.S.
2. Make another folder wherever you want (much better put in C:/) and name it as Server Start.
3. Extract the server files inside the Server Start folder.
4. Copy the data folder inside the full client that you chose and paste it inside the Server Start folder.
5. Copy all dll files from your full client and paste it to Server Start.
6. Copy and paste also the param.ini from full client to your Server Start folder.
7. Edit your cfg files gui files (located at data>gui, focus on credits) using notepad++.
8. Edit your server files using hex (only applicable for Ep7 with gunner class). If you don't know how to hex files, pm me or go to forum.ragezone.com and search a thread.
9. Start your server according to the right order: 

Session
Login
Field
Agent

10. Make sure all your server files running smoothly. If some errorr occurs, you may post a thread to ragezone or tell someone how to fix those problems. Feel free to chat with me...hehehe ^_^v

PAALALA: KAPAG NAKA VPS/DDS KAYO DAPAT UNA NIYONG GAWIN AY I-UPDATE ANG MISMONG UNIT NIYO. PAANO? MAG-WINDOWS UPDATE PO KAYO PARA LAHAT NG DRIVERS NA KAILANGAN LALO NA SA SQL AY MAKUKUHA NIYO NA WALANG ERROR. PAG HINDI PO ALAM MAGTANONG SA MGA IT-EXPERTS, OK LANG PO BA?

*********************************************************************
Sa mga first time na mag-develop ng server, advantage na to sa inyo kasi free lahat ng files na nandito sa blog ko. Yung iba kasi galing mismo sa RageZone at yung iba pina-post dito sa blog ko katulad ni Amos. Kung nakagawa na kayo ng server noon, isa na tong reviewer para sa inyo. Sa mga marurunong na diyan, guide niyo po yung mga first time sa paggawa ng ran private server. Minsan po kasi di sapat yung oras ko para makatulong sa lahat. Tumutulong naman ako sa paggawa ng server pero depende yan sa "usapan". Yan ay kung ano ang purpose mo bakit gagawa ka ng server...^_^v

Dun nga pala sa source code magtanong nalang po sa marunong mag compile o kaya mag research kayo ng sarili niyo. Hindi ko kayo tutulungan sa ganyang bagay, kumilos kayo ng sarili niyo lang!

Kung may katanungan, kontak niyo po ako na alin man sa mga sumusunod:

YouTube
Twitter
Yahoo
Ragezone

Mag-ingat sa mga poser!

Paalala (Reminder): All my files here are free to download, so you can download all files anytime, anywhere! Not all my files came from Ragezone (I got some files from other people and other websites). Libre po ang magpa-guide sakin gumawa ng server, kung ano problema sa server niyo aayusin natin. Kaya lang po hindi libre ang magpagawa sakin (pwede po via teamviwer kung nasa labas ka ng pilipinas...hindi rin libre yun). Marami na po kasi sa inyo masyado nang abusado, lahat na lang sa aming mga developers inaasa ang paggawa ng server eh di parang nagpagawa narin kayo nang walang bayad. Mahirap po yung ganun sitwasyon...may kanya-kanya kaming pamilyang binubuhay kaya di maaring buong oras ko eh hawak mo na maliban na lang kung babayaran mo ako, diba?

Kayang kaya niyo to, tiyak makakagawa na kayo ng ran private server! Ok lang kahit hamachi sa simula o kaya offline game ang importante nakakapaglaro kayo at maranasan maging isang admin. Bilin ko lang sa inyo, "wag mong kalimutan na nakatapak ka pa sa lupa".

********************************************************************************************************

CREDITS:

SeiferXIII

JDEV

Jumong

Jow

Patpayatot

CNDev

Pmms Diesel

Edmer Santos

Sparkle Palconit

Mark Berbon

John Carl

IamDJRB

TOBETS2000/sid.jhoy

zHadesVII

AsenDURE

geger009

Page not Found

Rhandzkate

Fusion7

mike915

aishahot

ejsayaaa

eureka7

Men in White

SoulBane

Tdev

Xen

Miremo

lourence8

Priest Roger

Dev Blaze

janmaru5555

Ian Amarado

Thamodz

ashaya101

losseomo

Death Gun

CrimsonRockz

JerMTheSLayer

Titan XD

RJP

PJL

Adrian Quilala

Adriane Angeles

ก็อย่างนี้ แหละ

UnknownGamer

McFloat


SPONSORED BY:

Familia Hayabusa Development
Mythical Networks
Titan Networks
Chaos Networks
Hades Development
Freedom Records
Xen Networks
820 Networks
Phytonhost
BlazeDex Development
Team Zombie
Green Smiley Development
Private Server Developer sa Pinas
Ran Online Source Development
ExplorerSec
Sencore
KHLEA
Ran Online: Portal
...and all Ran Private Server Advertising Groups!

SPECIAL THANKS TO: 
RageZone, an MMO Development Community
Leaseweb


Credits:
google.com
filehippo.com
getintopc.com
dropden.com
sendgb.com
wetransfer.com


If you want to learn more about ran private server or looking for other tutorials in making private server, you may join us at green smiley development. Click here to join and use you commonsense.

VMware Workstation Pro 2022



Good day everyone heto na naman ako hehehe :P


Ok hindi naman to siguro bago sa inyo ang VMware Workstation. Ang pinagkaiba lang sa mga previous version, compatible na itong gamitin sa windows 10. Sa mga source coders diyan alam ko yung struggle na di makapag install ng visual studio 2003 sa W10 diba. So kailangan mo pa gumamit ng vmware para lang makapag install ng windows xp o kaya 7. Sa mga newbies diyan na nagbabasa ng blog ko, aralin niyo mabuti etong software. Hindi ito libre pero pwede i crack pero kung may pera kayo (wag sana lagi buraot), bilhin niyo software nila :D


So heto na po :)


Download mo ito: Paki-click po ako xD


Bago ka mag install, check mo muna system requirements baka kasi magulat ka o sisihin mo ko kasi di gumana sa system mo. Hindi uso maging bobo sa panahon ngayon. Uso po magbasa at magsaliksik lalo na kung gusto mo talaga maging private server developer. Ok heto na :)


Minimum system requirements:


*Operating System: Windows XP, 7, 8, 10 32/64 bit (di ko na sinama si vista kasi bullsh*t gamitin yun)

*Memory: 4GB any clock speed (prefer ko po yung 1333 pataas)

*HDD Space: 1.2GB of free space para sa installation

*Processor: Any intel or amd processors (dual core processors and above).

Para sa iba pang detalye, paki-click ang link: VMWARE


Kapag natapos ka na mag download at na meet mo yung kailangan na system requirements, diretso ka na sa installation at narito ang instructions. Intindihin mo mabuti eto kahit elementary kaya gawin, ikaw pa kaya :P


Disclaimer: Hindi po sakin ang mga videos na nai-post ko pati yung download link. This is for educational purposes only.







Credits: Youtube.com and Getintopc.com




Wednesday, October 12, 2022

My Social Media Accounts Got Compromized

 Good day mga ka-pusa :)


Magandang araw po sa inyo at sana nasa mabuti kayong lagay. Ngayon lang po ako makakapag-update dito sa blog ko dahil sa marami nangyari. Isa na po dun ang pagka-permanent disable ng aking facebook account. Lumabag raw ako sa "Community Standards". Nag-post raw ako ng ch*ld p*rn bagay na hindi ko gawain at nakakasuka yung mga ganung gawain. Ang pinagtataka ko lang ay secured ang account ko for 9 years. Meron yun text verification at 2FA bago maka-login sa account ko. Akala ko ako lang may ganung pangyayayari, marami pala kami nung nagbabasa ako sa reddit.com. Iisa lang din ang rason, ch*ld p*rn! Lahat na ng method para mabawi main fb account ko pero wala na talaga pag-asa. Kaya naisipan ko gumawa nalang ng bagong account at bumalik ulit sa square one. Paki-add nalang po yung bago kong facebook account sa baba:


Facebook


At sa mga nagtatanong kung nasan na po ako at ano lagay ko. Nandito na po ako nakatira ngayon sa Davao Oriental bale 3 months nako nandito. Gawa ng maraming kailangang ayusin dito sa lugar ng papa ko. Baka magkatotoo rin yung sinasabi ng mga nakakakilala sakin na dito nako mag-aasawa...hehehe God knows :)


Magsisimula narin ako mag-upload ng content sa aking YouTube account. Kung makakakuha ako ng bakanteng oras mag-upload ako ng bagong contents. Kaya sa mga hindi naka-subscribe, heto po link sa baba:


YouTube


Thank you and God bless. Peace mga ka-pusa :D

Tuesday, March 3, 2020

What is my status?

Good day people :)

Right now, I'm still making a private server but not just like before too many clients. As of now, I can only handle 2 or 3 servers to manage. Thinking of stopping my journey but not so fast. I have to finish something before I move to another career. You guys still gave me a respect and trust for my works and contribution to the ran community. And again I would like to thank you for you untiring support and love :O


Buo na po desisyon ko magtatayo nako ng mushroom farming and food processing business. Problema ko nalang paano ko makakaipon ng kapital kung hihinto agad ako sa hilig ko. Naisip ko kasi paano kung nagkapamilya nako, ran parin ba ang source of income ko? Hindi pwede habang buhay nalang libangan lalo na ngayon sa hirap ng buhay. Oo yung libangan passion ko narin, yung pera nandiyan lang yan sususnod yan. Ang masaklap pa nga diyan hindi lahat ng outcome maganda. Meron ako mga naging client na sobrang demanding o kaya sobrang busy hindi matutukan sarili nilang server. At may pagkakataon rin na sobrang barat pero taas ng expectations sa gawa ko. Lagi ko po sinasabi sa mga clients ko kung ano lang kaya ko gawin yun lang. Hindi ko kaya yung bagay na wala pa ako. Halimbawa si client gusto ng official market system eh wala ako nun. Bibilhin pa yun sa ibang dev para mailagay lang sa sarili nilang private server. Kaya yung iba nagagalit sakin kasi akala nila kaya ko yung ganito kaya ko yung ganyan. Dati hirap ako mag-dev ng private server dahil vpn lang gamit ko para maka-connect sa internet. Lagi ubos yung pera ko sa load at sim card na lagi nasusunog kapag lumalagpas ako sa capping na tinatawag. Alam yan ng mga kumukuha sakin ng vpn kasi reseller rin ako. Sa mga ganung tagpo ng buhay ko talagang nakakasawa na. Gusto ko ng pagbabago talaga sa sarili ko at isa na dun yung dahan-dahan ako lalayo sa minahal ko na industriya. Alam niyo na ibig kong sabihin habang binabasa mo tong blog ko.


Once again, thank you so much for your untiring support and love to my passion. Without you my life is empty and just a normal day for breaking a leg. I hope you will understand my feeling right now. Slowly passing all of my knowledge to the next generation. Ran is our game, ran is our life!


God bless everyone :) <3 font="">



Facebook

Instagram
Twitter

Sunday, January 13, 2019

Slowly Letting Go [Taglish]

Good day;


Kamusta na po kayong lahat? Pasensiya na po hindi ako gaano nag-update ng aking blog. Marami nangyari sa buhay ko na mahirap lahat ikwento. Pero ngayon gusto ko sana ipaalam sa inyo na unti-unti nako bibitaw sa mundo ng ran. Naalala ko 2008 sinimulan ko tong blog, isa lang ang pumasok sa isip ko ay gusto lamang makatulong. Gusto ko i-share rin yung anoman natutunan ko sa ragezone at iba pang nalalaman sa pag-dev ng ran. Marami ako naging kaaway at kaibigan sa loob ng mahigit sampung taon. Taon na sinimulan ko na akala ko walang mangyayari. Inisip ko gusto ko lang din maglabas ng expressions ko. Ang nangyari dahil sa blog ko marami natuto, marami rin lumaki ulo. Dahil narin sa blog ko, nakakapunta ako sa lugar na di ko pa napupuntahan. Bagay na pinapangarap ko lang mapuntahan noong elementary ako. Hindi kasi ako pinapayagan ng magulang ko na pumunta ng field trip kasi may nangidnap daw ng bata. Pero ang totoo niyan wala sila pera para makasali sa fieldtrip. Ngayon sagot ng client ko kapag pupunta ako sa bahay nila o sa shop nila. Sa mahigit sampung taon halos nalibot ko na buong luzon. Kahit saan man ako magpunta nakikisama ako. Lahat ng pwede ko ituro sa client ko binibinigay ko best effort ko. Sa pag-dev ng ran private server may naipundar ako kahit paano kagaya ng computer set ko. Yung iba bigay lang at yung iba galing sa bonus na binibigay sakin. Sinasabi ko lang magkano yung presyo kailangang gastusin sa pagbuo ng server. Ayoko magtaas baka kasi sabihin nila mukha daw ako pera, ganun!



Bakit gusto ko na tumigil sa ran private? Marami po dahilan at tsaka matagal ko narin yan pinag-isipan. Isa na po yung edad ko 30 years old nako mga ate/kuya. Sa edad kong yan ang dami ko na-miss na opportunity sa buhay. Ang dami ko sinayang na pagkakataon na halos abot kamay ko na. Hindi ko masabing ng diretso pero kung ako tatanungin, mahirap na sumabay kapag lipas na panahon mo. Pinipilit ko sumabay hanggat maari wag lang mapag-iwanan. Ewan ko ba sa dami ng pwedeng gawin sa buhay bakit ran ang pinasok ko. Totoo nga yung sabi nila mahirap lumabas sa bagay na madaling pumasok. Nandiyan na yung maraming reklamo sayo kasi hindi nagustuhan gawa mo o kaya iba dun sa expectations nila. May panahon din na napapasok ako sa gulo. Kaya minsan kahit malaki bayad ayoko tanggapin kung malalagay ako sa alanganin. At tsaka yung bagay na matagal ko na gusto sabhin sa lahat....hindi nako masaya :'(



Maraming salamat po sa pagpunta sa blog ko tuwing may kailangan kayo i-download. Alam ko po yung iba sa inyo galit sakin pumupunta parin dahil sa mga kailangan niyo links. Isa pa marami na natuto sa blog na to. Nagugulat nalang ako marami nako pm yung iba gusto pagawa, yung iba naman gusto lang magtanong sa ibang bagay na medyo naguluhan. Hindi ko na po mabilang kung ilan na natulungan ko. Kung ikaw man ay isa mga yun, feel free to comment on my blog post! Hindi po ako nagpapaliwanag lang hehehe :P



Sampung taon namuhay sa diskarte at papasok na sa bagong yugto ng buhay ko. Etong blog ko habang buhay na nandito madadaanan mo lagi sa internet :)





Nagmamahal;



Emolista2 aka meow/pusa

Tuesday, January 9, 2018

Lets Talk About Cryptocurrency

Good day everyone :D

May tropa ka ba o kakilala mo na inaaya ka mag invest sa bitcoins? Yun bang sasabihin nila sayo matutulog ka lang kumikita ka na....hehehe charot lang :P

Anyway,

Uso ngayon sa internet maski na sa social media ang tinatawag na bitcoins. Kung iisipin mo para siyang token saa isang online games o kaya pambayad sa online transactions. Tama ka dun sa iniisip mo kaibigan! Marami na po gumagamit niyan kasi napaka praktikal gamitin dahil sa tipid sa gastos sa fiat currency (physical money) at madali i-transfer kung kani-kanino. Ok simulan natin ano nga ba ang bitcoins. Pero bago yan i-klaro muna natin ng ibig sabihin ng cryptocurrency. Ayon sa wikipedia:

"A cryptocurrency (or crypto currency) is a digital asset designed to work as a medium of exchange that uses cryptography to secure its transactions, to control the creation of additional units, and to verify the transfer of assets. Cryptocurrencies are classified as a subset of digital currencies and are also classified as a subset of alternative currencies and virtual currencies."

Isa sa mga cryptocurrencies na nabuo ay ang bitcoins. Ito ay nailathala ni Satoshi Nakamoto noong January 9, 2009. Siyam na taon na pala ang nakakaraan may btc na. Dati ginagamit eto sa underground online transactions gaya ng deepweb. Sa deepweb kasi marami illegal na bagay na mbibili gamit ang btc. Sabihin na natin pwede ka bumili ng iligal na droga, armas, smuggled goods at maski na pornography. Bigla nalang nag slow down ang btc dahil sa maraming dahilan. Siguro isa na dun ang kakaunti o sobrang baba ng palitan ng nasabing digital currency.

Ang bitcoins ay isa lamang sa mga uri ng cryptocurrency sa buong circulation. Bukod diyan meron pa mga kilala rin na cryptocurrency gaya ng litecoin, ethereum, zcash, monero, dash coin, dogecoin at marami pang iba. Ang maganda kasi dito digital currency na siya (oo hindi mo siya nahahawakan). Magagamit mo ang crypto sa pagbili ng kahit ano sa internet na tumatanggap rin digitally. Ako na try ko narin ipambili ng cellphone load at pambayad sa tubig....wait pambayad sa tubig? Opo pwede ka makapagbayad ng inyong bills sa bahay (electriciy, water, rentals, etc) gamit ang inyong crypt. Kadalasan bitcoins ang mode of payment sa lahat ng online transactions. Pero meron din iba na tumatanggap ng litecoins. Basta check mo nalang sa website na pupuntahan mo ano mode of payment tinatanggap nila.

Lahat ng bagay may downside maski yang crypto. Ang ganitong sirkulasyon kasi walang banko na nag-regulate ng digital currency. Ang bitcoins hindi fix ang value niyan, minsan tumataas at minsan bumababa. Dahil na yan sa supply and demand ng mga tumatangkilik ng crypto. Ang tawag po dun inflation rate. Habang dumadami ang bimibili marami rin ang nagbebenta. Pero natanong mo na ba saan galing ang crypto? Ayon sa history walang sinumang tao o grupo nag may-ari ng crypto. Isa siyang decentralized network system na umiikot sa buong mundo na pinapagana ng tinatawag na blockchain. Para magkaroon ng crypto gaya ng bitcoins kailangan magmina. Hindi po yung huhukay ka sa ilalim ng lupa tapos makakakita ka ng ginto. Since digital age na tayo ang mina dito sa crypto ay ginagamitan ng system unit. Meron tinatawag na mining rigs na ginagamitan ng GPU (Graphics Processing Unit) at cloud mining. Iipunin mo yun na ayon sa halaga na gusto mo maabot. Pagkatapos niyan pwede mo na siya ipalit sa fiat currency. Opo pwede ipalit sa totoong pera pambili ng gusto at kailangan mo sa buhay. Pwede rin gamitin siya sa online trading na ginagawa ngayon ng karamihan (investment scheme). At dahil nagagamit sa online trading naglipana rin yung mga scammers, kaya doble ingat at pag-isipan mabuti.

Gaya ng sinabi ko pag-isipan maigi bago ka pumasok sa ganitong kalakaran. Maganda simula to ngayon kasi mataas ang value niya. Hindi kagaya nung 2013 na sobrang down ang sistema. Marami umayaw sa bitcoins dahil sobrang baba ng palitan. Ngayong january 2018 nasa 900k ang 1 BTC, oh diba mayaman ka na! At siyempre marami makiki-ride on sa uso (ganyan talaga ang mga pinoy hehehe). Pero uulitin ko sasabihin ko: mabilis magbago ang lahat ng bagay. 

Maraming salamat po sa pagtangkilik sa aking blog. 

Feel free to keep me in toch at my social media accounts for inquiries and suggestions. 

Meow :D

GetWinVer Windows 11 Compatibility Fix – Free to Share!

Hey everyone! I've developed a simple code to help fix compatibility issues with Windows 11, making it easier for RAN Online to run the ...